Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Kherozen

    RAM question

    Hi, I'm currently working on a program that need to hold specific address in memory and to be sure that it will never be swap by the OS for another process and the solution of doing a while(true) to hold the process is not a working solution here ... so I want to know how can I reserve and...
  2. Kherozen

    Lock Controls

    Well as I said I got a lot of those controls so the swithing visible/invisble is not really something interessting since my form gonna look pretty ugly with just a control in it. jul ^_^ "Computer Science is no more about computers than astronomy is about telescopes" E...
  3. Kherozen

    Lock Controls

    Hi, Probably a redundant question, so I apologize for not having search as deeply as possible. I got a form with a mandatory control(field) to fill and I want to lock any other controls(fields /combo/list) if that control is empty and pop-up a message if some try to fill them before the...
  4. Kherozen

    Do not save form/subform data. Can it be done?

    Why not asking the password before giving access to the form?!? so that way you always want to save at the end ... or maybe I didn't understand the problem correctly jul ^_^ "Computer Science is no more about computers than astronomy is about telescopes" E. W. Dijkstra.
  5. Kherozen

    Printing without MFC

    This is why I was asking, Thanks It work ... do you know how to print in landscape? jul ^_^ "Computer Science is no more about computers than astronomy is about telescopes" E. W. Dijkstra.
  6. Kherozen

    Printing without MFC

    Well first of All that function is not define so I tried to look into the MSDN and it said shellapi.h , I tried to include that , That give me errors inside of the shellapi.h , so I guess that's not the good thing to do, can you be more precise please like what am I suppose to use as HWND in a...
  7. Kherozen

    Printing without MFC

    Hi, I've build a small application(Console Application) that build a report and save it to a textfile and at the end, I want to automaticly print that file. SO I tried System("print C:\report.txt"); and I got the dos prompt saying "C:\report.txt is currently being printed&quot...
  8. Kherozen

    Question about fstream and double

    Hi, I've got a simple question and I can't find the answer anywhere. my problem is fairly simply my program is writing numbers into a file and I need those number to show always and only 2 numbers after the point (like 5.00, 4.59, etc.) I try myFile.precision(2) but it seems thats not it...
  9. Kherozen

    Cant get image to become transparent?

    Put the background of access White or the background of the image of the same color of your access form ... jul ^_^ "Computer Science is no more about computers than astronomy is about telescopes" E. W. Dijkstra.
  10. Kherozen

    Controlling Subform fields, from the main forms code?

    to refer to a subform control within the main form Me!SubformName.Form!ControlName jul ^_^ "Computer Science is no more about computers than astronomy is about telescopes" E. W. Dijkstra.
  11. Kherozen

    Access And Excel Weird Behavior While Importing

    Data types are ok and primary key fields are not blank in the xls files I'd thought about letting open the xls files during the import but that didn't do it ... but the thing tat is weird is that I can't open in xls files after I successed an import until I reboot. jul ^_^...
  12. Kherozen

    Access And Excel Weird Behavior While Importing

    Hi, I'm currently trying to import data from excel spreadsheet to Access Tables and I have been running into some weird behavior. ok is it normal that I can't import more than 20 records... if I put more Access tell me that descriptive error message "an error occured while importing...
  13. Kherozen

    Easy One (hope so)

    Hi, ok in a SQL query you need to put ' ' around string , # # around Date and WHAT around currency?! jul ^_^ "Computer Science is no more about computers than astronomy is about telescopes" E. W. Dijkstra.
  14. Kherozen

    Vartype() question

    Thanks you jul ^_^ "Computer Science is no more about computers than astronomy is about telescopes" E. W. Dijkstra.
  15. Kherozen

    Tables problem with adp project

    I'm connecting Account Name and Pass on both machine(where I got Admin right) , I've try connecting with sa that didn't change anything jul ^_^ "Computer Science is no more about computers than astronomy is about telescopes" E. W. Dijkstra.
  16. Kherozen

    Tables problem with adp project

    Hi, I just transfer my Database from my computer(with a Sql server on it) to the server (with SQL server on it too) I got access to it that's ok I can play with the forms and data. but I can't open(even in design mode) most of the tables, there's no Error message most of the time but...
  17. Kherozen

    Wrong Forum but please look at it

    Hi, (I know it's the wrong forum but I think that's the one with the most activity on it so I got more chance to get an answer ) I just transfer my Database from my computer(with a Sql server on it) to the server (with SQL server on it too) I got access to it that's ok I can play with the...
  18. Kherozen

    IF Question

    Well for the technical explanation : a If statement needs boolean expressions ( True or False) and the AND or OR evaluate boolean expressions so if you write something like : IF Textbox1 = "Report 1" or "Report 2" or "Report 3" Then the program assumes that...
  19. Kherozen

    Table Inaccessible

    Hi, I just transfer my Database from my computer(with a Sql server on it) to the server (with SQL server on it too) I got access to it that's ok I can play with the forms and data. but I can't open(even in design mode) most of the tables, there's no Error message most of the time but...
  20. Kherozen

    Deleting a Record from a List Box Selection

    2 Bugs resolves , here's the solution [tt] Dim intValue As Integer Dim strSQL As String intValue = Me.Project strSQL = "DELETE FROM dbo.[Project Info] WHERE dbo.[Project info].[Project]=" & intValue DoCmd.RunSQL strSQL, 0 With DoCmd .SetWarnings False .RunSQL...

Part and Inventory Search

Back
Top