Search:

Type: Posts; User: blueye89

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    11
    Views
    1,862

    Re: [RESOLVED] Do While Loop Statement

    I thought to make it clear for me. I can't understand every line that you wrote cause I am not programmer.
    Thank you very much.
    Regads
  2. Replies
    11
    Views
    1,862

    Re: [RESOLVED] Do While Loop Statement

    Hello vbfbryce,
    This is usefull, I just need to clear all code lines that you wrote.
    Thank you so much for this.
    Best regards
    blueye89
  3. Replies
    11
    Views
    1,862

    Re: [RESOLVED] Do While Loop Statement

    First five columns hava fixed values. I am getting from another source and values can't be changed.
    There are too many rows but I used 10 rows for simplicity. When I realize that it works on few...
  4. Replies
    11
    Views
    1,862

    Re: [RESOLVED] Do While Loop Statement

    Hello vbfbryce,
    It is not yet resolved. I don't know who added in topic title "[RESOLVED]"

    I have uploaded workbook that I am trying to create macro.
  5. Replies
    11
    Views
    1,862

    Re: Do While Loop Statement

    Thank you very much.
  6. Replies
    11
    Views
    1,862

    [RESOLVED] Do While Loop Statement

    Hello everyone,
    I started with making an macro and I need help.
    At the bottom of the post is an image which represent what I want to do. I actually want to check value with every next two cells...
  7. Re: How to prevent making duplicated rows in datagridview table

    Thanks to all, I appreciate you helping me.:)
  8. Re: How to prevent making duplicated rows in datagridview table

    Solution:


    For intI As Integer = DataGridView1.Rows.Count - 1 To 0 Step -1
    For intJ As Integer = DataGridView1.Rows.Count - 1 To intI + 1 Step -1
    If...
  9. Re: How to prevent making duplicated rows in datagridview table

    It's not working.


    dataRow.Cells(0).Value = aryTextFile(i)
  10. Re: How to prevent making duplicated rows in datagridview table

    I have solution which removes only one duplicate by single click on button.
    I need to remove it all.



    For intI As Integer = 0 To DataGridView1.Rows.Count - 1
    For intJ As...
  11. Re: How to prevent making duplicated rows in datagridview table

    Hello wes4dbt,

    118157
    Here is a code.




    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Dim Name As New...
  12. Re: How to prevent making duplicated rows in datagridview table

    Textfile consist words separated by ",". For me it's not a problem to split all text by "," and import words into the datagridview. Problem is how to remove duplicates after that. Better solution for...
  13. Re: How to prevent making duplicated rows in datagridview table

    The data that I use to populate dgv is in one text document which I opening using "open file dialog". So, everytime when I click on button "open" and shows path of .txt file(everytime is diferent...
  14. Re: How to prevent making duplicated rows in datagridview table

    I used unbounded mode. I made columns and rows programmatically. When datagridview is populated I need to remove all duplicated rows. All rows need to be unique.

    I tried to make with this code:
    ...
  15. How to prevent making duplicated rows in datagridview table

    Hello,
    Any idea how to do that?
  16. Replies
    1
    Views
    5,699

    Realtime showing percentage in progressbar

    Hello friends, I am trying to resolve real time showing of percentage inside a progress bar. All what I want is to showing percentage with constant speed. Problem is in background processes(some...
  17. Replies
    9
    Views
    1,411

    Re: Get value from excel

    Hello friends, thanks for the solutions. Actually I didn't tried to get content of cells as text. I made a custom format so I just use oSheetEI.Cells(row, col).Text as koolsid says. Special thanks to...
  18. Replies
    9
    Views
    1,411

    Re: Get value from excel

    I can write +10 or -10 because I use formating cells. I want to get them as strings,as they are,not as numbers.
  19. Replies
    9
    Views
    1,411

    [RESOLVED] Get value from excel

    Hello friends. I need help to get value from excel but exactly as written in cell (such as +10 or -10). With this code I get value but without sign + or -.

    oSheetEI.Cells(row, col).value

    Thanks...
  20. Replies
    6
    Views
    7,425

    Re: Filter Combobox items

    Yes but I don't know to modify on my case.
    Thanks anyway
    I will try on the some other way.
  21. Replies
    6
    Views
    7,425

    Re: Filter Combobox items

    A problem is similar to this thread where you helped. Now combobox take a function of datagridtable.

    I find code which find specific value and modified to my problem but it only find value, not...
  22. Replies
    6
    Views
    7,425

    Filter Combobox items

    Is there a way to filter combobox items (declared as single) to find which values are greater than an specific given value?
  23. Re: filter all values in datagridview which are greater than given value into textbox

    I resolve this with some modification on second row:
    dv.RowFilter = "Column1 > " & TextBox1.Text & ""


    @dunfiddlin
    Thank you my friend for the help.
    Cheers
  24. Re: filter all values in datagridview which are greater than given value into textbox

    It shows a problem at: dv.RowFilter = "Column1 > Val(TextBox1.Text)"
  25. Re: filter all values in datagridview which are greater than given value into textbox

    Table is filled by data source. I made an access database and just import it into datagrid. And in form it makes code "Me.Table1TableAdapter.Fill(Me.mydatabaseDataSet.Table1)"
    When I start form...
  26. Re: filter all values in datagridview which are greater than given value into textbox

    Thanks for the reply. I hope that this will help you to understand me.
    Example: If given value in textbox is 3:
    Column1
    1
    2
    3
    4
    5

    Filtering...
  27. filter all values in datagridview which are greater than given value into textbox

    Hi there. Can someone help me to resolve this problem because I am tired of searching for solution more than 2 weeks. I need to filter all values in datagridview which are greater than given value...
  28. Replies
    1
    Views
    1,531

    Update database after changes

    Hi , here I am again. My question is how to save changes in my "db.mdb" file after clicking on specific buttons. Example, if I delete some record in vb datagridview,after click on Delete button it...
  29. Re: How to insert data from DatagridView to MS Access Database

    Thank you my friend. I will do it and if I have some questions in future I will be back. Thanks again.
  30. Re: How to insert data from DatagridView to MS Access Database

    Do you have Microsoft Access installed and have you used it to create either an MDB or ACCDB file and added it to your project?
    My answer: I have installed ms access but I have no created ms-access...
  31. Re: How to insert data from DatagridView to MS Access Database

    I want to create the Access data file and distribute it with my application. Periodically I will update that access data trough my application.Clear?
  32. Re: How to insert data from DatagridView to MS Access Database

    In fact, I just need to connect an application which will allow me to update database periodically,and after when I load my application using shortcut, last changes will be loaded.
    Any idea?
  33. Re: How to insert data from DatagridView to MS Access Database

    Thank you very much!:)
  34. Re: How to insert data from DatagridView to MS Access Database

    Yes of course, I want to create an ms-access file that will contains all data from my datagridview. I am trying to find specific words which represent my idea to convert all data from DG to ms-access...
  35. How to insert data from DatagridView to MS Access Database

    Hello my friends, I made some application which fill an DatagridView with some data and I need the easiest way to make an ms access file and import all data from DatagridView in it.After that I will...
  36. How to return and separate values from listbox?

    93109


    Public Class Form1
    '//Add button
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    ListBox1.Items.Add("a=" &...
  37. How to make one column italic in office word table?

    It works with rows:
    .Rows.Item(2).Range.Font.Italic = True
    but with columns doesn't works:
    .Columns.Item(2).Range.Font.Italic = True
  38. sort numbers from lowest to highest in datagrid table

    How to sort numbers from lowest to highest in my datagrid table?
  39. Replies
    3
    Views
    1,049

    Re: Resize columns

    I resolve problem using:
    DataGridView1.Columns(0).Width
  40. Replies
    3
    Views
    1,049

    Resize columns

    How I can resize width of column to the end of the datagridview??
Results 1 to 40 of 49
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width