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 TouchToneTommy 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: flnMichael
  • Content: Threads
  • Order by date
  1. 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...
  2. 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...
  3. 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...
  4. 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...
  5. 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...
  6. 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...
  7. 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...
  8. flnMichael

    switching nodes

    Hey guys, Real quick and easy question. What is the DOS command to switch nodes rather than rebooting one to give the node to the other? Thanks Mike
  9. flnMichael

    Session variable sometimes not transferring

    Hey, I have a couple pages that require a session variable throughout each page. After I log in at the login page and enter the right username and password, the session is set to 1 for Admin and 2 for others. If objRS("Password") = Request.form("Password") Then if...
  10. flnMichael

    problem with absolute positioning

    Hey, I am trying to make a dynamic table followed by a button at the bottom of the table. My problem is that the tables (I put the button in a table, also) are given an absolute position when I use Gridlayout. I try using Flowlayout, but then the tables move to the top left corner of the page...
  11. flnMichael

    image change after validation

    Hey, I have this piece of code in my codebehind (C#) for generating a tablecell with an image: TableCell PassFailImage = new TableCell(); HyperLink hlnk = new HyperLink(); hlnk.ID = "passfaillight" + max_parm_count.ToString(); hlnk.ImageUrl = "images/whiteball.gif"...
  12. flnMichael

    image change after validation

    Hey, I have this piece of code in my codebehind (C#) for generating a tablecell with an image: TableCell PassFailImage = new TableCell(); HyperLink hlnk = new HyperLink(); hlnk.ID = "passfaillight" + max_parm_count.ToString(); hlnk.ImageUrl = "images/whiteball.gif"...
  13. flnMichael

    webpage display question

    Hey, I am connecting to a database to get information to display on my webpage. The amount of information varies, so how do I go about making my page vary as well? The way I currently do things is by dropping buttons, text fields, etc. onto the design view, so those elements are static...
  14. flnMichael

    link question

    Hey, I'm trying to figure out if there is ANY way to make someone looking at a PDF file on the web have to click on a link that is located on that page. These PDF files have numerous pages and some have links. My boss wants to know if when they get to that page and it has a link, they...
  15. flnMichael

    CustomValidator question

    Hey, I have a custom validator function that only fires if there is something in the text field when I hit the submit button. Is there some order in which these validators need to be for them to run everytime I hit the submit button? Thanks Mike private void ParamVal_ServerValidate(object...
  16. flnMichael

    text box not posting current value

    Hey, Can someone tell me what I'm doing wrong here. I have a textbox being filled via database, but when I change the value of the textbox and hit update, the update query I have set up still sends the old value of the textbox, not the changed value. string UpdateCmd = "UPDATE MSHeaders...
  17. flnMichael

    RequiredFieldValidator question

    Hey, I have a page with about 5 text fields being validated with RequiredFieldValidators. Once I hit the submit button, I have the IsPostback portion disabling the Validators...Is that even right? Anyway, When the submit button is pressed once the page is reloaded, the code behind enables...
  18. flnMichael

    delete row in datagrid

    Hey, How do I get the row number if I want to use the delete command for a datagrid in C#? I'm trying to delete a row, but am unsure of how to get the associated row. Thanks Mike
  19. flnMichael

    update row in datagrid

    Can somebody please tell me what I have wrong here: private void KPC_Data_Grid_UpdateCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e) { sqlDataAdapter1.SelectCommand.Connection.Open(); sqlDataAdapter1.SelectCommand.CommandText = "SELECT...
  20. flnMichael

    radiobuttonlist question

    Hey, I know this is a 101 question, but I can't seem to figure this out. I have a radiobuttonlist and I want to know which one I chose so I can do some other functions. I've tried OSRdBtn.SelectedItem.Value = "Other" and OSRdBtn.SelectedItem.Text = "Other" and many variations using...

Part and Inventory Search

Back
Top