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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by yahve

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

Part and Inventory Search

Back
Top