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 Mike Lewis 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. ZanfirMarin

    maximizing access aplication from VB

    Create a module: Option Compare Database Option Explicit ' Type Rect x1 As Long y1 As Long x2 As Long y2 As Long End Type Declare Function IsZoomed Lib "user32" (ByVal hWnd As Long) As Long Declare Function ShowWindow Lib "user32" (ByVal hWnd As Long, ByVal...
  2. ZanfirMarin

    Pictures in reports?

    Insert a Image control in your Report(ex: Name Image7) In a Detail On Format insert: Private Sub Detail_Format(Cancel As Integer, FormatCount As Integer) Dim x As String x = "Z:\FotoPers\M" & Trim([NameField]) & ".bmp" Me!Image7.Picture = x End Sub
  3. ZanfirMarin

    iif Function.

    Nz(ColumnName)
  4. ZanfirMarin

    Importing Multiple "dbf" files into a Access97 Table

    I cannot understand very well what you ask, so tell me more. Here it is a code that helps you to see every .dbf from a directory. Dim MyName As String MyName = Dir(&quot;C:\Fact2\*.DBF&quot;, vbNormal) Do While MyName <> &quot;&quot; ............ MsgBox MyName...
  5. ZanfirMarin

    Create Unique ID Number?

    Look at my point of view: Public Function SetPO() As String Dim db As Database Dim rs As Recordset Dim NewNr As Long Set db = CurrentDb Set rs = db.OpenRecordset(&quot;Table1&quot;, dbOpenTable) rs.Index = &quot;NumberID&quot; If rs.RecordCount <= 0 Then...
  6. ZanfirMarin

    ComboBox in DBGrid

    Thank you for your answer. It is an intersting clue but is pretty far from an Datasheet Access ComboBox. Thanks again! ZM
  7. ZanfirMarin

    ComboBox in DBGrid

    Could I use a ComboBox in a DBGrid? How?

Part and Inventory Search

Back
Top