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 Wanet Telecoms Ltd 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. 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
  16. flnMichael

    Accessing text field value

    I still get the same error. I also tried setting a temp string and setting it to the name: test = "MSN"+i.ToString(); which will give it MSN1 (ex.), but when I try to access temp.Text I get: 'string' does not contain a definition for 'Text'
  17. flnMichael

    Accessing text field value

    when I do that, the only options I get are: CompareTo Equals GetHashCode GetType GetTypeCode ToString I tried ToString, but this is tha error I get: The name 'MSN' does not exist in the class or namespace 'TestScreen.WebForm1'
  18. flnMichael

    Accessing text field value

    that's exactly what I want to do. I have the ID being created, but don't know the syntax to get the value in it. ex. MSN1 --> value = 123 MSN2 --> value = 102 MSN3 --> value = rest It's when I try to access then where I get confused. How do I syntactically say I want "MSN"+index in C#?
  19. flnMichael

    Accessing text field value

    Hey, I have a piece of code below in which I am creating multiple rows on a dynamic table, each with a number of text fields I have to gather on a button click. My question is how do I access each text field? I have named them according to a static name + the row number in which it falls...
  20. flnMichael

    Session variable sometimes not transferring

    guitardave78 I realized that web farm and web garden are two seperate things, and to answer the question we are running both. Each individual server has multiple processors and both servers are running the same application. I'm still seeing if I need to set something up on the server that I...

Part and Inventory Search

Back
Top