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: *

  • Users: yahve
  • Order by date
  1. yahve

    need your help to create a link (ASP newbie)

    Hi, Simple: use two recordsets. Open the database connection, get the info from the 1st table in one recordset, get the info from the 2nd table in another recordset using the same connection. Bye.
  2. yahve

    ending a form with no line break

    Hi, The form tag SHOULD be outside the table. In proper HTML (and logically I might add), tables are inside forms and not the other way around. If you do it right, you might just solve your problem. Bye.
  3. yahve

    Internet connection

    Hi, This might be very simple, but I can't find it anywhere. I need a script written in VB (wscript) that connects my computer to the internet. That's it. My connection is already define, so I guess I don't need to provide anything else, I just need the script to connect using my connection...
  4. yahve

    PrintWriter line length

    Hi, I'm writing to a text file using FileWriter and PrintWriter and I want to know how to specify the lines length (ie 80). Is there a way to do this? Thank you.
  5. yahve

    asp.net on pws4

    Hi, A quick question: can I serve aspx pages on PWS 4 on W98? how do I map the aspx extension to the dll? Thanks
  6. yahve

    Insert emptry string or null into Numeric datatype in SQL Table

    Hi, I'm sorry, I guess I did not explain myself very well. What I ment is that NULL is a valid value for a numeric field and can be use in the insert command to mean that there is no value for that field. A NULL value doesn't screw up computation on numeric at all. This is the way it was design...
  7. yahve

    Insert emptry string or null into Numeric datatype in SQL Table

    Hi, Have you tried converting the empty strings to the string "NULL" and inserting that as the value for the numeric field (without quotes)? Bye.
  8. yahve

    IE6 CSS bug?

    Hi, What's the problem? In IE 6.0.2600, it looks 50% of the window to me! Bye.
  9. yahve

    ADO problem

    Hi, I've tried your script on my server, only changing what needed to be changed, and it worked perfectly. Are you sure there is something in the database? Do you at least get the columns heading in your browser? I really see nothing wrong with the code. Here is my code: <HTML> <HEAD>...
  10. yahve

    Is there a difference? Request(&quot;myform&quot;) Request.Form..

    Hi, I would think that request.form(&quot;myform&quot;), being more specific, would be more efficient. Bye.
  11. yahve

    help with storage of form values

    Hi, Try opening the window first and then passing it the URL. Somthing like: ... msgWindow=window.open(&quot;&quot;,&quot;WinOpen&quot;,&quot;width=700,height=300&quot;); msgWindow.location.href=&quot;./PreviewRequest.cfm?param1=&quot;+var1+&quot;param2=&quot;+var2; ... I use something like...
  12. yahve

    screen refreshes when pop up window opens

    Hi, Just replace all the href=&quot;#&quot; with href=&quot;javascript:void(0)&quot; on the links that open the popup. Bye.
  13. yahve

    Calling a javascript var from asp

    Hi, What are you trying to do? can you be a little bit more specific? Bye.
  14. yahve

    Downloading netscape for mac??Does PowerPC = OS9?

    Hi, PowerPC refers to the type of machine (processor) and not to the OS. In this case, if you're running OS9, you could probably run the PowerPC version. Bye.
  15. yahve

    Active-x / VB launching

    Hi, Try with an hta (HTML application). Here is something to get you started, just edit the path to the application you want to launch. app_launcher.hta <html> <head> <title>Start Adobe Reader</title> <HTA:APPLICATION ID=&quot;start_adobe&quot; APPLICATIONNAME=&quot;Start Adobe...
  16. yahve

    form submit problem in netscape

    Hi, It worked fine for me too, using 4.76... you might want to clean up your HTML thought, Netscape often chokes on sloppy code. (actually, it usually screws up on perfectly good code too!) Bye.
  17. yahve

    Changing from transitional to strict

    Hi, I guess you'd want to look at http://www.w3.org/TR/xhtml1/#normative and http://www.w3.org/TR/xhtml1/#diffs for starters... You're welcome ;-) Bye.
  18. yahve

    Where are my é, à, û ...

    Hi, Can someone tell me what's the problem? page 1: form.html ... <form name=&quot;form1&quot; method=&quot;post&quot; action=&quot;page2.aspx&quot;> <input name=&quot;txt1&quot; type=&quot;text&quot;> <input type=&quot;submit&quot;> </form> ... page 2: page2.aspx <html> <script...
  19. yahve

    Fax Merge

    He Skip, No, I do not have anything that ressembles address book for the excel filename or for anything else. The window that pops up is named &quot;Check names&quot; and it says &quot;No match found for 123-4567&quot;. It offers me to create a new contact or to look for more contact or to...
  20. yahve

    Fax Merge

    Hi, I'm using WinXP and Office2000 Pro. Without anything else, can I merge to fax a letter using an excel spreadsheet as the data source (ie one column with the name, one column with the fax no)? When I try, the address book pops up and tell me that I there is no such contact. I do NOT want to...

Part and Inventory Search

Back
Top