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 wOOdy-Soft 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 flnMichael

  1. flnMichael

    Exit Button and function

    Thanks for the proper direction. I just figured posting the snippet of code would be sufficient because this is where the "error" was occurring and posting my whole program would have been riduculous. And yes, the MainLoop is being called later on down in the code. Turns out the positioning...
  2. flnMichael

    Exit Button and function

    HI all, I have a little issue with my exit button randomly executing after I execute something on my menubar. So, for example, I go to "open file", select the file, click ok and then the exit function executes. Am I missing something in my creation of the buttons? Any help would be...
  3. flnMichael

    Multiple Mapping

    The script is being run as a task. I am querying a database to get any entries that have a timestamp that matches the current time. If it matches then it grabs the source and destination paths associated with the entry. The paths are attempted to be mapped and are connected only as long as it...
  4. flnMichael

    Multiple Mapping

    I have a perl script I am using to get files moved from one area to another. Sometimes this involves two separate servers and two separate mappings. When I attempt the first mapping it works fine, but when I try the second I get this error: "FAILED: Could not map dest directory Multiple...
  5. flnMichael

    function in text field

    Here's my process: 1. Load page with SQL Query to get past time stamps. This is where the dynamic text fields will come into play. dbconn = "dsn=MyDatabase;uid=webqueries;pwd=" Set objConnection = Server.CreateObject("ADODB.Connection") objConnection.Open dbconn SQLQuery = "select *...
  6. flnMichael

    function in text field

    Hey, I want to have a value inserted into a text field on the page load from a javascript function. I am unfamiliar with the syntax to do that, if at all possible. Here's what I have <input type=text size=10 disabled name=elapseddate value='AddDate(this.form);'> I just want the...
  7. flnMichael

    Passing hidden with hyperlink

    Now I get it, thanks! Now, I found another way to get it in a session variable: function Generic_TimeFormat(num, strNow) Dim strTimeNow Dim strMonth Dim strYear strTimeNow = strNow strMonth = Month(strTimeNow) strYear = Year(strTimeNow) if num = 1 then Generic_TimeFormat =...
  8. flnMichael

    Passing hidden with hyperlink

    I understand, but why, then, does it work when I use a button instead of a link to get to the next page? The session is working fine for another page where the transition is soley a submit button.
  9. flnMichael

    Passing hidden with hyperlink

    Here's the HTML portion <form method='POST' id=form1 name=form1> <tr><td><a href=Programs_Guest.asp?factory=Fact1>Page 1</a></td></tr> <tr><td><a href=Programs_Guest.asp?factory=Fact2>Page 2</a></td></tr> <input type=hidden name=strYear value=<%Response.write Generic_TimeFormat(1...
  10. flnMichael

    Passing hidden with hyperlink

    I have a simple question, at least I think 8-). I have a start page consisting of all hyperlinks. I also have a couple hidden variables within form tags that I need to pass through as sessions to the next pages, but unless I have a button to pass them, they don't go through. What am I doing...
  11. flnMichael

    Passing dynamic &lt;option&gt; values

    I knew I would get the answers I was looking for. This is EXACTLY what I was looking for. Thanks Tarwn, you get a star for this!!!
  12. flnMichael

    Passing dynamic &lt;option&gt; values

    Here's my issue: I have a page that loads up with a variable number of <select multiple> tags. Each select is a different database call to load up into the select. My issue is I need the selected values to go to the next page. The problem is I don't know the names of the options until I load...
  13. flnMichael

    newbie with parsing

    sorry, it's parsing this line where I have no problem: GCS SERIAL #: 0111 but this line is where I have the problem: TEST STATION NUMBER: 555 TEST TYPE: SALE I need the first line to output: SERIAL_NUMBER = 0111 and the second line: TEST_STATION = 555 TEST_TYPE = SALE and so on...
  14. flnMichael

    newbie with parsing

    Hey guys, I am trying to get a couple of lines of a text file and parse the lines into individual variables and output them in another formatted text file. Here's what I have so far: ...previous code... elsif($line =~ /^TEST STATION NUMBER:/) { $test_set_id =~ (/^TEST STATION...
  15. flnMichael

    Accessing text field value

    Alright, I figured it out. Since I can access the table, row, and cell fairly easy I can cast it as a textbox: temptext = (TextBox)tblDynamic.Rows[i].Cells[j].Controls[0] with temptext being added at the top as a textbox. Thanks for all the help!!! Mike

Part and Inventory Search

Back
Top