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 NeedVBHelp

  1. NeedVBHelp

    SQL Server and date comparisons

    1. SQL Datetime field format "yyyy-mm-dd hh:mm:ss:ms" to compare "mm/dd/yyyy" to SQL Datetime: "SELECT * FROM Table WHERE CONVERT(varchar(10), datefield, 101) > " & theMon & "/" & theDay & "/" & theYear tvuong5@cox.com Sr. Software Developer.
  2. NeedVBHelp

    Record Display

    Sorry if I accidentally post a blank message. Try this: <%If not Rs.EOF then%> <marquee bgcolor=&quot;#000000&quot; border=&quot;0&quot; align=&quot;middle&quot; scrollamount=&quot;2&quot; scrolldelay=&quot;90&quot; behavior=&quot;scroll&quot; width=&quot;100%&quot; height=&quot;16&quot...
  3. NeedVBHelp

    Saving image file to sql server

    I try to make an asp/html page that allow user to upload file to blob field in sql server. please help. thanks tvuong tvuong@kempercm.com Programmer.
  4. NeedVBHelp

    What is wrong with my code?

    1. On the connection you need to specified the database name and table name: Set mCon = &quot;DSN=yourDSN;DataBase=yourDB&quot; 2. On the Recordset need to have the query string: mRecord.Open &quot;SELECT * FROM yourTable&quot;, mConn(Active Connection) Try that tvuong@kempercm.com...
  5. NeedVBHelp

    Input Validation

    Try this instead: <Form Method=Post> <Input Type=Text Name=&quot;TxtSearch&quot;> <Input Type=Button Name=Submit Value=&quot;Search&quot; onClick=&quot;goSearch()&quot;> </Form> <Script Language=VBScript> Sub GoSearch() If condition then action Else other action end...
  6. NeedVBHelp

    WINNT User Name and Password

    Hello all, I have a question. On WINNT, when you hit CTRL + ALT + DEL it pops the WINNT Security form. In that form, there is a button &quot;Change Password&quot;. I wondered is there a way that I can show my custom form instead of WINNT default &quot;Change Password&quot; when user click on...
  7. NeedVBHelp

    Windows NT Change Password

    Hello all, I have a question. On WINNT, when you hit CTRL + ALT + DEL it pops the WINNT Security form. In that form, there is a button &quot;Change Password&quot;. I wondered is there a way that I can show my custom form instead of WINNT default &quot;Change Password&quot; when user click on...
  8. NeedVBHelp

    GetObject

    Hello all, I have &quot;c:\MyDll.dll&quot; and class name is &quot;GetData&quot; How can I set the object &quot;GetObject(&quot;Path&quot;, &quot;Class&quot;), i have try &quot;Set A = GetObject(&quot;C:\MyDll.dll&quot;) and it doesnot work, it said path not found. thanks
  9. NeedVBHelp

    Printing HTML

    Does anyone know how to insert pagebreak and printer orientation on HTML?<br>I meant not using &quot;File - Print&quot; menu.<br>Thanks
  10. NeedVBHelp

    Has anyone used the "Remote Data Service?"

    Hello I have a problem when try to use the &quot;Remote Data Service (RDS)&quot;, error: &quot;Internet server error&quot;.<br>I created a VB Script (ActiveX Control) the will connect to the store procedure and return the records:<br>'Sample Codes:<br>Dim Rds as Object<br>Dim ObjComm as...
  11. NeedVBHelp

    Print Content of HTML or ASP page.

    Hello guys,<br>I need help here.<br>How do we print the content of an ASP or HTML Page in Lanscape instead of portrait? Can we set page brake, too?<br>Thanks.
  12. NeedVBHelp

    Need Help On VB ActiveX Control.

    Let me exlain my problem a little more clearly.<br> <br> I have an activeX control that runs on the client machine and is accessed by a web application that my agency is developing. <br> <br> I have created a web cab file that is automatically downloaded from the web server running the program...
  13. NeedVBHelp

    Need help on creating ActiveX control in VB

    Let me exlain my problem a little more clearly.<br> <br> I have an activeX control that runs on the client machine and is accessed by a web application that my agency is developing. <br> <br> I have created a web cab file that is automatically downloaded from the web server running the program...
  14. NeedVBHelp

    How to create "browse network neighborhood" in VB

    Hi,<br> How to we create a function allow user to &quot;browse network neighborhod<br> Thanks
  15. NeedVBHelp

    Need help on creating ActiveX control in VB

    Hello My name is Thai Vuong, created an ActuveX control using VB6, flatform: Winnt 4.0.<br> When I post it on the server running Winnt, it work OK, but the client site that are using win 95/98, I have problem.<br> Error 430, &quot;Class does not support Automation or does not support expected...

Part and Inventory Search

Back
Top