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

  • Users: brew2
  • Content: Threads
  • Order by date
  1. brew2

    Passing information

    Have used this successfully but in this case it does not work. I have data in one form to transfer to another. In the passing form is this code: Public ReadOnly Property Action() As String Get Return sAction End Get End Property Private Sub lvwDisplay_Click(ByVal...
  2. brew2

    Search for records

    Am slowly learning VB 2005. Tuf transition for me. Want to check if there is data in a db. Here is what I have so far: Public Sub MTDatabase(ByRef bFound As Boolean) Dim dr As DataRow ds = New DataSet() cmd = New OleDbCommand("SELECT * FROM Members", cn)...
  3. brew2

    report width change

    Have an existing report - name tags two wide, 4 per page. Want to change the the width and height. The height change is no problem. What I can't find is the layout tab. Am using CR 9.2 Any help is greatly appreciated.
  4. brew2

    automation error

    When trying to use Microsoft Outlook in an app I get an 'Automation Error. The specified module could not be found' error. Here is the code: Function SendOutlookMessage(ByVal sSubject As String, _ ByVal sBody As String, ByVal sSendTo As String, _ ByVal bShowOnly...
  5. brew2

    rich text format

    this works in vb6 but as a newbie to vb2005 I am at loss to convert If rtfText.SelBold = True Then rtfText.SelBold = False Call BoldStatus(False) Else rtfText.SelBold = True Call BoldStatus(True) End If Also, after the font dialog box is opened (.showdialog)...
  6. brew2

    listview

    Working with a listview the data is entered from Access into a collection. Then it is supposed to populate a listview with this code. CM is a set to a class of people. For Each CM In c sKey = Format(CM.ID, "0000") With lvwDisplay.Items Dim mItem As...
  7. brew2

    Read a value from Registry

    Sometime ago I came across Dev Ashish & Terry Kreft's code on reading values from the registry. (http://www.mvps.org/access/api/api0015.htm). This code is written for VB6. I am now trying to learn .net 2005 and have converted some of the code but not all. Has there been a conversion of the...
  8. brew2

    Listboxes and deleting records

    I have two lstboxes, one access db with two tables with a one to many relationship. lstbox1 is filled from table1(one to many relationship) and lstbx2 is filled from table2 (many in the one to many relationship). Before the item in lstbox1 is deleted all relationships listed in lstbox2 must be...

Part and Inventory Search

Back
Top