Search results for query: *

  1. R

    Form Refresh Issue

    Hello, I am having trouble with a refresh on my main form. When I put a stop in my main form, it appears that my search variables are being sent correctly by the Search form's Button1_Click, but the main form is not being refreshed. Help appreciated. Here is my code so far: Public Class Menu...
  2. R

    DataGrid Question - Separate Dataset

    Hi, my windows form has a tab control. The code below to search for a person by name is working great. However, Im not sure how to do the next part of my form. I need another tab that just has a data grid view. The grid will be sourced from a different table than what I have in my code below...
  3. R

    Text Box Formatting

    Hi, I have text boxes on a form that read data from a MS access database. Most of the money and percent fields are currently set to double in the database and the date fields are returned with a full date/time format. I want to format the money fields like 1,253.00 the date fields like...
  4. R

    Expand Record Search Capabilities

    Hi, I need to expand the search capabilities of my app. Right now, I'm using an input box to collect name search criteria. But now, I need to be able to search on Name1, Name2 and customer number. Should I use a modal form instead in order to have more control or can I still use an input box...
  5. R

    Search Code Not Working

    Hi, I have been using a code example I found to search the access db and populate 3 text boxes on my form, but it does not appear to be working correctly. This code is returning the wrong record Im searching on. Not sure why. the item mappings are good with the text boxes, as they appear to be...
  6. R

    Connection String Problem

    Hi, I am getting an unhandled exception on my connection string line below when running. Not sure what the issue is, but I get the following message when running from VS 2010 Pro: Format of the initialization string does not conform to specification starting at index 33. Code: Private Sub...
  7. R

    Customer Form with Lookup and 3 Tabs

    Hi Forum, I have a windows form with 3 tabs on a tab control and a text box sitting outside the tab control section. I need each tab to have text boxes with different info pulled about the customer in an Access database. So each tab will use a different query about the customer. Sitting outside...
  8. R

    Trouble with Simple Login Form

    Hi Im creating a simple login form in VS 2010 with MS Access, but getting errors: Reference to a non-shared member requires an object reference. How do I correct this and maybe avoid in the future? Code: Imports WindowsApplication1.DTdatasetTableAdapters Public Class Form1 Private Sub...
  9. R

    Read Only Rows in Data Grid

    Hi, I am building a Windows Forms application with VS Pro 2010. I will be using the stock data grid control to show customer transaction history which includes several rows for interest and several rows for payments. My client has a requirement to edit the amount field in a data grid if it is...
  10. R

    Question Windows Application Deployment Question

    Hello, I have a client that has a custom Windows database application installed on a server on the LAN. 3 people in the office use the application by clicking a shortcut icon on their desktops. The icon points to the .EXE on the server and they don’t have a copy of the application on their...
  11. R

    Question Win Forms Database App Question

    Hello, I’m building a Windows Forms application with VS 2010 Professional for a small office with 3 users. I will be using a SQL compact database in my VS solution. Ideally, we would like to deploy the exe on the server and have the users launch the application from the server network share...
Back
Top