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 IamaSherpa 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: Seeff
  • Order by date
  1. Seeff

    Launching a program with parameters

    Thanks...I figured it would be a simple solution. I even got the Windows picture and fax viewer (that hidden app) to work just fine. For those intrersted the command line: rundll32.exe %Systemroot%\system32\shimgvw.dll,ImageView_Fullscreen
  2. Seeff

    Launching a program with parameters

    Hi Experts, I have a thumbnail image in a form. When I click on the image I want to run an external program (some photo viewer or other) and have the viewer open the image. The RunApp command in a macro does not have the option to pass a parameter. How do I do this with code? Thanks for your...
  3. Seeff

    Asp and JS interaction

    Thanks for your input Lee. I guess I need to clarify the question. I have to query the database and send two parameters to the javascript - the jpg filename AND the result of the sql. I have no clue as to how to configure the onmouse event to send two parameters to the javascript. It currently...
  4. Seeff

    Asp and JS interaction

    Hi to all the experts, I have two frames.The first one has thumbnails. I have managed to get the second frame to change to the larger picture with the "onmouseover" event (JS). So far, ok. The JS script looks like this: function rollIt(whichPic) { top.picframe.document.images.pic1.src =...
  5. Seeff

    Validations

    Thanks Chirpy...it works with a few changes of course. Something in the Elseif was bad.
  6. Seeff

    Validations

    Thanks Chippy for your time. I don't want a button. Ok...I got the if checks going and determine if the values are valid or not. Then what? If they not then what do I do to force the user to stay put until a correct value is entered? Which event do I use? AfterUpdate?
  7. Seeff

    Validations

    Sorry....I messed it up. It's like this The first values can be a,c,e,g (group1)OR b,d,f,h (group2). If group1 then valid values are 1,2,3,4,5. If group2 then valid values are 6,7,8,9,10.
  8. Seeff

    Validations

    The form has a whole lot of buttons and the user can navigate between records too. I would like the data entry to be checked immediately.I will complicate it a little. The first values can be a,b,c,d (group1)OR e,f,g,h (group2). If group1 then valid values are 1,2,3,4,5. If group2 then valid...
  9. Seeff

    Validations

    I have a form with two text boxes. The first determines the valid values for the second. For example: Text1 can be A or B. If text1=A then Text2 can have values of 1,2,3. If text1=B then text2 can have values of 10,20,30. How do I approach this and where? I want the form to be "stuck&quot...
  10. Seeff

    How do I format after installing?

    I have mistakenly installed Windows 2000 SERVER. How do I uninstall or format the disk in order to install Windows 2000 PROFESSIONAL? Thanks for your help
  11. Seeff

    Round a number in a list box

    Works fine and a thank you very much!
  12. Seeff

    Round a number in a list box

    Hi...I have a listbox that lists a field containing numbers. The numbers have many decimal places and I would like to show them in the listbox with only one decimal place. For eg. instead of 1.2345 I would like to see 1.2 in the list box. Any ideas and thanks for your replies.
  13. Seeff

    Array as query parameter

    OK!! That is it, works perectly. Thanks for your Gholden help.
  14. Seeff

    Array as query parameter

    Yes, I picked up on the OR instead of AND. I want to, at this stage perform the SQL on the table, simply like an ordinary query with a datasheet view.
  15. Seeff

    Array as query parameter

    ok...that is great, I have the correct SQL statement. Now, how and where do I run it to be able to view the resulting recordset. Thanks
  16. Seeff

    Array as query parameter

    Hi....I have an array populated with values. I would like to use these values as criteria for a query. How do I do this? eg. My table (300 records)has a Code field with 20 different unique values. The user has picked from a listbox 3 different values (eg. 5,8 and 15). I have them in an array...
  17. Seeff

    Multilistbox parameter for query

    I have a form with a listbox. I would the user to pick one or more values and have these values serve as criteria for a query. Any ideas? Thanks in advance!
  18. Seeff

    passing a parameter

    I think maybe the Update might be wrong and thus the parameter not being passed. It looks like this: function updateMap() { MapForm.Cmd.value='none'; MapForm.min.value=''; MapForm.max.value=''; MapForm.AGENT.value=agent; MapForm.submit(); }
  19. Seeff

    passing a parameter

    Both don't work. That is the reason I thought I should have a hidden field with a parameter passed. Lets say a new field with a parameter is a solution, how should the field syntax be? As above?
  20. Seeff

    passing a parameter

    I thought it should be enough, but I have an SQL further on in the code that does not have a value for AGENT. Maybe my SQL statement is wrong? Dim strConn Dim oRs Dim strDataFile1 strDataFile1 = Server.MapPath("/main.mdb") Set oRs = CreateObject("ADODB.Recordset")...

Part and Inventory Search

Back
Top