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!

Recent content by vbmorton

  1. vbmorton

    Reload form to update msflexgrid???

    George. Thanks for your help. i used msflexgrid.clear and it worked. it now updates the grid when form b dissapears. thanks for your help.. you get a much earned star!!
  2. vbmorton

    Reload form to update msflexgrid???

    still not reloading the grid.. how do i clear the msflexgrid?
  3. vbmorton

    Reload form to update msflexgrid???

    FORMB i have Unload FORMB Set FORMB = Nothing FormA i have Private Sub form_activate() Call Form_Load End Sub am i way off ???
  4. vbmorton

    Reload form to update msflexgrid???

    ive not heard of that.. do you have some sample code. Thanks george!
  5. vbmorton

    Reload form to update msflexgrid???

    Hope someone can help me out. I have FORMA w/msflexgrid on it. person clicks on the grid. opens up a new formB on top of FORMA ,they do whatever on that form then click close. I unload formB, and FORMA shows up as it was behind formB. How can i get it to be where formB closes, FormA reloads so...
  6. vbmorton

    List Box - Check box feature

    Thank you all, works like a gem!!
  7. vbmorton

    List Box - Check box feature

    Can someone give me some advice. i currently have. Private Sub load() Dim i As Integer lst.AddItem "1 " lst.AddItem "6 " lst.AddItem "7 " lst.AddItem "8 " lst.AddItem "9 " lst.Selected(0) = True End Sub I only want to allow the user to select one of the items, it defaults to item 1, but...
  8. vbmorton

    Stop msg's after closing excel

    Here is what i have so far. ' Create an instance of Excel Set g_objExcelApp = New Excel.Application ' Open Selected Excel file g_objExcelApp.Workbooks.Open (g_strFilePath & "\" & g_strFileName) Set g_xlsWS = g_objExcelApp.Sheets(1) ' Update Excel spreadsheet...
  9. vbmorton

    Stop msg's after closing excel

    Was wondering if anyone can point me in the right direction, using VB6 to open and close a spreadsheet in excel, after the close of the spread sheet a msg pops up.. "Do you want to update file.exl" is there a way to auto reply to this msg or for this msg not to come up??? Thanks VBMORTON
  10. vbmorton

    FSO - Delete Files

    Thanks alot.. worked perfect!!!
  11. vbmorton

    FSO - Delete Files

    Hi all. What I am trying to do is, Create a folder and enter documents into that folder. I am doing this. fso.CreateFolder (fldr & "\" & Trim$(rsT(2))) Sometimes this folder is already out there. so.. it goes into my error handling. then in my error handling: Select Case Err.Number...
  12. vbmorton

    Print Recordset

    Thanks all for your help. the code was right. but it was reading thru my printer list and printing at another printer at another site. i changed the default printer and it is working!!! :-)
  13. vbmorton

    Print Recordset

    i typed in this: Printer.Print "Testing 1-2-3" Printer.EndDoc and it worked.. not sure why my code not printing it.. i commented out the printer.enddoc at the beginning out. now im clueless
  14. vbmorton

    Print Recordset

    i was told to do that at start and finish, to make sure nothing is hanging out there.. is that correct or ??
  15. vbmorton

    Print Recordset

    i commented out the bin property and i got past that property error.. it goes thru and looks like its populating all the fields correctly, but nothing comes out of the printer.???? any ideas of what im missing for it to print. rsDrawList.Open strsql,g_Conn,adOpenDynamic,adLockOptimistic...

Part and Inventory Search

Back
Top