Code in Visual Basic
Code: Function SearchDesigner(ByVal strString As String) As String ‘Dim errMsg As String Dim i As Integer Dim strstrString As String = strString.ToLower If Len(strString) = 0 Then Return “” For i = UBound(arDesigner) – 1 To 0 Step -1 Try If strstrString Like “*” & arDesigner(i, 0) & “*” Then arDesignerCounter(i) += 1 Return arDesigner(i, [...]
Answer Question
| November 6, 2012 7:11 PM
Visual Basic 2005, Visual Basic array
Code: Function SearchDesigner(ByVal strString As String) As String ‘Dim errMsg As String Dim i As Integer Dim strstrString As String = strString.ToLower If Len(strString) = 0 Then Return “” For i = UBound(arDesigner) – 1 To 0 Step -1 Try If strstrString Like “*” & arDesigner(i, 0) & “*” Then arDesignerCounter(i) += 1 Return arDesigner(i, [...]
MaskedTextBox in DataGridView
How to do add MaskedTextBox into column of DaTaGridView??
Answer Question
| June 24, 2011 9:40 AM
DataGridView, TextBox, Visual Basic, Visual Basic 2005
How to do add MaskedTextBox into column of DaTaGridView??
How to retrieve, add and update data from SQL Server 2005 manually using VB.NET 2005?
How to retrieve, add and update data from SQL Server 2005 manually using VB.NET 2005?
Answer Question
| January 21, 2012 6:03 PM
SQL Server 2005, VB.NET, VB.NET 2005, Visual Basic, Visual Basic 2005
How to retrieve, add and update data from SQL Server 2005 manually using VB.NET 2005?
How to develop a VB application for any computer?
I am very new to this and want to know if I develop a database application using Visual Basic 2005, can my application be loaded onto any computer and used or will the user have to have VB 2005 or some particular database software installed on their computer to use it?
Answer Question
| June 3, 2011 7:12 PM
VB, VB 2005, Visual Basic, Visual Basic 2005, Visual Basic developers
I am very new to this and want to know if I develop a database application using Visual Basic 2005, can my application be loaded onto any computer and used or will the user have to have VB 2005 or some particular database software installed on their computer to use it?
Avoid duplicate entry in database through Visual Basic 2005
I have made a program in VB 2005 with SQL2005 as back end. In the data base there are three fields which are unique id of a person. I want to display “Already Exist” message box when i enter an already existing id. matching all three fields and not allow duplicate entry.
Answer Question
| September 20, 2010 10:29 PM
Software Management, SQL 2005, SQL Server 2005, VB 2005, Visual Basic, Visual Basic 2005
I have made a program in VB 2005 with SQL2005 as back end. In the data base there are three fields which are unique id of a person. I want to display “Already Exist” message box when i enter an already existing id. matching all three fields and not allow duplicate entry.
Crystal Report in vb 2005
how can i manage 20 column on crystal report ?
Answer Question
| January 23, 2010 4:59 PM
Visual Basic .NET, Visual Basic 2005
how can i manage 20 column on crystal report ?
Biometric system
how can i create a biometric system using vb 2005 with printing process and updating date and non redundant data, entering
Answer Question
| April 13, 2009 1:15 AM
Authentication, Biometric authentication, Biometrics, Identity management, Visual Basic, Visual Basic 2005
how can i create a biometric system using vb 2005 with printing process and updating date and non redundant data, entering
How to programmatically open directories in VB.NET 2005
what code should i write to access the files in a folder that i have stored somewhere such as desktop or c drive in my pc by clicking on a button in vb.net
Answer Question
| April 14, 2009 10:22 AM
OpenFileDialog, VB.NET, VB.NET 2005, VB.NET dialog windows, Visual Basic .NET, Visual Basic 2005
what code should i write to access the files in a folder that i have stored somewhere such as desktop or c drive in my pc by clicking on a button in vb.net
How to retrieve, add and update data from SQL Server 2005 manually using VB.NET 2005?
Hey guys!!! I’m quite new to VB.NET 2005. I need to know how to add, update and retrieve data manually using VB.NET 2005. In the software which I’m trying to implement, data is entered in text boxes and then they are updated/added into an SQL table. When retrieving the data, for example: A student is [...]
Answer Question
| March 9, 2009 11:01 AM
Data Junction, Extract Transform Load, INSERT statement, SELECT statement, SQL Server 2005, SQL Server connectivity, VB.NET 2005, Visual Basic .NET, Visual Basic 2005
Hey guys!!! I’m quite new to VB.NET 2005. I need to know how to add, update and retrieve data manually using VB.NET 2005. In the software which I’m trying to implement, data is entered in text boxes and then they are updated/added into an SQL table. When retrieving the data, for example: A student is [...]
VB.NET code to search if a record already exists or not
Hi! I need a fresher..I want a VB.net code to search record from SQL database table by using two fields of table as a condition i.e client name and client code before saving any new record and if record already exist in table it give me message for that. I’m sending you the code. Please [...]
Answer Question
| April 19, 2013 9:49 AM
Database programming, Search string, SQL Database, VB .NET, VB.NET 2005, Visual Basic .NET, Visual Basic 2005
Hi! I need a fresher..I want a VB.net code to search record from SQL database table by using two fields of table as a condition i.e client name and client code before saving any new record and if record already exist in table it give me message for that. I’m sending you the code. Please [...]
Connecting to Oracle with Visual Basic 2005?
what are “oracle” version to connect “visual basic 2008″,”visual basic 2005″ and “visual basic 6.0″ ? whether it’s possible to connect “oracle9i” and “visual basic 2005″ ? please solve my Q……….
Answer Question
| March 13, 2012 10:20 AM
Database connectivity, Oracle connectivity, Visual Basic 2005, Visual Basic 2008, Visual Basic 6
what are “oracle” version to connect “visual basic 2008″,”visual basic 2005″ and “visual basic 6.0″ ? whether it’s possible to connect “oracle9i” and “visual basic 2005″ ? please solve my Q……….
How to output a text file and separate the data into different fields using VB 2005
i am new at this. This is an example of the data (in notepad) it looks like this.. 1,ABC,12/12/2008 2,DEF,13/12/2008 3,GHI,14/12/2008 4,JKL,15/12/2008 i would like to read only the first line and have each field dim as varchar. The output should be in this form: Field 1 = 1 Field 2 = ABC Field 3 [...]
Answer Question
| December 14, 2008 9:33 AM
Comma-delimited, String manipulation, Text manipulation, VB, VB 2005, Visual Basic, Visual Basic 2005
i am new at this. This is an example of the data (in notepad) it looks like this.. 1,ABC,12/12/2008 2,DEF,13/12/2008 3,GHI,14/12/2008 4,JKL,15/12/2008 i would like to read only the first line and have each field dim as varchar. The output should be in this form: Field 1 = 1 Field 2 = ABC Field 3 [...]
How to read fingerprints in VB.NET 2005?
Hi, I have to develop a project for attendance in vb.net2005.in this employ will “In” and “Out” with their finger identification.How can we read the finger in vb.net2005 or any body have a related code then send me. Thanks in Advance.
Answer Question
| December 1, 2008 6:51 AM
Authentication, Biometric authentication, Biometrics, Finger scans, Fingerprint scanning, Identity management, VB.NET, Visual Basic, Visual Basic .NET, Visual Basic 2005
Hi, I have to develop a project for attendance in vb.net2005.in this employ will “In” and “Out” with their finger identification.How can we read the finger in vb.net2005 or any body have a related code then send me. Thanks in Advance.
Sending email to different domain users, using VB.NET web application version 2.0
how to send mail different domain users, using vb.net webappliction vertion 2.0 and smtp server
Answer Question
| October 30, 2008 7:29 AM
ASP.NET, ASP.NET Web applications, SMTP .NET Component, VB.NET 2005, Visual Basic .NET, Visual Basic 2005, Web applications
how to send mail different domain users, using vb.net webappliction vertion 2.0 and smtp server
Component required for VB.NET 2005
the data loading speed at user pc is much slower than my own pc with vs 2005 install. What component file should the end user have so that the application can run as smooth as those pc with vs 2005 install
Answer Question
| October 24, 2008 5:53 AM
VB.NET, VB.NET 2005, Visual Basic, Visual Basic .NET, Visual Basic 2005, Visual Studio 2005, VS 2005
the data loading speed at user pc is much slower than my own pc with vs 2005 install. What component file should the end user have so that the application can run as smooth as those pc with vs 2005 install
Text handling in Visual Basic
how can i pick a data from a file
Answer Question
| October 14, 2008 9:34 AM
Data Extraction, VB.NET, VB.NET 2005, Visual Basic, Visual Basic 2005
how can i pick a data from a file
VB 2005 Debug Page
My Debug pages does not show Configuration or Start Action options. It only show Start Options. How do I correct this?
Answer Question
| October 9, 2008 4:33 AM
Debugging, Start Action, VB 2005, Visual Basic, Visual Basic 2005
My Debug pages does not show Configuration or Start Action options. It only show Start Options. How do I correct this?
How to connect Access database to a Visual Studio 2005?
i use the following code to connect and i created DSN but its not getting connected… whats my fault can anyone help me?? Dim X As ADODB.Connection Dim RS As ADODB.Recordset Dim RS1 As ADODB.Recordset i am getting underlined error in adodb.connection, adodb.recordset i think there is some error in the DSN creation. so anyone [...]
Answer Question
| June 30, 2011 6:38 AM
ADO, ADODB DSN, Database connectivity, DataSource, DSN, Microsoft Access, VB 2005, Visual Basic, Visual Basic 2005
i use the following code to connect and i created DSN but its not getting connected… whats my fault can anyone help me?? Dim X As ADODB.Connection Dim RS As ADODB.Recordset Dim RS1 As ADODB.Recordset i am getting underlined error in adodb.connection, adodb.recordset i think there is some error in the DSN creation. so anyone [...]
Read XML in Visual basic 2005
I am trying to loop through one node in a XML file form Visual Basic 2005. Can any one help? <?xml version=”1.0″ encoding=”utf-8″ ?> <users> <user>Tom</user> <user>John</user> <user>Mary</user> </users>
Answer Question
| September 30, 2008 12:00 AM
Visual Basic 2005, XML
I am trying to loop through one node in a XML file form Visual Basic 2005. Can any one help? <?xml version=”1.0″ encoding=”utf-8″ ?> <users> <user>Tom</user> <user>John</user> <user>Mary</user> </users>
Should we use Web services to develop this integrated application?
We are developing an integrated application that will incorporate excel application, access databases and pda applications using visual basic 2005. Problem is whether to use web services to develop the project. This request for help was originally submitted to the Research Assistant on WhatIs.com.
Answer Question
| March 26, 2010 4:14 PM
Access Database, Microsoft Excel, PDAs, Research Assistant, SOA and Web services, Visual Basic, Visual Basic 2005, Web services
We are developing an integrated application that will incorporate excel application, access databases and pda applications using visual basic 2005. Problem is whether to use web services to develop the project. This request for help was originally submitted to the Research Assistant on WhatIs.com.





