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 SkipVought 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. Rich75

    xml using xml to filter results

    HI i have a function that filters my xml data for selectsinglenode but i need to return all of the items. i have found the selectNodes option but i am unsure how to use it could you please help my function is below thanks function filterUsingDOM() { var qs = "'"...
  2. Rich75

    use LinkButton to open application

    ITS OKAY I GOT IT TO WORK... THANKS AGAIN FOR YOUR HELP DIM MAILURL MAILURL = "SOMEONE@SOMEWHERE.COM" LinkButton1.Attributes.Add("onclick", "location.href=" & "'" & mailurl & "'")
  3. Rich75

    use LinkButton to open application

    Brilliant that works ... how can i make the mailto a variable i.e Dim MyVar as string MyVar=some@somewhere.com LinkButton1.Attributes.Add("onclick", "location.href=' & yVar & "'") thanks again for your help
  4. Rich75

    use LinkButton to open application

    the problem is this a hyperlink will open the mailto: but i need to update the table when the hyperlink is clicked (no onclick with hyperlink)... so i figured i would use the linkbutton but have now found that there is no navigation with a link button except with using javascript (this is where...
  5. Rich75

    use LinkButton to open application

    Hi I would like to use a link button to open a mailto command. can this be done. thanks Rich
  6. Rich75

    Automatic E-Mail Format

    hi dont know if you found this or not... & "%0D%0A" (for return) & "%0D%0A" & "%0D%0A" & _ (for new line and space)
  7. Rich75

    Browsing Directories

    Have you had any luck with this problem ??? i have something very similar ??
  8. Rich75

    Let User Select The Folder to test

    i need a browser style window to be opened and then the user to be able to select though there local drives ,network etc. i have tried view tree but it does not give the kind of functionality i am after
  9. Rich75

    Let User Select The Folder to test

    i have been searching all over the net for this but as yet now luck. i am using webmatrix to develope an application that lets the user select a folder and then checks the contents. the page is .aspx is there anything like the "folderbrowserdialog" control that i can use ? at the moment i am...
  10. Rich75

    fso.GetFileVersion Description ? Company ?

    Hi i have the code below that picks up the file version okay but i need to pick up the addition attributes of the .dll files i.e company and description any ideas???? thanks Rich75 Function ShowFileDescription(filespec) Dim fso, f Set fso = CreateObject("Scripting.FileSystemObject")...
  11. Rich75

    DataGrid Editing and listbox's

    thanks this is brilliant....
  12. Rich75

    DataGrid Editing and listbox's

    please help..... just wondered if any body knows how to format the datagrid when a row is being edited as it seems to default all of the cells to the same size, ignoring any formats already set for the datagrid also is there a way to set a cell to display as a drop down (listbox) within the...
  13. Rich75

    e-mail my self from a vbs script

    Brilliant thanks for that however i have a little problem still becuase it is trying to create a new mapi profile i keep on getting the promt on what exchange settings i want to use.... how did you get round this ?
  14. Rich75

    e-mail my self from a vbs script

    Hi just wondered if any one can help i have a backup job that rights out to a text file i want to automate the notifiction by looking at the text file and picking out the relavent text and then emailing myself with the collected text string the collection of the data is not a problem but i...
  15. Rich75

    Executing a VBS Script from Access 2000

    Hi does anybody have a script where you can display the cursor as an hourglass while the script runs ? thanks Rich
  16. Rich75

    Executing a VBS Script from Access 2000

    brilliant that done it thanks alot for all your help
  17. Rich75

    Executing a VBS Script from Access 2000

    Hi tsuji Yes sorry typo on my part that still gives the same error however i changed the code to call a .bat script the .bat script then calls the vbs script i have used as a work around. if you have any ideas why it will not call the vbs script directly i would appreciate it thank Rich
  18. Rich75

    Executing a VBS Script from Access 2000

    Hi i have tried Shell Public sub dim retval retval = ("c:\test.vbs") end sub this gives me an error of runtime error '5': invalid procedure call or argument
  19. Rich75

    Executing a VBS Script from Access 2000

    Hi could anybody tell me how to fire off a vbs script from access..... thanks Rich
  20. Rich75

    Return Values from a procedure

    thats the one thanks alot

Part and Inventory Search

Back
Top