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

  1. dkpede

    MySQL Date Formatting - Garbled Date Insert

    Hi Stuart, I think I had a similar problem - but I gave up reading this whole thread... but it seems no one mentioned the ODBC setting. On the configure menu to the ODBC I tried setting "dont use setlocal" to true - and all these problems disappeared...
  2. dkpede

    sub select

    Why not just use: SELECT users. * FROM users, portfolio WHERE users.user_id = portfolio.user_id and portfolio.course_id != 13 order by user_id; (!= means "not equal") ?? Best Regards ;-)
  3. dkpede

    Window Resizing Problem

    Hi Brent, I don't quite follow - Do you want people to resize, but not move ? Also since you mention VB6, you should maybe post it in that forum - this is VBscript... Peter
  4. dkpede

    Writing to a file (.dat)

    Ri, You are opening for writing - you should open for Read AND Write if you wish to conserve the contents of the file. I have not checked but I guess it is 3... Regards, Peter
  5. dkpede

    "&" in querystrings?

    You could maybe use the Chr() function to pass the & as an ascii code ? & is Chr(38) Peter
  6. dkpede

    Boot automatically at random ???

    Thankyou all, I now have a few ideas to work on - I will let you know when (if) I find the cause... Best regards, Peter :-I
  7. dkpede

    Boot automatically at random ???

    What is going on ?? I have build an AMD-DURON 600Mhz with recommended motherboard - and its working fine - except that it will occasionally boot !! At first I thought it was a problem with power save or the CPU-Fan overheating protection, but turning these off does not help. It happens both...
  8. dkpede

    hide navigation frame

    I dont see anything about users in the code.. maybe the problem has something to do with the security setting for your folder/page instead ? Peter
  9. dkpede

    Busting out of frames/session variables

    I am not sure I understand exactly what you are doing - but why don't you let the user create a new database which upon completion gets merged with the existing one on the thankyou page ? Peter
  10. dkpede

    I have 2 VBscript files, In File1 I

    If you are using the WSH, you could just use in File1: <script language=&quot;vbscript&quot; src=&quot;File2.vbs&quot;> call sub1 </script> Maybe it would be a good idea to read up on packaging using the .wsf file format..? Hope it helps, Peter
  11. dkpede

    Renaming a file with VB Script

    I think the easiest would be to use FileObj.Move MOVE_PATH &amp; NewName Good luck, Peter
  12. dkpede

    WScript.Echo problem?

    You should not have to do any tricks with WSH, just WScript.Echo &quot;something&quot; Try again - or maybe post a copy of the whole code... Maybe you have some ancient version of WSH ?? Good luck.. Peter
  13. dkpede

    Writing Environment variables ?

    You are right - it is only the Shell environment you change, however if you start other applications with .Run it is the changed environment that is used - which is just what I needed... Happy Newyear, Peter
  14. dkpede

    Writing Environment variables ?

    Thanks Rob, It was not quite what I needed as it also needs to run on win98. But your answer got me thinking about what is really going on, so I found another way of doing it, for anyone with a similar problem I have included an example: Set EnvObject = WshShell.Environment...
  15. dkpede

    Writing Environment variables ?

    Reading environment variables is all very well, but how do I write them ? Using the WSH I am calling an application using: set WshShell = WScript.CreateObject(&quot;WScript.Shell&quot;) WshShell.Run &quot;Someprogram&quot; , 1, TRUE The problem is that this programs needs some...

Part and Inventory Search

Back
Top