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 bkrike 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: sbdproj
  • Content: Threads
  • Order by date
  1. sbdproj

    sort a recordset

    Hi, I'm having troubles sorting a recordset. This is my code: Dim rstMeetwaarde As ADODB.Recordset Dim cnn1 As ADODB.connection Set rstMeetwaarde = New ADODB.Recordset rstMeetwaarde.CursorType = adOpenKeyset rstMeetwaarde.LockType = adLockOptimistic...
  2. sbdproj

    openreport and wherecondition with Like in it

    Hi, can't preview my report when I use a wherecondition in which I use the word "LIKE" . Who knows how to do this. This is a part of my code: dim wherecondition as string wherecondition = "[Kal_date] = 'Like 2003*'" DoCmd.OpenReport stDocName, acPreview, , wherecondition
  3. sbdproj

    navigationbuttons

    Hi, I want to run a sub(cbxGebruiker_Click) when I click on one of the navigationbuttons. How can I do this? I've looked for events from the navigationbuttons but I couldn't find them. Anyone any ideas?
  4. sbdproj

    fill parameters and open access report

    Hi, In my program I use an Access(2003) Database. I've made some reports in it which the user can open within my program when a button is clicked. When I open the reports I need to fill in some parameter values. Now I want to open the reports and automatically fill the parameters so I don't get...
  5. sbdproj

    show reportnames from Acces DB

    Hi, In my program I use an Access(2003) Database. I've made some reports in it which the user can open within my program. Now I want to fill a combobox with the reports from the database at the start of the program. This way I don't have to program the reports in the code of my program, but I...
  6. sbdproj

    vb.net and acces report

    Hi, I'm having a problem with opening an access report in my program. I'm using an access database(2003) in which I've already made some reports. In my my program I fill the databases and then after hitting a button I want to view the reports I've already made. I got the progam to open access...
  7. sbdproj

    access report

    Hi, I've made an report in an Access 2003 database and now I want to open this report when I click a button in my program. How can I do this? I've found something like this but it's not working: Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  8. sbdproj

    update database with changed dataview

    Hi, My problem is that I can't get my Access database updated. I've made a dataview and made some changes to it with some data that I've taken from a textfile. In the try statement under finally I close the textfile and now I want to update the database with the changed dataview. How do I do...
  9. sbdproj

    possibility check protected sheet for password

    Hi, I want to make a sheet unptotected so I use the function ActiveSheet.Unprotect. This works nice but sometime the sheets is protected and I have to use the password to unprotect the sheet. I want to know if the sheets is protected with a password or not so I can call the unprotect function...
  10. sbdproj

    sort a filelistbox

    Is there a simple way to sort a filelistbox?

Part and Inventory Search

Back
Top