Search:

Type: Posts; User: ikartz

Search: Search took 0.03 seconds.

  1. Replies
    3
    Views
    777

    VS 2010 Re: Combobox (on change) problem

    well I haven't read the documentation I must confess. And that function "SelectionChangeCommitted" was near I could choose it and test it. *feeling kinda stupid right now*

    Thanks for the answer,...
  2. Replies
    3
    Views
    777

    VS 2010 Combobox (on change) problem

    I have some combo boxes which displays one column of one database, and I want to trigger a query to it every time the CBox is changed, but as soon as the dialog with the cboxes opens, triggers...
  3. Replies
    4
    Views
    1,777

    VS 2010 Re: On Tab Control Select

    thank you =D
  4. Replies
    4
    Views
    1,777

    VS 2010 Re: On Tab Control Select

    thanks for the reply, how can I execute different lines due to the tab choosed ?
    I tried to use CASE 'Name of Tab1' but it changes it to LCASE
  5. Replies
    4
    Views
    1,777

    VS 2010 On Tab Control Select

    How can I execute some piece of code when I change the tab of one 'Tab Control' ?
  6. Replies
    3
    Views
    750

    VS 2010 Re: DataGridView omits zeros

    Thanks for answering,

    I wrote this
    DGV.Columns(4).DefaultCellStyle.Format = "0.00\%"
    and I could get the '0.23' appearing but it still omits the '23.00'


    I just fill the DGV like this
    ...
  7. Replies
    3
    Views
    750

    VS 2010 DataGridView omits zeros

    Its normal to have the DGV ignoring zeros ?
    If the value of the string is: '23,00' in the DGV it will be showed as '23'
    but if it is '23,23' it will appear as '23,23' is that normal ?
  8. VS 2010 Re: Trouble with creating connection to mysql db

    that helped, thanks ^^
  9. Replies
    5
    Views
    3,259

    VS 2010 Re: PrintForm prints the form with 'blur' labels

    thanks for the time wasted, I appreciate it =)
  10. VS 2010 Trouble with creating connection to mysql db

    I want to add a new Data Source (so I can use it with Crystal Reports) but using mysql, I did this before.

    In the left side under: 'Data Sources' and then choosed 'Add New DataSource'
    Then I...
  11. Replies
    5
    Views
    3,259

    VS 2010 Re: PrintForm prints the form with 'blur' labels

    thanks for the answer, I read in another post around here that PrintForm weren't the best way to print something.

    Can you recommend me a good tutorial/example of a piece of a code where we can...
  12. Replies
    5
    Views
    3,259

    VS 2010 PrintForm prints the form with 'blur' labels

    I'm using PrintForm which comes with PowerPack to print a form with a couple of Labels into it.
    But the letters appear a little blur and not clear at all, bad quality, I tried by increasing the size...
  13. Replies
    0
    Views
    407

    VS 2010 Reports + Visual Basic

    I'm experiencing a problem while creating a Report. I would like to ask if someone knows any way of doing the Report easily like creating the report with some program and then import it to VB or...
  14. Thread: Chat Program

    by ikartz
    Replies
    0
    Views
    352

    VS 2010 Chat Program

    I wanted to do a little app like a chat app, which stores messages in the server and then the clients read them.

    But I'm wondering what's the best plan to do it since if its with SQL I need to...
  15. VS 2010 Re: Multiple forms (with IF condition)

    Thanks for the help of both of you

    The examples of Jay saved me
    And I appreciate much your explanation it makes all clear in my mind now, before doing this I tried Me.Dispose() in the Form2 and I...
  16. VS 2010 [Resolved] Multiple forms (with IF condition)

    I need to open a form 6 times, I have the following code:

    Principal Form:


    Dim view1 As New view
    Dim view2 As New view
    ..

    Sub Button_Click
  17. Thread: Cloning a row

    by ikartz
    Replies
    2
    Views
    774

    VS 2010 Re: Cloning a row

    thanks for the help =D
  18. Thread: Cloning a row

    by ikartz
    Replies
    2
    Views
    774

    VS 2010 Cloning a row

    I want to make a clone of a selected row in a DataGridView, while searching I saw that a 'Clone' method exists but I can't use it too well I don't know if it is due to have a Binding Source to it....
  19. Replies
    2
    Views
    4,039

    VS 2010 Re: Selecting a Row (DataGridView)

    thanks! I learned something new today "rod index is zero based" hehe.

    EDIT: it worked! =D thanks once again.
  20. Replies
    2
    Views
    4,039

    VS 2010 Selecting a Row (DataGridView)

    I try to select the last row like this:



    Dim lastRow As Integer = DGV.RowCount
    MsgBox(lastRow)
    DGV.Rows(lastRow).Selected = True


    The messagebox returns the correct...
  21. Replies
    11
    Views
    7,427

    VS 2010 Re: Inserting blank row to datagridview

    thank you this will save me time and the code will be better I think.


    I tried to use it but I get an error:


    Dim drNew As DataRowView = DirectCast(DGV.DataSource.AddNew(), DataRowView) <--...
  22. Replies
    11
    Views
    7,427

    VS 2010 Re: Inserting blank row to datagridview

    I have the DataGridView bound like this I think, the rest of the program opens a form with the values of the selected row loaded into textbox's to edit them.



    cnString =...
  23. Replies
    11
    Views
    7,427

    VS 2010 Re: Inserting blank row to datagridview

    thanks for the help, I tried to add the row but when I compile it I receive the following error:


    Rows cannot be programmatically added to the DataGridView's rows collection when the control is...
  24. Replies
    11
    Views
    7,427

    VS 2010 Inserting blank row to datagridview

    I want to add just one line in DataGridView with blank values.

    can someone enlight me please ?
  25. Replies
    0
    Views
    509

    VS 2010 Adding new row/data (DGV + form)

    I have a principal form where I have the DGV with 3 buttons
    -delete which deletes the selected item
    -edit: which opens a form with a couple of textboxs to edit the data
    -new: which creates a new...
  26. Replies
    2
    Views
    1,048

    VS 2010 Re: [Resolved] Opening the same form 2 times

    that works, I just wanted to open it so I can view data over there without being possible to edit it. Thanks =D
  27. Replies
    2
    Views
    1,048

    VS 2010 [Resolved] Opening the same form 2 times

    Just as the title says there is a way to have the same 'Windows Form' to open two times ?
  28. Replies
    2
    Views
    4,059

    VS 2010 Re: How to bind TextBox + DataGridView ?

    that worked! many thanks =D


    EDIT: now if I enter one of those textbox in blank (without nothing on it) it gives me the following error:
    http://imageshack.us/photo/my-images/192/errorqq.png

    I...
  29. Replies
    2
    Views
    4,059

    VS 2010 How to bind TextBox + DataGridView ?

    I have a DataGridView where we select a line and a new form appears so I can change the data.

    eg:


    edit.txtQtd1.Text = DGV.CurrentRow.Cells(6).Value.ToString
    edit.txtProd1.Text =...
  30. Replies
    6
    Views
    17,839

    Re: DataGridView Entire Row Selection

    ok =)
    thanks and sorry about that =)
  31. Replies
    6
    Views
    17,839

    Re: DataGridView Entire Row Selection

    believe me, I changed it to 'FullRowSelection' but I could only select cell at cell
    that's why I asked for help here =)
  32. Replies
    6
    Views
    17,839

    Re: DataGridView Entire Row Selection

    I tried but nothing happened, but thanks anyway =D

    I were searching in the forum and I found this which solved my problem =D

    Thanks.
  33. Replies
    6
    Views
    17,839

    DataGridView Entire Row Selection

    Hi, I want to know if it is possible to click in one cell, and the entire row be selected.

    Thanks =D
Results 1 to 33 of 34



Click Here to Expand Forum to Full Width