Forum: VB.NET 1 Day Ago |
| Replies: 1 Views: 100 Hello,
I am sure this can help you
http://msdn.microsoft.com/en-us/library/fk49wtc1.aspx
Cheers |
Forum: VB.NET 1 Day Ago |
| Replies: 2 Views: 97 Hello,
It seems to me you need to define "event" in your first form and use
AddHandler firstForm.<EventName>, AddressOf secondForm.<TabSelectProsedure>"
You have to run RaiseEvent <EventName>... |
Forum: VB.NET 19 Days Ago |
| Replies: 4 Views: 490 Hello,
Try this
For Each _control As Control In Me.Controls
If TypeOf (_control) Is TextBox Then
_control.Text = String.Empty
End If
Next |
Forum: VB.NET Feb 13th, 2009 |
| Replies: 3 Views: 651 Hello.
Can you show which do you use connection string with your database? Please ensure your connection string is correct.
Cheers |
Forum: ASP.NET Feb 13th, 2009 |
| Replies: 2 Views: 1,679 Hello.
You can use few different options. But more common is using Global.asax file. You can define variables for session and you WEB-application.
Cheers |
Forum: VB.NET Jan 12th, 2009 |
| Replies: 8 Views: 555 Hello.
Have you got a reference for this library?
Thanks |
Forum: VB.NET Jan 11th, 2009 |
| Replies: 8 Views: 555 Hello.
You need to install MySql and ODBC driver and use it.
Good luck |
Forum: VB.NET Dec 7th, 2008 |
| Replies: 6 Views: 1,074 Of cause the using " " as separator is really bad idea.
You need to use CVS or XML for your task...
I have seen great item in this forum about working with XML for very similar task. Try it - it's... |
Forum: VB.NET Dec 6th, 2008 |
| Replies: 6 Views: 1,074 Hello.
I did not understand Have you got table (your employee datatable)?
You must to take data to dataset from database.
For example you have got table in the dataset. The name of this table is... |
Forum: VB.NET Dec 5th, 2008 |
| Replies: 6 Views: 1,074 Hope this code can help you.
Dim _streamWriter As System.IO.StreamWriter
Dim _fileName As String = "fileName.txt"
If _table IsNot Nothing AndAlso _table.Rows.Count >... |
Forum: VB.NET Nov 30th, 2008 |
| Replies: 2 Views: 1,266 Hi.
Can you explain to me one more time. Do you need to connect to MS SQL 2005 database or Access file?
Cheers |
Forum: VB.NET Nov 30th, 2008 |
| Replies: 4 Views: 687 Hi.
You can try this method. "FileUpload1" is server-control.
Good luck
Protected Sub cmdOK_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles cmdOK.Click
Dim _fileName... |
Forum: VB.NET Nov 29th, 2008 |
| Replies: 4 Views: 687 Hi.
http://www.daniweb.com/forums/thread159832.html
Have a look Teme64 message. It helps you
Cheers |
Forum: VB.NET Nov 29th, 2008 |
| Replies: 2 Views: 538 Hi.
May be this code can help you.
Cheers
Dim _table As New DataTable()
Dim _connection As New SqlConnection(mConnectionString)
Dim _commandText As String = "SELECT ID FROM... |
Forum: VB.NET Nov 28th, 2008 |
| Replies: 6 Views: 52,144 Hi,
Maybe this code can help you.
for each _row as DataRow in mySet.Tables("ALC_SECURITY_PERMISSION").Rows
msgbox( _row.Item("PERMISSION_BUTTON_ID").ToString())
Next |
Forum: VB.NET Nov 28th, 2008 |
| Replies: 4 Views: 5,584 dim _rows() as DataRow = mDataSet.Tables(TableName).Select("CardNumber = " & cardNumber)
if _rows.Lenght > 0 Then
.....
else
....
end if
I Agree. It is very strange to check duplicate... |