Search results for query: *

  1. P

    Deploying a Windows application

    I have finish my first VB.NET Windows project with Access DB and it is sitting on a server at c:\housing\ It was published on the same server on a different directory c:\housingdb\ Everything works fine when running the setup file. How do I give each users, an Icon on their desktop, that will...
  2. P

    Dispaly dates on Crystal Report VB.NET 2005

    Somewhat new at CR. I need to display the two dates "Start and End date", selected by the user as parameters, on the Header of my Crystal Report. Thanks for your help, Pierre
  3. P

    bindingsource.filter

    I'm trying to filter by HouseNo "String" and RequestNo "Integer" I've tried all kind of way and nothing work. TypeOfRenoBindingSource.Filter = "HouseNumber like '" + HouseNo + " ' " AND " "RequestNumber = " ' " + RequestNo + " ' " Help please. Thanks, Pierre
  4. P

    Using a Query

    I have created a Query in TableAdapter Query Configuration Wizard. How do I use this query in my program? It works fine when I see the Preview Data. Select Distinct community from Property" Save as CommunityQuery Added CommunityQueryTableAdapter to my Form. I'm hoping to populate a Combobox...
  5. P

    [2005] Losing ToolStrip Navigating Buttons

    I'm using my PK to fetch a record and display it on my form. PropertyBindingSource.Filter = "HouseNumber = '" + housenumber + "'" Everything works fine but my ToolStrip Navigating Button are not activated and I cannot navigate to a record previous or next from the one showing on the screen...
  6. P

    MouseHover over many buttons

    I have a form containing a picturebox representing a map. Within the picture box I have many buttons representing houses. When I do a mouseHover on a button I display info on that house on a pop-up form. My code so far is this: Private Sub button_mouseHover(ByVal sender As Object, ByVal...
  7. P

    Adding new record...

    I am creating a new record on a table of Access DB using VB.Net Express 2005. The PK is the same for all my other 10 tables. I there a way to update my other tables with the newly created key from my Form1. I am not using Datagrid. Only text boxes. Thank you, Pierre
  8. P

    Scrolling on a form using Navigator Buttons

    I have a form in VB Express that contain many TextBoxes from 3 different tables from the same DataSet. When I use the navigator button, only the data from the first table will get displayed. The other TextBoxes stay on the first record of their table. Only my first Table has a BindingNavigator...
  9. P

    Picking index from ListView

    I have a ListView with 5 columns. I want the user to use the mouse to click on any row and have the index of that row save into a variable. Same as can be done with a listbox. I'm trying to avoid the checkbox. Thank you, Roger:confused:
  10. P

    USB Barcode scanner

    [RESOLVED]USB Barcode scanner Everything work fine.....thanks for all your help. Roger;)
  11. P

    USB Barcode scanner

    Barcode scanner The scream woke me up. Otherwise this is getting to be a lot of coding for a simple function. Since the barcode will never be the same length I can't check for the textbox length. All I need is to refresh the whole form as soon as a new scan is done. Right now it write in the...
  12. P

    USB Barcode scanner

    It doesn't look like I have a carriage return after the scan. The textbox get filled with the numbers but nothing else happen. Any other hint about a way to have my program retrieve the data associated with the scanned number, without using the enter button. thank you, Roger
  13. P

    USB Barcode scanner

    I must be mising something. The scanner read the code and write it onto the textbox. Is there something that would let the scanner work like a (Private Sub Button_Click). I want to be able to keep the value scanned into a variable and play with it afterword. Thank you, Roger
  14. P

    USB Barcode scanner

    [Resolved] USB Barcode scanner I'm using an USB scanner to read a barcode into a textbox. I want to read the database after the scan is complete without having to use a button. I've been using a TextChanged event on my form but it get going before the scanner has time to put the whole number...
Back
Top