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: sabavno
  • Content: Threads
  • Order by date
  1. sabavno

    Problem with the pasted text

    Hi, I have a text box on my form <TEXTAREA NAME="name2" ROWS="7" COLS="65" wrap=off></TEXTAREA> The problem is when someone instead of typing, pastes some text (say e-mail) and proceeds to the next page, the pasted text is converted into the HTML and is displayed on the next page (which...
  2. sabavno

    User Info from registry

    Hi, I was wondering if it is possible to capture the user login from my asp page. I tried to use Set n = Server.CreateObject("WScript.Network") Response.Write n.UserName Set n = Nothing But since the code executes on the remote server, I get that server's user name, instead of the...
  3. sabavno

    Check all check boxes on the form

    How to check all check boxes on the form without referring to their names and not knowing how many of them are present on the form? Thanks.
  4. sabavno

    Retrieve data from the database without submit()

    Hi, Please help me here with my knowledge gap. From what I know, I can only access the database and retrieve the data on the form's Submit event. I can either submit the form to itself to stay on the same page or submit it to another page. So, I guess my question is how can I trigger...
  5. sabavno

    Populate list box with the values from the recordset

    Hi, I have a recordset that returns three columns params="Select LastName, FirstName, Initial from Names" Set rs = db1.Execute(get_params) Is it possible to populate the list box with the values from the recordset so that the list would contain the following entries: Smith, John (JS) Smith...
  6. sabavno

    Tooltip for each entry in the list box

    Hi, I am looking for the solution to display a separate tooltip for each entry in the list box showing up once the entry is selected. Since "title" attribute and onMouseOver event would not help in this case, I was wondering if there are any other options out there. Thanks in advance.
  7. sabavno

    Server Renamed

    Hi, Our server has been renamed and the IP address changed. Now, the webpages that reside on that server are not accessible by their old address e.g. http://servername.domain.index.asp They are however accessible by server's IP address. e.g. http://2342.3423.23423/index.asp How do reconfigure...
  8. sabavno

    Excel Macro

    Hi, I am looking for the hints on how to write the following macro in Excel. The is a huge spreadsheet containing the serial numbers along with other information. I want to prompt the user for the Serial Number, then make the cell with the matched serial number active, look up the information...
  9. sabavno

    How to retrieve the client's machine info

    Hi, I need help with retrieving the user information from the client's machine. When I run the following code, it returns the server's information rather than the machine's from which the asp page was open. Set n = Server.CreateObject("WScript.Network") UserName=n.UserName Please advise...
  10. sabavno

    How to use CDONTS.NewMail

    Hi, I am creating an ASP page from which I need to send the email. My question is do I need to configure the server in order to use CDONTS.NewMail? So far, whenever I tried to use this object, I couldn't sent the email. Also, is there a way to get the user's information from the Outlook...
  11. sabavno

    Populate combo boxes with today date

    Hi, I have three combo boxes on my form. First contains the month selection, second - day's, third - year. (E.g. &lt;SELECT NAME=RelMonth&gt; &lt;OPTION VALUE=1&gt;Jan &lt;OPTION VALUE=2&gt;Feb &lt;OPTION VALUE=3&gt;Mar &lt;OPTION VALUE=4&gt;Apr &lt;OPTION VALUE=5&gt;May &lt;OPTION...
  12. sabavno

    How not to reload a page on BACK

    Hi, I have a little form with a few tables that are whether hidden or visible depending on the choice selected in the combo box. By defaul, on the page load it is only one table that is visible. What I want to achieve is when user makes a certain selection in the combo box and the hidden table...
  13. sabavno

    Script To Extract Data

    Hi, I was wondering if someone has already done that before and could share a code with me. I need to export all data from Notes to SQL2000. I know that one of the ways is to create a view that will include all required fields, then export that view. However, the document has many fields and...
  14. sabavno

    Export data to SQL

    Hi, I am looking for the best solution to export the Notes data to SQL tables. Could you please describe some of the ways already used. Thanks in advance.
  15. sabavno

    Three-across mailing lebels

    Hi, I was wondering if anyone could suggest the solution to the following problem. I have a table that contains the customer's information. What i need to do is to output the customers records in the following format in the text file. Bob Jason Katie Kool Tom Hass...
  16. sabavno

    Questions on Views

    Hi, I was wondering if it's possible to create a view joining two databases residing on the different servers. If it is, can anyone outline the steps. Thanks a lot.
  17. sabavno

    View's Alias Name

    Hi, In our database there are two agents scheduled for the same time. In the first agent, the following view is open: Set ThisView = ThisDb.GetView( &quot;UpdateNames1&quot; ) In the second agent: Set ThisView = ThisDb.GetView( &quot;UpdateNames2&quot; ) However, I was not able to find the...
  18. sabavno

    Please help find the bug

    Hi, I have a simple formula that does not seem to work: @If(RTransit = &quot;80323&quot;;&quot;07206&quot;;RTransit = &quot;70207&quot;;&quot;00275&quot;;@Trim(@LeftBack(Bill_To_Transit; 4))=&quot;9&quot;;&quot;99999&quot;;&quot;&quot;) For the false case, RTransit shold be populated with...
  19. sabavno

    How to import all files from the directory

    Hi, I wonder if anyone could give me an idea of how I could do the following from VBA: 1 - Access a certain folder 2 - List through all the files that there are in that folder 3 - Import all excel files into the Access database. Any help will be greatly appreciated. Thanks.
  20. sabavno

    Please help a novice

    Hi, I need an assistance in writing my first lotus notus script. What I need to do is to open two databases on the same server and loop through the documents of both databases to compare the values. Can you please give me the example of the declaration section and open statements for two...

Part and Inventory Search

Back
Top