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 TouchToneTommy 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. andyrne

    aps.net and hta applications

    I know you can make an hta appliction just by changuing the extension of an html file. Is is possible to make an hta app using an asp.net file?
  2. andyrne

    ASP & Javascript

    Yes, someone offered something in the javascript forum: unfortunatley it didn.t work. I'm sure I mentioned in the javascript one that I'd already put something elsewhere?? oh well, whatever makeitso: already tried "Response.write("<script language=Javascript>...") , but , even in...
  3. andyrne

    ASP & Javascript

    oh, and I thought that sort of thing was used when code placed in the html; the little asp I've done has been in asp.net (separte code from html).
  4. andyrne

    ASP & Javascript

    I've an asp page which reads a db and comes up with four fields. In the same page I've a javascript block which needs to read these fields: any idea how I could accomplish this? (also posted in asp forum)
  5. andyrne

    ASP & Javascript

    I've an asp page which reads a db and comes up with four fields. In the same page I've a javascript block which needs to read these fields: any idea how I could accomplish this?
  6. andyrne

    ASP & Javascript

    the code with the asp page is vbscript!
  7. andyrne

    ASP & Javascript

    Not strictly vb but... I've an asp page which reads a db and comes up with four fields. In the same page I've a javascript block which needs to read these fields: any idea how I could accomplish this?
  8. andyrne

    VBScript within Novell Logon Script

    your batchfile could look like this: wscript c:\yourscript.vbs
  9. andyrne

    Add reg lines to Windows 98 machines

    following from last guy use # in login script if you want script to pause while your batchfile is running, or @ for script to continue executing while batchfile is running. @z:\xxxx.bat
  10. andyrne

    Netware 4.2 slot numbers

    I have a 6023p server using adpu320 raid. The motherboard has two on-board ethernet ports. During netware 4.2 install: Basically I can't get slot numbers for the lan ports or for the raid. When I try to load the lan driver with not slot number (it should then list the slot numbers), no slot...
  11. andyrne

    Asp and listboxes

    I've just started a new project using asp.net and ado.net. what i'm trying to do is clear an asp listbox, does anyone know how to do this? (there is no 'clear' method) Thanks in advance, A
  12. andyrne

    Can you use VB6 with Access 2000?

    I've used vb6 with access 2000 quite a few times, but only using ado (not dao), so I don't know if it would work with dao, but I suspect it would. A
  13. andyrne

    TextStream and a little question!

    If you use optentextfile instead of createtextfile, you'll have more options: there is a create param (true\false) and iomode (1 = for reading, 2 = forwriting, 3 = for appending) look here:http://www.devguru.com/Technologies/vbscript/quickref/vbscript_list.html
  14. andyrne

    Volume mounting

    Hi How do they &quot;find thier way back&quot;? is there a drive mapping or something? I'm not sure what you mean by &quot;restore the other volumes&quot; do you mean re- mount them? if so, you should be able to mount and dismount volumes (except sys of course) at will without losing data. A
  15. andyrne

    Call stack

    Hi Is there any way I can monitor the call stack using vb code?
  16. andyrne

    compiled in XP but does not work in Win95/98/XP, WHY?

    Allways compile under the os you are developing for
  17. andyrne

    text file

    Very good reference site for vbscript (has all filesystemobject commands etc) is:http://www.devguru.com/Technologies/vbscript/quickref/vbscript_list.html
  18. andyrne

    = command for type abc.txt&gt;prn (Dos command)

    The following works ok (type file contents into another file): Dim rtn As Long rtn = Shell(&quot;cmd /c type c:\sdsrollerr.txt >c:\ar123.txt&quot;, vbNormalFocus) so the following should work: Dim rtn As Long rtn = Shell(&quot;cmd /c type c:\sdsrollerr.txt >lpt1&quot;, vbNormalFocus) (can't...
  19. andyrne

    taskbar shortcut

    I need to remove a shortcut from the left hand side of the taskbar (next to start button)on a number a machines. Anyone know how I could do this in vb script? Thanks A
  20. andyrne

    ip route

    I need a add a vpn route to our vpn server via code. It is something that can't be added by using the command line &quot;route add&quot; otherwise I could have shelled to that in code. Normally you would go to routing and remote access console and add a persistant route there, only I need to...

Part and Inventory Search

Back
Top