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 bkrike 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: Panthaur
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. Panthaur

    IE Refresh Bug Found - POST and GET

    Hi all, I have found a REALLY weird problem with the latest critical browser update from Microsoft (Q832894). I have to give a bit of a scenario. I log in, then get the main menu displayed. I click on my first option, then fill out the form, and click submit, which should take me to a...
  9. Panthaur

    Detecting when a form is moved

    Does anyone know how to detect when a form itself is moved (NOT resized) by clicking on the caption bar and dragging? I tried every event that I could find with no luck. Any help would be appreciated! Thanks, Pan
  10. Panthaur

    2d array boundaries

    I have an array in perl which looks similar to this: $ary[0][0] = "Title"; $ary[0][1] = "ColA"; $ary[0][2] = "ColB"; $ary[0][3] = "ColB"; $ary[0][4] = "ColB"; $ary[1][0] = "Title"; $ary[1][1] = "ColA"; $ary[1][2] =...
  11. Panthaur

    ActiveX Control Problems

    Hi all, I have developed an Active X control for use in an application. This control reads a pattern file and displays it on the screen. When I first developed the control, I goofed a bit and added a usercontrol to a standard EXE project. It worked perfectly, until it came time to split out...
  12. Panthaur

    UserControl won't stay anchored inside SSTab.Tab1

    I have an active X control that I developed, and the dang thing will NOT stay anchored inside of one of the SSTab frames. I have VB6. This thing is driving me nuts, as well as getting in the way of the other 2 tabs I am using. Anyone got any suggestions? Did I miss some sort of Propery that...
  13. Panthaur

    msvcirt.dll having a cow

    Hi All, I'm having a really weird problem with a program I am working on. I have a program that runs fine 2-3 times, and anytime after that, it gives me one of the Windows XP Dialog box saying that it must shut down my program. The program in question is a console mode app which does a few...
  14. Panthaur

    Batch File - Limitiation???

    I have a relatively simple script which looks at a directory for all files that have an extension of .webctl, which is an ftp script to send a file of the same name but the extension of .txt to another computer. I have pasted the script below... for i in `ls /tmp/orderout/*.webctl` do...
  15. Panthaur

    Inverting Checkboxes

    I have the following scenario in my program. In my HTML side of my code, I have something like the following; <form name=manifest> <input type=checkbox name=include0 value=YES> <input type=checkbox name=include1 value=YES> <input type=checkbox name=include2 value=YES> <input type=checkbox...
  16. Panthaur

    Registry from a Console App

    Hello All, Can anyone tell me how to create a console app that would have the ability to talk to the windows registry? I know a bit about c++, but I have no idea what headers or anything to include. If anyone has a sample framework, I would really appreicate it. Thanks, Panthaur
  17. Panthaur

    LWP::UserAgent Question

    I'm using the following portion of code in a program for IPN Validation with Paypal: ----------------------- $query = &quot;the information that paypal sends the server when a person purchases something&quot;; use LWP::UserAgent; $useragent = new LWP::UserAgent; $request = new HTTP::Request...
  18. Panthaur

    Getting Environment Varibles

    I have a console app written in Visual C++ 6.0 and I am wondering what code I would use to get environment variables from the computer? The app runs on all OSes from Win95 and up to XP. Can anyone post me simple code to get the environment variable information? Thanks, Panthaur
  19. Panthaur

    Using Global Variable for Inter Program Communication

    I am looking to create an easy, simple inter-communiction system between 2 applications. I have a c++ console app (technically not a dos app because it does require use of a dll) that I am writing a menu application for, and I want to be able to send messages back and forth between the 2...
  20. Panthaur

    Transparent Layer

    I am working on an application where it is necessary to be able to identify a small part of a design. The designs being displayed are drawn based on a text file which is simply x,y coordinates. I want to be able to click on one X,Y coordinate and have the program highlight that point, but...

Part and Inventory Search

Back
Top