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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by DariceLR

  1. DariceLR

    Obtaining checkbox value dynamically

    Ok... Here's the code... I feel like I'm almost there but I'm missing a piece and I don't know Javascript well enough to know if what I want to do is even feasible. ------------------------------------------------- <script language="javascript"> function SubmitSelectedToEngine(form) { var...
  2. DariceLR

    Things that cause an Unload

    I just found a website that I manage was unavailable. IIS was still up and working, but until I unloaded the website, it would not work. What are some things that would cause me to unload my website? Does anyone have a really good reference on this? Thanks in advance! ****************...
  3. DariceLR

    Execute Batch File

    This is my result, thanks SonofEmidec1100 for the help! ' finally we need to kick off the process that imports the file data into the database 'Set Executor = CreateObject(&quot;ASPExec.Execute&quot;) 'Executor.Application = LocalPath&batchname 'Executor.Parameters = &quot;&quot...
  4. DariceLR

    Execute Batch File

    I have an asp page that was executing a batch file with the following code: 'kick off the process that imports the file data into the database Dim command Set Executor = Server.CreateObject(&quot;ASPExec.Execute&quot;) Executor.Application = LocalPath&batchname Executor.Parameters =...
  5. DariceLR

    Avoiding Connection Timeout

    So... there is NO WAY that I can possibly delay a batch from running or have it run later, after the asp page is finished? If I kick the batch or vbs from an asp page, the asp page will still count that as part of it's connection? **************** DariceLR :-{} :-V ****************
  6. DariceLR

    Avoiding Connection Timeout

    I have an asp page, utilizing VBS, that imports a file, reads through it, does some validation and spits out the data to be imported to a database. My question is: The validation and reading of the file takes too long and causes a connection timeout. I have made the asp page such that all it...
  7. DariceLR

    Query to get all Data in One Table, Matching of Another

    ... Thanks in advance... I have two tables: Member Table (Primary Key: MemberID) Fname Mname Lname ... AddressTable (Primary Key is MemberID and AddressType) AddressType Address City State Zip ... What I need is to get all the columns of table Member and if there is a matching child record in...
  8. DariceLR

    Array Giving a Type Mismatch

    Just wanted to put this out there for those who might encounter the same mistake and perhaps get some insight from others as to why it causes a &quot;Type Mismatch&quot; Error: I had code similar to the following (took a lot of code out): while not RCMfile.AtEndOfStream strText =...
  9. DariceLR

    Shortcut Key Strokes

    IF anyone is looking for what I did to solve this: In assigning the Ctrl + Key pairs to the menu commands in the Menu Editor, I was assigning but it wasn't calling them because I didn't have working data to the Subs associated with them... As soon as I found how to Cut, Copy, and Paste they...
  10. DariceLR

    combo box - showing a default value

    If I move the name of a DSN, will the DSN still be attached??? I am using the Wizard made ODBC Logon, and my app uses a specifically name DSN How would I move that up? **************** DariceLR :-{} :-V ****************
  11. DariceLR

    combo box - showing a default value

    What if what I want to set it to isn't necessarily the first row in the list (0)... I want my dynamically filled list to point to a specific item, the one that is used to most often. (Thanks in advance!) **************** DariceLR :-{} :-V ****************
  12. DariceLR

    Programming autofill for a drop-down list

    Correct me if I'm wrong, but just the mere setting the combo box to 2-DropdownList enables the user to scroll by typing (VB6.0)? **************** DariceLR :-{} :-V ****************
  13. DariceLR

    Can you decompile a VB .exe?

    After asking the question myself, the answer is... kind of. If you have a VB application in versions 3.0 and lower, there is a decompiler. The guy who wrote the application is German. His website (written in German) is listed below. To translate it I used altavista's translators. (Don't...
  14. DariceLR

    Multiple Instances of Same Form, Moving Data to Orig. Form fr. Modal

    I have previously posted my question and didn't receive a helpful answer, spending a week looking at other resources... Situation: I have a form that inputs records to a database. When I want to put in information found in a supporting table, I use a Modal form to search the table (on SQL...
  15. DariceLR

    Shortcut Key Strokes

    How do you code shortcut keys, for example Ctrl-X or Ctrl-C and other options available in the Menu Editor? Where does the code go? **************** DariceLR :-{} :-V :-x ****************

Part and Inventory Search

Back
Top