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

  1. SilverSide

    comment a code block in VB6

    If 7=8 Then End If :-) ®od
  2. SilverSide

    vb6 shutting down when loading project file

    I couldnt even open the form to erase the viewer control without it shutting down." use notepad on the *.frm file :) ®od
  3. SilverSide

    Populating HTML table with ADO recordset

    Quote: Set Cn = CreateObject(&quot;ADODB.Connection&quot;) End Quote <% Set Cn = SERVER.CreateObject(&quot;ADODB.Connection&quot;) Set Rs = SERVER.CreateObject(&quot;ADODB.Recordset&quot;) %> before <html> you can use <OBJECT RUNAT=SERVER ID=cn PROGID=&quot;ADODB.Connection&quot;></OBJECT>...
  4. SilverSide

    How to get some output in a text box Blinking

    forgot: if val(textbox.tag)=10 then timer1.enabled=false textbox.tag=0 textbox.backcolor=white exit sub end if ®od
  5. SilverSide

    How to get some output in a text box Blinking

    timer1.enabled=false timer1.interval=50 'or whatever in textbox_lostfocus() timer1.enabled=(textbox.text=&quot;&quot;) end sub in Timer1_Timer() if val(textbox.tag)=10 then textbox.tag=0 textbox.backcolor=white exit sub end if if textbox.backcolor=red then textbox.backcolor=white...
  6. SilverSide

    Calling all those outside UKCan anyone test my currency auto selector?

    Current Country Code: SWE Currency To Display: EUR ????????? not yet LOL right now: 'SKR' Svenska KRonor ®od
  7. SilverSide

    Changing Document Properties for a printer

    check the helpfile for: printer.Duplex ®od
  8. SilverSide

    clean close of Word

    I use: Do While WA.Application.BackgroundPrintingStatus > 0 DoEvents Loop ®od
  9. SilverSide

    clean close of Word

    try WA.Quit Set WA = Nothing ®od
  10. SilverSide

    Distinct sql ?

    try # between the dates strQuerySql = &quot;SELECT distinct * FROM ChillTemp where Date = #&quot; & testdate & &quot;#&quot; ®od --------------------------------------some Music? http://www.artistlaunch.com/silverside
  11. SilverSide

    Click X in top right still have program running.

    Always in (MDI)Form_QueryUnload Set FormName = Nothing ®od --------------------------------------some Music? http://www.artistlaunch.com/silverside
  12. SilverSide

    Help with copying *.*

    beats me :( I guess &quot;FileSystemObject.CopyFolder&quot; wont work. but here is another ©OOL place: http://www.mvps.org/vbnet/welcome.htm ®od --------------------------------------some Music? http://www.artistlaunch.com/silverside
  13. SilverSide

    CommonDialog ShowSave

    With Dialog .CancelError = True .Filter = &quot;File Types (*.doc)|*.doc|All Types (*.*)|*.*|&quot; ( .Flags = cdlOFNHelpButton Or cdlOFNExplorer) .ShowSave if err=0 then strThisFile=.FileName endif end With ®od ®od --------------------------------------some Music...
  14. SilverSide

    Help with copying *.*

    I dont know what DEVICETODESKTOP does, but if you just want to copy files: strFromPath =&quot;C:\somewhere strToPath =&quot;D:\ToSomeWhere strFile = Dir$(&quot;*.*&quot;) Do If strFile = &quot;&quot; Then Exit Do Err=0 FileCopy strFromPath & strFile...
  15. SilverSide

    Urgent - Resize Dao Field Without losing data

    create a temp table a copy but with the new size for that field. copy data to this temp table. remove/rename the first table. rename temp to the first tables namn you can do this in code. ®od --------------------------------------some Music? http://www.artistlaunch.com/silverside
  16. SilverSide

    Any WAIT WINDOW in VB??

    nah, you have to make one form frame picture whatever container there is and .Caption =&quot; Go to Lunch :-)&quot; ®od --------------------------------------some Music? http://www.artistlaunch.com/silverside
  17. SilverSide

    Package and Deployment Wizard - error 80010108: Automation error

    at MSDN the only 'help' is here http://support.microsoft.com/default.aspx?scid=KB;en-us;186063& -------------------------- could it be a invalid/missing reference ? ®od --------------------------------------some Music? http://www.artistlaunch.com/silverside
  18. SilverSide

    save pictureboximages as part of exe

    try VB Resource Editor, enable it from the Add-In Manager ®od ----------------------------------------------------- some Music? http://www.artistlaunch.com/silverside
  19. SilverSide

    How to print document frm WordPad? Pls help!

    Shell &quot;C:\Program\WORDPAD.EXE C:\aTextFile.txt /p&quot; /p for print ®od
  20. SilverSide

    Printing from a ListBox

    or For i = 0 To List1.ListCount -1 Printer.Print List1.List(i) Next Printer.endDoc ®od

Part and Inventory Search

Back
Top