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: nvb
  • Order by date
  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
  16. nvb

    Parsing a string

    You can try: var now = new Date(); var timestring = &quot;&quot; + now.getHours() + &quot;:&quot; + now.getMinutes() + &quot;:&quot; + now.getSeconds(); Never too old to learn... Nico
  17. nvb

    How to send fax ?

    Use the search engines on the web! [glasses] I did a search at www.google.com for the words &quot;fax component Delphi&quot; and , although not all hits will be useful, it found 24100 references in 0.27 seconds. The first four references definitely have something similar to what you need, but...
  18. nvb

    Fixing &quot;My&quot; annoyance

    The suggestions you give are the simple solution I have implemented a long time ago. For instance, my Documents has that name only, and the Pictures folder inside it as well. The annoyance is that every now and again, a program (I am not sure which) will create a new My Docs, My Pics, My...
  19. nvb

    Fixing &quot;My&quot; annoyance

    How do I permanently get rid of the extremely annoying prefix of &quot;My&quot; in front of directories like Documents, Pictures, Music, etc. and from &quot;My Computer&quot;, &quot;My Network...&quot;? I know that it is my computer, since I am the only one using it! And even on other...
  20. nvb

    Opinion

    Depends on what you want to do! C can be extremely handy. I agree that it is sometimes cryptic to read, but once you get the hang of it, it is fine. Remember, when moving to Linux, you will have to learn to read C, since the shell is in C, and scripting (and even commands) are in almost pure...

Part and Inventory Search

Back
Top