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 Chriss Miller 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. Rasheed Shaik

    \Orant\DBS\FMCUS.MSG not found

    I have a Oracle application developped in Forms 6.0 & Oarcel 12g Database, Aplication is running very well in windows 32bit perfectly, when it comes to Windows 64, it throughs error " \Orant\DBS\FMCUS.MSG not found". Is there any windows 32/64...
  2. Rasheed Shaik

    Urgent Help Needed

    Private rs As New ADODB.connection Private rr As New ADODB.recordset Private Sub cmdAcchu_Click() Set rs = CreateObject("Adodb.connection") rs.Provider = "Microsoft.jet.oledb.4.0" rs.Open App.Path & "\Medrar.mdb" 'rs.Open "\\mika\medrar\Medrar.mdb" Set rr = New ADODB.recordset rr.Open "select *...
  3. Rasheed Shaik

    To Print Data Report in Network Printer

    How to print a data report in Network Printer in a VB 6 application?
  4. Rasheed Shaik

    Check this Code

    Private Sub Text1_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then Set fd = CreateObject("Adodb.connection") fd.Provider = "Microsoft.jet.oledb.4.0" fd.Open App.Path & "\Users.mdb", "endromida" 'fd.Open "\\mika\medrar\Medrar.mdb","endromida" Set Fs = New ADODB.recordset Fs.Open "Select role...
  5. Rasheed Shaik

    Run Time Error'9'

    Hi all I have developed a application on VB6 with Access 2003 and Datareport. while running reports i am getting error of Run time Error'9'. The system is connected in network and using network printer on that, Any suggestions to resolve this error'
  6. Rasheed Shaik

    Run Time Error 3709

    Private Sub cmdAcchu_Click() Set ps = CreateObject("Adodb.connection") ps.Provider = "Microsoft.jet.oledb.4.0" 'cs.Open App.Path & "\Medrar.mdb" ps.Open "\\mika\medrar\Medrar.mdb" Set ls = New ADODB.recordset ls.Open "select * from reser where reno = " & Combo1.Text & "" If ls.RecordCount = 0...
  7. Rasheed Shaik

    Data Report Error

    Dim obj, rs As ADODB.recordset, SQL As String Call db_conn Set rs = New ADODB.recordset strString = " SELECT cusname,idnumb,mobi,pron,proc,blkno,lannum,sqland,cost,comiso,addit,deduc,gtot,vali,rename" & _ " From reser" & _ " WHERE reno = '" &...
  8. Rasheed Shaik

    Data Report Error

    Dim obj, rs As ADODB.recordset, SQL As String Call db_conn Set rs = New ADODB.recordset strString = " SELECT cusname,idnumb,mobi,pron,proc,blkno,lannum,sqland,cost,comiso,addit,deduc,gtot,vali,rename" & _ " From reser" & _ " WHERE reno = '" &...
  9. Rasheed Shaik

    Problem with Parameters

    I am new to VB and Crystal reports, i develop a small project, where i wanna add reports with parameters. i made reports in crystal reports 11 with parameters. In reports parameters are not affecting. i donno why. please any body explain me in detail

Part and Inventory Search

Back
Top