Forum: VB.NET Dec 6th, 2008 |
| Replies: 1 Views: 431 Hi,
Not bad for a start but I have attached a full calc. code as a gift. |
Forum: VB.NET Aug 15th, 2008 |
| Replies: 2 Views: 497 Hi,
As Narania said if u know VB6, shiftting to vb.net will not be that hard. You can even upgrade your applications created in VB6 to .net simply. Many of the commands are still the same but some... |
Forum: VB.NET May 1st, 2008 |
| Replies: 2 Views: 1,424 Hi man,
Did you notice that your post doesn't make sence???
Please re-clarify the question or attach your application. |
Forum: VB.NET May 1st, 2008 |
| Replies: 1 Views: 403 Hi,
For this you will need to use a Binding Source which you can navigate like a recordset using: BindingSourceEmp.MoveNext()
for more information you will have to post your code |
Forum: VB.NET Dec 23rd, 2007 |
| Replies: 8 Views: 936 Hi,
You can find some free ebooks over the web, but I don't think that enough. To be a pro in VB you have to test what you are leaning. I always advise to start developing a simple application... |
Forum: VB.NET Dec 13th, 2007 |
| Replies: 2 Views: 1,578 Hi,
If IsNumeric(Me.txtInput.Text) And Me.txtInput.Text > 10 And Me.txtInput.Text < 100 Then
'you action
End If |
Forum: VB.NET Nov 7th, 2007 |
| Replies: 4 Views: 685 Hi,
You mean you want to show the contents of the array one by one with a time phase between them?? |
Forum: VB.NET Oct 4th, 2007 |
| Replies: 1 Views: 3,857 Hi,
Try this:
Private Declare Function ShellExecute Lib "shell32.dll" _
Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal _
lpOperation As String, ByVal lpFile As String, ByVal _
... |
Forum: VB.NET Oct 3rd, 2007 |
| Replies: 4 Views: 2,417 Hi,
ADO.net depends on connectless data retrival that means that all the data tables are retrived into the datasets and stored there (and eventually in the memory). This must be much faster than... |
Forum: VB.NET Oct 3rd, 2007 |
| Replies: 2 Views: 848 Hi,
Am sorry to inform you that you can't get the image name or path after being embedded in the picture box. In order to over come this place the file name in the tag of each picturebox. And then... |
Forum: VB.NET Oct 3rd, 2007 |
| Replies: 3 Views: 2,948 Hi,
Check this:
Dim NewTab As New TabPage
Dim NewTextBox As New TextBox
Me.TabControl1.Controls.Add(NewTab)
NewTab.Controls.Add(NewTextBox) |
Forum: VB.NET Oct 3rd, 2007 |
| Replies: 8 Views: 2,039 Hi,
What is the data type of the Phone number and CallDate in your data bases?? |
Forum: VB.NET Oct 2nd, 2007 |
| Replies: 8 Views: 2,039 Hi,
While it is always recommended to use unique keys for all tables below is the query that shall work in such case:
SELECT Phone2 + CAST(CallDate2 AS varchar) AS Criteria1, *
FROM Table2
... |
Forum: VB.NET Oct 2nd, 2007 |
| Replies: 4 Views: 2,417 Hi,
It must be something in your code please paste the code you are using to retrive data and I hope I will be able to help you. |
Forum: VB.NET Sep 20th, 2007 |
| Replies: 2 Views: 9,114 Hi,
I didn't get it you want to place the function in a module or calling it from there?? |
Forum: VB.NET Sep 12th, 2007 |
| Replies: 2 Views: 2,422 Hi,
Add the below code within your sub where xxx is the name of the button you want to click:
xxx.PerformClick() |
Forum: VB.NET Sep 2nd, 2007 |
| Replies: 2 Views: 2,292 Hi,
Check this sample it may be a little complicated but you can isolate the code you need out of it. |
Forum: VB.NET Aug 28th, 2007 |
| Replies: 3 Views: 3,217 Hi,
While you can make it complicated as a library and run it in the background as a service, there is much simple way. Just develop a visible regular interface in any language and set the... |