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

    How do I use 2 ADO connections in one query?

    Hello, I have a situation where i have need 2 connections (one to Excel and one Access) to create a recordset. I have no trouble querying these two sources separately. Typically I use a statement such as the following: ... rsRecordset.Open strSQL, cnExcel, adOpenStatic, adLockReadOnly ... in...
  2. tallman64

    Turning Folder Sharing "on" for Win 98

    Thanks James, Reghakr and teknikal. Other problems have forced me to return (temporarily) to win 95. I'll be sure to refer to your suggestions when i try this again. Tallman
  3. tallman64

    Turning Folder Sharing "on" for Win 98

    Hi, I've updated a computer from win95 to win98 and i notice that the properties of folders don't have the default "sharing" option. How can i turn this feature back "on" or is it simply not available for win 98. thanks in advance, Tallman
  4. tallman64

    listbox AddItem method not found

    Hi DonRH, (assuming you are working with a form and placing code in that form, also assuming that you are not getting any properties and methods after typing the name of you listbox) select the listbox and check the "name" property (rt-click: properties). this will rule out typing...
  5. tallman64

    Need DBGrid "WrapText" Synax

    Found the problem. the statement did work but the wraptext effect was not visible until the rowheight property was tripled. Chris
  6. tallman64

    Need DBGrid "WrapText" Synax

    Hi, I'm using a DBGrid and under the properties for the DBGrid (property pages, Layout tab) I see a check box for Wraptext. Can someone help me with the correct syntax to set the "wrap text" property to true (at runtime)? (i've tried DBGrid.Columns(n).WrapText = True - didn't...
  7. tallman64

    Programmatically Setting Column Names and Width on DBGrid

    This is how i do it DTRNTR: .caption is the column name on the DBGrid (DBGrid_Display) With DBGrid_Display .Columns(0).Caption = "Your Column Name" .Columns(0).Width = 2000 .Columns(0).Visible = False End With Chris (Tallman64)
  8. tallman64

    Error Msg: "You do not have the appropriate liscence..."

    Hello Programmers, I need help with a decidedly un-helpful Microsoft error message. My program is created with VB5 Enterprise Edition and uses a DBGrid, a Data contol and a few other standard components. Most of my installations work fine, but on some machines, i get the following Microsoft...

Part and Inventory Search

Back
Top