Search:

Type: Posts; User: viper5646

Page 1 of 3 1 2 3

Search: Search took 0.03 seconds.

  1. VS 2019 Re: Adding a new empty row onto a Datagridview

    I must of had the insert stament incorrect on my first try.
    After multiple atempts I was able to acomplish it with the insert.
  2. VS 2019 Re: Adding a new empty row onto a Datagridview

    Thanks jmcilhinney

    That is what I want, adding a row after a a newly added row.
    But what is happening is the null row is being inserted before the first populated row, even when I keep on adding...
  3. VS 2019 [RESOLVED] Adding a new empty row onto a Datagridview

    Hello all
    I have a form with two datagridviews.
    Grid A is polulated with orders from DB, grib B has an empty table with the same column name as grid A.
    Im currently draging orders from Grid A onto...
  4. VS 2019 Re: Need Help populating a datagridview which contains a DatagrigviewComboboxcolun

    Thank you Very much jmcilhinney
    Its working by changing datapropertyname.
    Also your links have been very educational.:)
  5. VS 2019 Re: Need Help populating a datagridview which contains a DatagrigviewComboboxcolun

    The datapropertyname is Room
    I see what you mean about the database object.
  6. VS 2019 Re: Need Help populating a datagridview which contains a DatagrigviewComboboxcolun

    The datapropertyname is Room
    I see what you mean about the database object.
  7. VS 2019 Re: Need Help populating a datagridview which contains a DatagrigviewComboboxcolun

    I have made the changes you sudgested,and also made changes to the queries, but still have the same order.
    here is the code and both queries.

    Private Sub BuilddgvLI()
    Dim roomTbl =...
  8. VS 2019 Re: Need Help populating a datagridview which contains a DatagrigviewComboboxcolun

    Thanks jmcilhinney
    I read your post and it was very educational.
    I have made the following changes but I still get the same error.

    Private Sub BuilddgvLI()
    Dim dict_LiType As New...
  9. VS 2019 Re: Need Help populating a datagridview which contains a DatagrigviewComboboxcolun

    I created the columns in the designer, and when I binded it appended the the the Columns, it did not just added the rows.
    So my alternative was to add them manualy.
  10. VS 2019 Re: Need Help populating a datagridview which contains a DatagrigviewComboboxcolun

    I created the columns in the designer, and when I binded it appended the the the Columns, it did not just added the rows.
    So my alternative was to add them manualy.
  11. VS 2019 Re: Need Help populating a datagridview which contains a DatagrigviewComboboxcolun

    Thanks jmcilhinney for your reply
    I did change the datasourse to last but the problem still precistes.
  12. VS 2019 [RESOLVED] Need Help populating a datagridview which contains a DatagrigviewComboboxcolun

    Hi all
    I have a Dtagrid with 4 columns, integer, datagridviewcomboboxcolumn,String,Integer.
    I have populated the combobox successfuly.
    The data selected is being save onto a database,now when I...
  13. VS 2019 Re: multiple definitions with identical signatures

    Thank you jmcilhinney
    I will try your sugestions.
  14. VS 2019 Re: multiple definitions with identical signatures

    I found both .designer files in the Solution explorer.
    Deleted the application1.designer from the project, ran the application and it worked fine with no errors.
    Went back to the project properties...
  15. VS 2019 Re: multiple definitions with identical signatures

    I went onto the file explorer and deleted the file, opened VS and when running the project I received an error message that Application1.designer could not be found.
    Unless there is a way to exclude...
  16. VS 2019 Re: multiple definitions with identical signatures

    Thanks jmcilhinney for your reply.
    I went to a back up a day prior the issue, it only had one Application.designer file.
    I compared them both and the are the same.
    The only reason I had renamed...
  17. VS 2019 [RESOLVED] multiple definitions with identical signatures

    Hi All
    My Project has been working fine, until I changed the startup application.
    After changing the startup application I received the followin errors.
    1-Protected Overrides Sub...
  18. Replies
    11
    Views
    1,603

    VS 2017 Re: [RESOLVED] Unable to connect to access DB

    Thanks all for all of your help.
    The ACE is working fine.
    The issue was where the DB was.
    I had the C:\Users\Username\Documents\ Where the user had administrator privileges.
    After I moved the DB...
  19. Replies
    11
    Views
    1,603

    VS 2017 Re: Unable to connect to access DB

    I rebuild the app with any cpu selected and 32bit unchecked.
    The program worked fine with access 2010 Engine x32, but when I tryed with x64 if failed with the same error.
    I also tryed the...
  20. Replies
    11
    Views
    1,603

    VS 2017 Re: Unable to connect to access DB

    thanks All for your Help
    By Targeting X86 and using Access engine x86 it works fine on a test pc (win 7 x64).
    I still have the issue that the user has x64 office products and I'm not able to...
  21. Replies
    11
    Views
    1,603

    VS 2017 [RESOLVED] Unable to connect to access DB

    Hi all
    I currently have an application built using any cpu platform.
    This application works fine in win7 x86.The User has upgraded their pc to windows 10 pro x64 bit with office 365.
    The...
  22. VS 2010 Re: Changing a Cell alignment of a specific cell of a datagridview

    Thanks JMC and WES
    That works.
    Yes I did read your post but as a newbie It's hard sometimes to understand the posts.
    I'm not a programmer nor have had any schooling for programming. I only do...
  23. VS 2010 Re: Changing a Cell alignment of a specific cell of a datagridview

    Thanks jmcilhinney foryou reply.
    After the new row (the total row) has been added I entered this code but it doesn't seam to work.
    dgvMain.Rows(dgvMain.Rows.Count -...
  24. VS 2010 Changing a Cell alignment of a specific cell of a datagridview

    Hi all
    I have a DataGridView with 2 Columns an Order column (text) and a price Column (decimal)
    The Datagrid contains all the orders and price for a certain customer.
    I'm currently adding all the...
  25. Replies
    0
    Views
    480

    Set password With a Dataset

    Hi
    I'm Using VB in Visual studio 2010.
    In my app. I have a Dataset that populates a Rdlc file and it was working good until I Encrypted the Accdb file and now when I run the App I get Not a valid...
  26. Replies
    6
    Views
    693

    VS 2010 Re: Date Time

    Thank you all for your replies.
    My first way of doing was what jmcilhinney mentioned record the date and time when closing into the database. Since I read about time servers I though my way wasn't...
  27. Replies
    6
    Views
    693

    VS 2010 [RESOLVED] Date Time

    Hi all.
    I have a program in vb.net and with it I have an expiration Key.
    As an example I would like this key to be valid for 3 months .
    I don't want to use the users system.date in case the user...
  28. VS 2010 Re: Creating a Access Database with vb code

    thanks kevininstructor for your reply
  29. VS 2010 [RESOLVED] Creating a Access Database with vb code

    Hi all
    The following code creates a database ok.
    The issue I'm having is how to set the ID column to a Primary Key and AutoNumber.
    I have goggled it but haven't found anything that worked.
    Thank...
  30. Replies
    5
    Views
    6,262

    Re: system.IO.IOException

    Thanks jmcilhinney and i00 for your replies.
    There was two calls for the New Attachment(Attacmentfile).
    By deleting the first one and using mail.Attachments.Dispose()
    did the trick .
  31. Replies
    5
    Views
    6,262

    Re: system.IO.IOException

    Thanks jmcilhinney

    I tried mail.Attachments.IDisposable() and I get the following error Error 'IDisposable' is not a member of 'System.Net.Mail.AttachmentCollection'.
    I also tried...
  32. Replies
    5
    Views
    6,262

    [RESOLVED] system.IO.IOException

    Hi all
    In the following Sub I'm sending an Attachment when the email has been sent I would like to delete the attachment but I get an system.IO.IOException Error. the file I'm trying to delete is...
  33. VS 2010 Re: VB Skips The Datareader defination

    Thanks jmcilhinney for your quick reply.
    Sorry if I did not explain my self correctly.
    You solved my problem.
  34. VS 2010 [RESOLVED] VB Skips The Datareader defination

    In the folowing code the DataReader is not assigned
    The Line Dim dr As OleDbDataReader is skiped.
    Can some one help with this situation.
    Thanks


    Dim intInvoice As Integer
    Dim...
  35. VS 2010 Re: passing values to a parameter in a Rdcl file

    Have solved it with the following code.


    Me.Services_QryTableAdapter.Fill(Me.DataSet1.Services_Qry, Me.TextBox1.Text)
    Me.ReportViewer1.LocalReport.EnableExternalImages = True
    ...
  36. VS 2010 [RESOLVED] passing values to a parameter in a Rdcl file

    Hi all

    I have a RDCL Report called Report1.RDCL.
    In this report I put an image box named logo the select image Source is set to EXTERNAL and in the use this image I have ...
  37. Re: Syntax error in UPDATE statement.

    Wow:

    Thanks John for your reply.
    I Should look more carefully next time.
  38. [RESOLVED] Syntax error in UPDATE statement.

    Hi ALL

    I have an UPDATE query which gives me a syntax error in the Cmd. .ExecuteNonQuery() line.
    I Have checked that the connection, table names, and data types are correct.
    I...
  39. VS 2010 Re: How to determine which Child Node of a treeview has been clicked

    thnks jmcilhinney
    I will check the treeview class again until I find what I want.
    In the future I will not Post my question in Quote.
  40. VS 2010 Re: How to determine which Child Node of a treeview has been clicked

    Sorry jmcilhinney if the question is confusing.
    I'm a Nobie.
    What I'm trying to do is know the text of the child node when it is clicked.
    I need this so I can search the DataBase with the name of...
Results 1 to 40 of 90
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width