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 strongm 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: srinivaspvl
  • Order by date
  1. srinivaspvl

    Data report - show method

    Hi friend Set mPRINTset.DataSource = RsTemp mPRINTset.Show vbModal Set mPRINTset = Nothing 'You must specify your record set of ADODB. Rstemp is the record set of mine. If mprintset is your datareport. Then use this way. Hope fully this will work. Best of luck srinivas
  2. srinivaspvl

    Error with P&D wizard

    Hi friend If you got any information about this problem, please pass the message to me. Even i tried so many ways but i am getting the same problem, in one of my system. I feel this may be because of installation problem of your Visual Basic software. Please if you got any information then...
  3. srinivaspvl

    Viewing Reports in VB based on user input....

    txtPoNo - is my text box. cmdDisplay - is command button when user enters the value in txtpono. After clicking on command button this code will work. Data report you have to call from Form. Just go through the code. All you can understand very easily. Best of luck Srinivas_pvl@hotmail.com
  4. srinivaspvl

    Viewing Reports in VB based on user input....

    Hi friend Hope this will solve your problem, You can not directly do user friendly report on data report. I am just giving one example how i did in my project. User will entry purchase order number based on that report will be displayied. You have to create temp. table and update the data...
  5. srinivaspvl

    Sort MSFlexGrid

    Dim spql As String Dim ab, cd As Double spql = "select * from emp" RS.Source = spql RS.Open If RS.RecordCount > 0 Then For i = 1 To RS.RecordCount ab = RS.Fields("salary") cd = RS.Fields("Netsalary") RS.MoveNext Next i End If RS.close...
  6. srinivaspvl

    Sort MSFlexGrid

    Dim spql As String Dim ab, cd As Double spql = "select * from emp" RS.Source = spql RS.Open If RS.RecordCount > 0 Then For i = 1 To RS.RecordCount ab = RS.Fields("salary") cd = RS.Fields("Netsalary") RS.MoveNext Next i End If RS.close...

Part and Inventory Search

Back
Top