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 SkipVought 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: *

  • Users: LDan
  • Order by date
  1. LDan

    What files to include to use borland database engine

    You need to include all files in directory "BDE", and write to registry: 1. Key: "HKEY_LOCAL_MACHINE\\SOFTWARE\\Borland\\Database Engine", Subkey: "DLLPATH", Value: path to directory of the application (or BDE files) (example:"c:\\my_app") 2. Key...
  2. LDan

    Screen Size and Program Area

    GetSystemMetrics(SM_CXSCREEN); x-resolution GetSystemMetrics(SM_CYSCREEN); y-resolution
  3. LDan

    ListView Access Violation

    BCB Help example is working properly. Access Violation occures when program trys to write to protected memory. It's not correct: ListItem = LIST->Items->Add(); write so: ListItem = LIST;
  4. LDan

    File Icons

    All you need is stored in registry "HKEY_LOCAL_MACHINE/Software/CLASSES" read "DefaultIcon" key
  5. LDan

    Read File

    Just make some corrections: ifstream infile; String Hello; char Temp[255]; infile.open (&quot;C:\\Hello.txt&quot;, ifstream::in); infile.read(Temp,255); //!!!!!!! Hello = Temp; // !!!!!! MessageDlg(Hello,mtError,TMsgDlgButtons() <<...
  6. LDan

    Drawing a U shape

    Try to combine such WinAPI fucntions as Polyline, PolyDraw or draw shape in Paint, Photoshop and simpy load it on Canvas...
  7. LDan

    Help solving a differential Eqaution

    Use Runge-Kutt method. If you need a source, let me know.
  8. LDan

    How do I make the computer a Key was Pressed

    or so: keybd_event(VK_NUMLOCK,0,KEYEVENTF_EXTENDEDKEY | 0,0); keybd_event(VK_NUMLOCK,0,KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP,0); Both keybd_event turns off and turns on the Num Lock
  9. LDan

    illegal operation with EXE application

    The only way to understand what happens, is trace the program... Or you can use debugger SoftIce (if you know assembler).

Part and Inventory Search

Back
Top