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 SkipVought 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: surfside1
  • Order by date
  1. surfside1

    Where to find sample access DBs using odbc

    Does anyone know of where I can find a sample DB that using odbc to access a sql server .mdf file? Thanks!
  2. surfside1

    view contents of data in access table

    That's not what I am asking. When I run my application that I've built and coded in VB and I am using an Access table as the DataSource, I just want to be able to browse the table to see if I got the correct results Without bringing up Access and View the table. Isn't there a similar way to do...
  3. surfside1

    view contents of data in access table

    How do you view the contents of the data that is in the datasource in VB express 2005? In my case it is an access table, and I just need to know where in the VB interface that you see the actual values without coding? I end up going into Access, this has got to be simple....Thanks!
  4. surfside1

    Opening a form with the correct record id.

    I'm sorry, but I'm really new at VB. In Access this was really simple. My form's fields are bound to the data, so I was thinking that as long as I received the value of the ID in the ID field that is bound to the table, that it would bring up the form with that ID's values. Instead, the...
  5. surfside1

    view contents of data in access table

    Do you know if that option is available in vb 2005 express? I don't see it in my dropdown menus. Thanks!
  6. surfside1

    Opening a form with the correct record id.

    I've asked this before and got alot of good help, just nothing seems to get me past my problem. I have a grid on a form, when someone clicks on a row, it should open a form with the contents of the record of that row. I have been able to pass the value of the grid ID with this: Private Sub...
  7. surfside1

    view contents of data in access table

    How do you view the contents of the data that is in the datasource in VB? In my case it is an access table, and I just need to know where in the VB interface that you see the actual values without coding? I end up going into Access, this has got to be simple....Thanks!
  8. surfside1

    Reports in VB?

    Thank you all!
  9. surfside1

    Reports in VB?

    What is the equivalent of the Access Report in VB? Is it just another class? Can you have group totals/subtotals/headers/footers? thanks!
  10. surfside1

    What property in the DB controls whether you see other apps in taskbar

    I'm certain I've set a setting that brings up the DB in full screen mode so that I cannot get to other applications. What is that? thanks!
  11. surfside1

    Info on converting Access 2003 Modules to VB.Net 2005 - DoCmd.OpenForm

    Thanks for all of your help. As far as the New Form, I am coding the following. Private Sub toolstripListingForm_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles toolstripListingForm.Click Dim fListingEditForm As New frmListingEditForm fListingEditForm.Show() End...
  12. surfside1

    Info on converting Access 2003 Modules to VB.Net 2005 - DoCmd.OpenForm

    Guess you can tell I'm from NC, USA. Hope to have more questions I can bug you with, which I'm sure I will! Thanks again.
  13. surfside1

    Info on converting Access 2003 Modules to VB.Net 2005 - DoCmd.OpenForm

    Sorry, my email was out of sync with your other replies, I'll study them, thanks again.
  14. surfside1

    Info on converting Access 2003 Modules to VB.Net 2005 - DoCmd.OpenForm

    I can tell you have a good sense of humor - and I "do" need that right now! What I think confuses me most is that I'm not sure what words I need to change to fit my project's objects, such as form2? Does that need to be he name of my form such as My.Forms.frmAuctionListings? And what would...
  15. surfside1

    Info on converting Access 2003 Modules to VB.Net 2005 - DoCmd.OpenForm

    I posted the following thread on the VB.Net forum and thought maybe you Access folks could help me. thread796-1404905 Many thanks!
  16. surfside1

    Info on converting Access 2003 Modules to VB.Net 2005 - DoCmd.OpenForm

    I'm new to VB.NET Express 2005 and things as simple as I'd use in Access such as: DoCmd.OpenForm "frm_Listings", acNormal, "", "", acAdd, acNormal I can't figure out what to use in VB. Does anyone know where documentation resides that I can find to help through the transition? I can't even...
  17. surfside1

    Checking for open forlm - coding problem

    Actually I open the main form through the Project properties "Startup Form" Later, I will change that to the Auction Listings form, but for now I'm opening the template form that contains the menu that the other forms inherit. I'm simply doing that to make sure the template operates correctly...
  18. surfside1

    Checking for open forlm - coding problem

    Only from the menu. What I was testing is opening the main form, then clicking on the "Auction Listings menu button" which opens that form, then clicking on another menu button "Edit form" which opens that form(but doesn't close the Auction Listings form) then clicking on the "Auction Listings...
  19. surfside1

    Checking for open forlm - coding problem

    I commented the lines below and received “Form that is already visible cnnot be displayed as a modal dialog box. Set the form’s visible property to false before calling showDialog and it highlights the ShowDialog statement. Private Sub toolstripAuctionListings_Click(ByVal sender As...

Part and Inventory Search

Back
Top