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 Mike Lewis 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. Technos

    Calling vbscript function in ASP

    Hi All, I have a vbscript function which is returing value of combobox selection like this. <script language = &quot;vbscript&quot;> function GetStrProduct dim strProduct strProduct = document.all(&quot;cboProduct&quot;).value GetStrProduct = strProduct end function </script> now how...
  2. Technos

    calling vbscript function in ASP - fairly simple - please help

    Hi All, I have a vbscript function which is returing value of combobox selection like this. function GetStrProduct dim strProduct strProduct = document.all(&quot;cboProduct&quot;).value GetStrProduct = strProduct end function now how can I retrieve this value in my ASP I'm doing this...
  3. Technos

    Can an Image act like a Button?

    Sure. <input type=&quot;image&quot; src=&quot;btnNormal.gif&quot; id=&quot;btnDecline&quot; name=&quot;btnDecline&quot; onClick=&quot;Dosomethinghere&quot;>
  4. Technos

    style display checkbox - please help - 'd be simple

    Great ... getElementById worked thanks.
  5. Technos

    style display checkbox - please help - 'd be simple

    Nope its not working :(
  6. Technos

    style display checkbox - please help - 'd be simple

    Hey, I have a checkbox like <input type=&quot;checkbox&quot; name=&quot;chkRB&quot; onclick=&quot;javascript:display();&quot;> I have a button which I don't want to show unless user clicks on any of these check boxes I set <input type=&quot;image&quot; src=&quot;btnnormal.gif&quot...
  7. Technos

    Style display javascript - should be simple - help hurry

    Hey, I have a checkbox like <input type=&quot;checkbox&quot; name=&quot;chkRB&quot; onclick=&quot;javascript:display();&quot;> I have a button which I don't want to show unless user clicks on any of these check boxes I set <input type=&quot;image&quot; src=&quot;btnnormal.gif&quot...
  8. Technos

    Lotus Notes Addressbook on web

    Hi, I'm trying to make a web form in Designer. I need to pick up employee name from lotus notes database (Address Book). What are the possible ways to select from a list of names on web from lotus notes address book. Please help !!! Thanks a ton in Advance.
  9. Technos

    Searchable Combobox with Textbox?

    Hi All I have proble searching the combobox. I want to use a text box to search a combo box. Like as we type in the text box it should search the combo box. Kind of synchro ??? How to do this. I created the same in VB but don't know how to do it in ASP. I'm giving you a VB Code. Please Help...
  10. Technos

    Append To Text File using FSO ???

    Hi there, I'm using File System Object to append to the text file. When we append to file it always write the text at the end of the file. But I want to write the text at the begining of the file. Does anybody know the solution? Thanks,
  11. Technos

    Simple problem of Recordset!!! pl. help :(

    Hi, You are right. My cursorType is set to default 0. But now if I'm trying to change it by doing this rs.cursorType=adOpenStatic it gives me following error. Operation is not allowed when the object is open. Where/How to write this line? I'm Stuck. Thanks
  12. Technos

    Simple problem of Recordset!!! pl. help :(

    Hi sjravee I got this error after doing movePrevious. Rowset does not support fetching backward. Can You Help. Thanks
  13. Technos

    Simple problem of Recordset!!! pl. help :(

    Hey There, I stuck with a simple problem. I need to read only last three records from my recordset. I tested with EOF and its working fine and reading all data. Can anybody tell how to read only last 3? My code is Set dbConn = CreateObject(&quot;ADODB.Connection&quot;) dbConn.open...
  14. Technos

    Help with Include HTML file. HELP!!!

    Thanks to all. It helped.
  15. Technos

    Help with Include HTML file. HELP!!!

    Hi, I'm having problem with including HTML file. I want to include the html file which takes the location at run time. Here is my code Dim selectCat, myArray(count) selectCat = Policy myArray(count) = Policy1.htm mylocation = &quot;Employee\selectCat\myArray(count)&quot; Now I want to...
  16. Technos

    open a new window pl. HELP :(

    thanks Guys, Both worked. :)
  17. Technos

    open a new window pl. HELP :(

    Hi there, I need to include 2 things in the following code. 1. I want to read the document from the location location=&quot;http://www.xyz.com/career/Jobs/&quot; + form.Benefits.options[ans].value; I don't know how to insert this URL in javascript(/ forward...
  18. Technos

    Pretty Simple ... pl. help experts?

    Hi, I want to count the Full Names (not all documents) from &quot;names.nsf&quot; files. right now I'm doing this Dim domSession As New Domino.NotesSession Dim domDatabase As New Domino.NotesDatabase Dim domCollection As New Domino.NotesDocumentCollection Set domDatabase =...
  19. Technos

    Reading All Documents from AddressBook - HELP!!!

    Hi experts, Right now I'm reading First document from Notes and displaying it in the combo box. Now I need to read all documents and then display it. Can somebody help ??? My code is: Private Sub Form_Load() Dim domSession As New Domino.NotesSession Dim domDatabase As New...

Part and Inventory Search

Back
Top