Search results for query: *

  1. D

    Question Question concerning DataSet Relationships

    Thank you :beer:
  2. D

    Question Question concerning DataSet Relationships

    Hi jmcilhinney - Thank you for the details. I will surely start doing what you mentioned. As for the relationships - we call the loans power of attorneys. these are not standard loans like you see in a bank. This office is small, but can be busy. The database diagram above is a an example...
  3. D

    Question Question concerning DataSet Relationships

    Hello Everyone. I have a question concerning my database relations and don't know if I am doing it correctly. I am hoping that someone will be able look at it and let me know if anything looks wrong. About my program (small type of loan office) - we have clients that take out a certain type...
  4. D

    Question Local SDF Database Max Size

    Hi Everyone! I have a quick question about an .sdf local database in my windows application. I have a lot of columns in 2 tables and when I add another column the Data Connections and Data Source hangs up and crashes VS 2010. When I use the database without adding any more columns it works...
  5. D

    Question Panel Scroll Bar enbale button when at bottom

    Hi Forum! I have been looking all over the place and kinda stuck on a small issue. I have a label in a panel and the label is very long so there are scroll bars on the panel. How can I make it where if the user scrolls all the way to the bottom then a button will be enabled? Currently, I...
  6. D

    Question Save control locations in FlowlayoutPanel

    Hi Ian - Thank you for the clarification reply. I do have a question though.... In your code: Dim myControl As New TextBox With {.Text = stringElements(0)} it looks like it is referencing a textbox. If I have around 50-60 panels (with a textbox and label on each panel) in the same FLP...
  7. D

    Question Save control locations in FlowlayoutPanel

    Thanks for the Reply. Trying to figure this out - it appears I cannot use the System.Collections.SpecializedStrings.Collection settings? It appears, so far, that I have to use SetChildIndex / GetChildIndex for every control in my flowlayoutpanel? The reason why I ask - is that I will have...
  8. D

    Question Save control locations in FlowlayoutPanel

    Hi Everyone! I have a flowlayoutpanel and the controls inside can be dragged and dropped. They are panels with textbox and label on each panel (roughly 40 panels or so) The problem is that when the user closes the form (or application) I need the controls to remain in the same position as they...
  9. D

    Question How to edit SQL Local Database in Visual Studio

    Thank you once again jmcilhinney.
  10. D

    Question How to edit SQL Local Database in Visual Studio

    Thank you jmchilhinney. SQL Server CE database is already in Visual Studio correct? This is the "local database" that I choose in Add - New, correct.
  11. D

    Question How to edit SQL Local Database in Visual Studio

    Hi All - I have a quick question....... I created a Windows Form Application in VB.NET (Visual Studio 2010 Ultimate) - I added a new item "local database" and when I added the columns and saved a table - I went back into the table schema and I see that I cannot change a column after saving the...
  12. D

    Adding Textboxes to another form at runtime

    Thank you for the reply... I used the below code and it appears to work, however, if you think it there is "cleaner" code please let me know. I first added a check box to another form. I created a settings in the application named ckFirstName. I binded the check box to the settings (boolean)...
  13. D

    Adding Textboxes to another form at runtime

    Thank you for the reply..... So (it wont be the exact code) you are saying something similar to: If My.Settings.Checkbox1 = True Then UserControlFirstName.Visible = True End If And do this for all the User Controls?
  14. D

    Adding Textboxes to another form at runtime

    Hi Everyone - I have been creating a Windows Form Application (VB.NET) for a while now (hobby only) and thought of an idea that I would like to try to implement, however, I cannot find any info on the web regarding how I want to see if I can set this up..... I have a database (3 tables) that...
  15. D

    Add new record in Database using details

    Thanks - I don't see anywhere to change it.... I didn't select a prefix when I created the thread.... I now know and will do it next time.
  16. D

    Add new record in Database using details

    Thank you to both Doug and jmcilhinney.... you guys are the reason why this site is great!. This can be marked resolved.
  17. D

    Add new record in Database using details

    Thank you for the reply... On the pane for data sources - you can drag and drop the table to the form and each text box is linked to the data binding... should I still use the above code or is this only if I drag a text box from the toolbox?
  18. D

    Add new record in Database using details

    I think I may have figured out my own question... Please let me know if this is correct or not. I have to take out the below code: Me.Datagridview1.DataSource = Me.TestBindingSource and only keep: TestBindingSource.AddNew() This added a new record in the primary key so I am assuming...
  19. D

    Add new record in Database using details

    Hi everyone! I have a small visual studio project that i have a database in. Instead of using the binding navigator - I want buttons to add a record / delete a record / update the database. I am good on everything except I am using details (which is all the text boxes) instead of a...
  20. D

    SQL Database in Deployment Package

    Hi Forum! I have a quick and simple question (maybe), but I am not exactly sure of the answer..... I have a SQL database that I created in SQL Management Studio 2012 and I want to add it to my Visual Studio 2010 project... I connected to the database just fine and can add / delete / update...
Back
Top