Yes but I don't know to modify on my case.
Thanks anyway
I will try on the some other way.
Type: Posts; User: blueye89
Yes but I don't know to modify on my case.
Thanks anyway
I will try on the some other way.
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...
Is there a way to filter combobox items (declared as single) to find which values are greater than an specific given value?
I resolve this with some modification on second row:
dv.RowFilter = "Column1 > " & TextBox1.Text & ""
@dunfiddlin
Thank you my friend for the help.
Cheers
It shows a problem at: dv.RowFilter = "Column1 > Val(TextBox1.Text)"
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...
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...
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...
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...
Thank you my friend. I will do it and if I have some questions in future I will be back. Thanks again.
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...
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?
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?
Thank you very much!:)
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...
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...
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=" &...
It works with rows:
.Rows.Item(2).Range.Font.Italic = True
but with columns doesn't works:
.Columns.Item(2).Range.Font.Italic = True
How to sort numbers from lowest to highest in my datagrid table?
I resolve problem using:
DataGridView1.Columns(0).Width
How I can resize width of column to the end of the datagridview??
But I set focus on that application.Probably due to the speed at which the keys are sent. Any other opinion??
Hi everyone.
I have some questions for you.
I am working on my application which save work from another application using sendkeys:
SendKeys.Send("^(s)")
SendKeys.Send("file")...
I trying to sendkeys to another application using my button from my application.
Other application must get focus.How to do that?
CTRL+O or CTRL+C or CTRL+S= It does not matter
Some of...
Public Class Form1
'Button1=RUN button
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
...
I running one application in vb with:
a = Process.Start("C:\Window1.exe")
When it's stared show me a form as on the picture.
How to hit Ctrl+o using vb2010?
That's all.
So,control one...
When I hit ctrl+o its working and show me a dialog what to open,but how to do that using vb(do not hit manually by the keyboard)??
That application has a shortcut for open and it is "Ctrl+O",but how to run with my vb.net application??
I am running an application from my desktop as you see on the picture,and I don't know how to run File Open command on active form without mouse click,only with vb.application?
Hi,I have a question for anyone who knows to resolve.
I making an "sign in" application for checking email address with username and password as input.As output it will show me msgbox with content...