- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
7 Posted Topics
Dim m_report As CRAXDDRT.Report Dim m_app As New CRAXDDRT.Application On Error GoTo Hell Set m_report = m_app.OpenReport(App.Path & "\Reports\rpt_Graduates.rpt") 'discard the save on the report m_report.DiscardSavedData 'use app.path to retrieve the database of your report.' m_report.Database.Tables(1).Location = App.Path & "\Database\GraduatesData.mdb" m_report.Database.Tables(1).SetLogOnInfo "GraduatesData.mdb", "Table name of your Dbase", "Admin", "urDBpassword if …
Hi to all daniwebians! I want to make application that starts automatically when windows starts! Anyone can help me? Thanks!!!
Anyone can help me out on how to code an updateable program? Any help would great!..
Dim Conn As ADODB.Connection Dim Rs1 As ADODB.Recordset Dim ConnString As String Dim SqlString As String ConnString = "Provider=Microsoft.ACE.OLEDB.15.0;Data Source=" & App.Path & "\Database\DB.accdb;Persist Security Info=False;Jet OLEDB:Database Password=DBpassword" SqlString = "select *from table" Set Conn = New ADODB.Connection Conn.Open ConnString Set Rs1 = New ADODB.Recordset Rs1.CursorLocation = adUseClient Rs1.Open SqlString, …
'Populate your combobox with student ID' If Not Rs.RecordCount = 0 Then Rs.MoveFirst Do Combo1.AddItem Rs!StudentID Rs.MoveNext Loop While Not Rs.EOF Rs.MoveFirst End If
Hellow daniwebians! Anybody can help me on how to print fastdraft in crystalreport8.5 thru vb6. Im using crystl.ocx to preview my report and i want that it will automaticaly change the printer settings into fastdraft.
The End.
jhaiyz