Recent content by usiddiqi

  1. U

    send data from a table to another

    hi cvboad, ok, u need to create a form and insert the similar code behind that button. ------------------------------ dim db as database dim str as String dim rst1 as Recordset dim rst2 as Recordset str = " select field1, field2, field3 from Budget" set rst1 = db.openRecordSet(str) str = "...
  2. U

    Accessing Excel through Access using VBA

    Hi All, Im accessing an excel sheet throug Access using VBA...actually i have to format that excel sheet in and write it into a table...so i can not directly import the excel sheet. Following is the code that im using -------------------------- For Each ws In obWBK.Worksheets rowCount =...
  3. U

    Report Formatting

    i can not find that particular section mentioned in the other thread, can anybody of u help me finding that one, or post the direct link... Regards, Umer
  4. U

    Access Report to Word

    I didnt find mentioned section can anybody of u help in finding the above mentioned section or post the direct link. Regards, Umer
  5. U

    Redim Preserve Help!

    thanks, modest, it works
  6. U

    Redim Preserve Help!

    Hi guys, Can anyone of u tells me what is the problem with the following code: Dim feld() As String Dim cnt as integer Public Sub more_Click() If Trim(txtFeld.Value) <> "" And Trim(obType.Value) <> "" Then cnt = cnt + 1 If cnt > UBound(feld, 1) Then ReDim...
Back
Top Bottom