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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by nvb

  1. nvb

    stopping a command window

    If you are using an icon to fire up the program, I assume it is a shortcut. If so, have a look in the properties, it has the full commandline there. Never too old to learn... Nico
  2. nvb

    Delphi Symbol file

    Thanks Andrew Just a question: I deleted the file, and then Delphi complains about having to recreate it! Btw, I'm using D5E on W2K, although I don't know whether this is relevant. Never too old to learn... Nico
  3. nvb

    Secondary Master Drive: Can't detect label nor data. WIN2KPRO

    Lukcy devil! I wish my problems were this easily solved... Never too old to learn... Nico
  4. nvb

    Running a Delphi Application in a Web-browser

    One BIG correction: it CAN be done with Delphi 5. I have developed a application specific webserver in D5 with the simple use of a TCPServer socket. The goal of the project was web-enabling of an ERP package, where I communicate to the client's using HTML & JavaScript, and simulate the correct...
  5. nvb

    Delphi Symbol file

    What is the purpose of the .dsm file? It sure gets huge, even for a small and simple project! Never too old to learn... Nico
  6. nvb

    JavaScript Caching

    but summer is hard to beat anywhere in the world I couldn't agree more! That's why I'm going to SA december 18th! I need some sun! Never too old to learn... Nico
  7. nvb

    Arithmetic Operation On Two Variables

    If var1=5 and var2=6, the statement var1+var2 will give 11, unless one of the two is actually a string (var1="5" or var2="6"). Try using parseInt("" + var1) + parseInt("" + var2). The adding of the "" will ensure that both are strings, and...
  8. nvb

    JavaScript Caching

    Hi Richard I had the same problem during development of my site, but got IE to reread the js files by hitting <Shift><Refresh>. See if it works for you too! BTW, how's Jo'burg? (Me being an expat, I'm always interested!) Never too old to learn... Nico
  9. nvb

    Read File containing EOF (AscII 26) chars into StringList

    Have you tried using a File of Char with BlockRead? And then manually traversing the characters, changing them as needed? Never too old to learn... Nico
  10. nvb

    upgrade

    I agree hartilly with the PS. I tried it myself, and am now at the point that I am going to format and reinstall anyway, because the problems were too much for me! Never too old to learn... Nico
  11. nvb

    How to use a VB dll in Delphi?

    To simply use functions and procedures from DLL's, have a look at the dynamic-link libraries topic in the Delphi help system. Basically, you have to import the functions and procedures by declaring them: procedure extHallo; external 'VBDll.dll'; function extBye: boolean; external 'VBDll.dll'...
  12. nvb

    How to use a VB dll in Delphi?

    Use the Component|Import ActiveX Control to add your OCX's to the component palette, then just drop them on the form and use... Never too old to learn... Nico
  13. nvb

    Validate Length

    Take out the .value. .length is a value already. Never too old to learn... Nico
  14. nvb

    can't stop submit

    function chkOptions(){ var rtn = true; ... Never too old to learn... Nico
  15. nvb

    How to use a VB dll in Delphi?

    If you have the function in VB code, why not rewrite it in Delphi? Performance for one will be better! Never too old to learn... Nico

Part and Inventory Search

Back
Top