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. Panthaur

    HTML DOM and Objects Library Question

    Greetings all, I have a weird situation. I need the ability to load a particular HTML DOM path from a config file and be able to reference it once I have a selected web page displayed within the webbrowser control. For example: The dom path to a select box on a webpage would be something...
  2. Panthaur

    Simulating Multiple Connections to Webserver

    See, what I am trying to accomplish is to be able to download multiple pictures at the same time. I was thinking of creating series of reusable active x controls within the same form and assign each of those controls a series of files to download. The problem arises when we have a website...
  3. Panthaur

    Simulating Multiple Connections to Webserver

    Greetings All, I have an odd question for you all. I currently have some applications that log onto web servers and download pictures. The problem I have is that they allow only a single connection and sometimes the application is taking many hours. I'd like to speed up this process, and I...
  4. Panthaur

    Problem with an SQL Statement

    Well, it's not hanging now, but i'm not getting the same number of values returned. In my example, this query: select fromzone,tozone,scale from carrierscl where carrierid='FA' order by fromzone,tozone returns this: carrierid fromzone tozone scale --------- -------- ------ ----- FA...
  5. Panthaur

    Problem with an SQL Statement

    Thanks for the code snippet. I tried it, but the system hangs and freezes. I am using visual basic 6 with MySQL. Any ideas? Pan
  6. Panthaur

    Problem with an SQL Statement

    I'm not sure what you mean? Can you give me an example based on my sql statement above? Pan
  7. Panthaur

    Problem with an SQL Statement

    I have 2 tables which look as follows: CarrierApt Table --------------------- carrierid varchar(12) aptcode varchar(3) zone int Example Data for CarrierApt carrierid aptcode zone --------- ------- ---- FA MSP 1 FA MKE 2 FA ATL 3 CarrierScl...
  8. Panthaur

    Multiple ADO Connections with VB6

    Thank you all for your help. I've converted my application to having a recordset defined for each form in the MDI environment, and it is working great now. Also, I didn't have to over-modify the heck out of my application. I had to add a couple of lines to each form (sql as string and...
  9. Panthaur

    Multiple ADO Connections with VB6

    Also, the error I mentioned in my first post is as follows: Compile Error: Qualifier must be collection That's when i'm doing the following: rstsql(1)!fieldname Thanks, Pan
  10. Panthaur

    Multiple ADO Connections with VB6

    What about if I have a recordset defined locally for each form, and use that forms recordset instead of a global recordset? Right now I have the recordset variable and the connection variable stored in a module and they are global. I can use multiple recordsets for once connection, right? Pan
  11. Panthaur

    Multiple ADO Connections with VB6

    Greetings all, I am working on a MDI application where I can have multiple screens open to many different parts of the application. Maintenance, orders, reports, etc... Basically, I typically create an application that allows me to define my connection and recordset objects, as in the...
  12. Panthaur

    Trying to install an INF from within VB

    Neither, I want to EXECUTE it and have it install the programs that it's set to install. I don't care about what it says, I just want to be able to get it to run automatically out of VB. Thanks, Wade
  13. Panthaur

    Install software by INF.

    <groan> Thanks for the link, but I still can't seem to find anything about executing it with a shell command from within VB. Don't happen to have any code snippets, do you? Wade
  14. Panthaur

    Trying to install an INF from within VB

    I have an application that controls a realtime machine. When running under XP, I have an INF file that I need to run so that it can access the port properly. I would like my VB program to run the INF file after the user completes the setup wizard built into the program, but I can't find any...
  15. Panthaur

    Install software by INF.

    Have you found an answer to this yet? I have the same situation and i'm trying to install an INF file from within VB. Thanks, Wade
  16. Panthaur

    Auto Expire Webpage from Within Perl

    siberian, Thanks for the snippet. It wasn't "exactly" what I needed because I don't use cgi.pm, but this is what I did: print "Content-Type: text/html\n"; print "Expires: Saturday, 1-Jan-83 00:00:00 CST\n\n"; It thereby forces my page to expire and my problem seems to be...
  17. Panthaur

    Auto Expire Webpage from Within Perl

    I use a cookie right now to identify a user. Won't using your method interfere with my ability to identify, or can I use multiple cookies to do the same thing?
  18. Panthaur

    Auto Expire Webpage from Within Perl

    Hi all, I'm trying to figure out how to auto-expire a web page once I leave that page and go onto another one. I have seen a number of web pages that if I click the "back" button, it says the page has expired, and I want to be able to use that capability as well. I am using perl in the...
  19. Panthaur

    WM_CLOSE not working on console app

    I have a console app (DOS window) that I am trying to close with the following command: SendMessage hwnd, WM_CLOSE, 0, ByVal 0 It works fine under 2K/XP, but under 95/98 it tells me i'm trying to close a running app and then I have to click YES or NO. Can someone give me a better way of...
  20. Panthaur

    Windows XP / Peachtree 2003

    I think it's because there were a lot of hotfixes applied AFTER this particular one was installed.

Part and Inventory Search

Back
Top