VB.net CLient/Server APP
The client talks to the server fine but all of the code I’ve found said to use the stream to respond back to the client from the server. However the client dies when it tries to read a line back… What’s wrong? How can I make the response happen and what did I do wrong [...]
Answer Question
| August 21, 2008 4:47 PM
Client-server, VB.NET
The client talks to the server fine but all of the code I’ve found said to use the stream to respond back to the client from the server. However the client dies when it tries to read a line back… What’s wrong? How can I make the response happen and what did I do wrong [...]
crosstab query
how to make crosstab in my sql?
Answer Question
| August 19, 2008 2:42 AM
CrossTab Query, SQL, VB.NET, VB.NET 2005, Visual Basic .NET, Visual Basic 2005
how to make crosstab in my sql?
Regarding Click Once In VB.NET 2005 Express Edition
Hi all, Iam Begginer Vb.Net 2005 And I Just Want To Know Merits & Demerits of The Click Once Concept. Can Anybody Help Me Regarding This. Regards
Answer Question
| August 22, 2008 12:40 PM
VB.NET, VB.NET 2005, VB.NET 2005 Express Edition
Hi all, Iam Begginer Vb.Net 2005 And I Just Want To Know Merits & Demerits of The Click Once Concept. Can Anybody Help Me Regarding This. Regards
Which Is More Optimized
Which Conditional Statemnt Is More Efficient in VB.NET 2005 IF ELSE OR Switch Case ?
Answer Question
| August 8, 2008 11:30 AM
CASE statement, IF ELSE statement, VB.NET, Visual Basic 2005
Which Conditional Statemnt Is More Efficient in VB.NET 2005 IF ELSE OR Switch Case ?
sql
is it possible in vb.net to read two database(access) with one sql? like select * from databaseA!tableA union select * from databaseB!tableB what connection type to use ty in advance
Answer Question
| August 6, 2008 5:08 AM
Database programming, SQL, VB.NET, Visual Basic .NET
is it possible in vb.net to read two database(access) with one sql? like select * from databaseA!tableA union select * from databaseB!tableB what connection type to use ty in advance
convert number to word
i want to convert number to word as 120 to ‘one hundred and twenty’ by using vb.net.please any one can give me a real solution?
Answer Question
| August 1, 2008 5:21 PM
VB.NET, VB.NET 2005
i want to convert number to word as 120 to ‘one hundred and twenty’ by using vb.net.please any one can give me a real solution?
send data from sqlserver to ms access
i am a biginner to vb.net and i want to transfer my data in sqlserver to ms access.please anyone can help me to this regard .
Answer Question
| August 1, 2008 1:48 PM
Data transfer, Microsoft Access, SQL Server migration, VB.NET
i am a biginner to vb.net and i want to transfer my data in sqlserver to ms access.please anyone can help me to this regard .
Problem in accessing CD Drives (VB/VB.Net 2.0).
Hi everyone, I’m focusing on a real tough problem that I hav been trying to solve since a long time in VB/VB.Net (2.0). I’m trying to detect the Open or close status of the Cd drive door. I’m using mcisendstring function to query the status, mcisendstring(“Status CDAudio Mode”). This function returns the following values accordingly: [...]
Answer Question
| July 29, 2008 3:44 PM
CD drives, VB, VB.NET
Hi everyone, I’m focusing on a real tough problem that I hav been trying to solve since a long time in VB/VB.Net (2.0). I’m trying to detect the Open or close status of the Cd drive door. I’m using mcisendstring function to query the status, mcisendstring(“Status CDAudio Mode”). This function returns the following values accordingly: [...]
how do i save changes done in check boxes at runtime?
I have bound check boxes on list check box.now i want to save changes don in check boxes run time in vb.net?
Answer Question
| July 24, 2008 11:21 AM
CheckBox, CheckBoxList, VB.NET, Visual Basic, Visual Basic .NET
I have bound check boxes on list check box.now i want to save changes don in check boxes run time in vb.net?
Syntex for storing combobox & redio button in oracle using VB.NET
How can i save combo box value & redio button in database using VB.NET form. For example as text value we write TEXTBOX1.TEXT????
Answer Question
| July 18, 2008 11:52 AM
ComboBox, Oracle database design, Oracle development, VB.NET
How can i save combo box value & redio button in database using VB.NET form. For example as text value we write TEXTBOX1.TEXT????
VB.NET code ideas on a SQL Server
What VB.NET code would I use to populate a ComboBox with all SQL Server names and IDs in a network? Also, what VB.NET code would I use to backup my SQL database using parameters?
Answer Question
| July 17, 2008 4:50 PM
Code, ComboBox, SQL Database, VB.NET
What VB.NET code would I use to populate a ComboBox with all SQL Server names and IDs in a network? Also, what VB.NET code would I use to backup my SQL database using parameters?
VB.net download once per month
I currently have a label that displays the current month as an int i.e July = 7. I have a database with a username primary key and field 1 – 12 for each month. Each field either has a 0 or 1. I can use a detailsview to with a datasource to view all of [...]
Answer Question
| July 7, 2008 6:32 AM
Database, detailsview.findcontrols(), VB.NET, VB.NET 2005, Visual Basic .NET
I currently have a label that displays the current month as an int i.e July = 7. I have a database with a username primary key and field 1 – 12 for each month. Each field either has a 0 or 1. I can use a detailsview to with a datasource to view all of [...]
Intercept the Paste command in VB.NET
I wrote a function that allows only numbers to be entered into the field, which is accessed through the KeyDown event. It runs as follows: Public Sub NumbersOnly(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) If (Asc(e.KeyChar) < 48 Or Asc(e.KeyChar) > 57) And Asc(e.KeyChar) <> 46 And Asc(e.KeyChar) <> 8 Then e.Handled = True [...]
Answer Question
| July 6, 2008 5:44 PM
Development, VB.NET, Visual Basic .NET
I wrote a function that allows only numbers to be entered into the field, which is accessed through the KeyDown event. It runs as follows: Public Sub NumbersOnly(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) If (Asc(e.KeyChar) < 48 Or Asc(e.KeyChar) > 57) And Asc(e.KeyChar) <> 46 And Asc(e.KeyChar) <> 8 Then e.Handled = True [...]
Unable to Restore Backup in SQL Server 2005
I am unable to RESTORE Backup through code in SQL Server 2005 from VB.Net, even though that code is running fine in SQL Server 2000. The code is: “restore database [” + databasename + “] from disk =’” + Me.lblSource.Text + “‘ with move ‘” & dfile & “‘ to ‘” + Me.lbldatafile.Text + “‘,” [...]
Answer Question
| September 20, 2008 7:35 PM
SQL Server 2000, SQL Server 2005, SQL Server backup, VB.NET
I am unable to RESTORE Backup through code in SQL Server 2005 from VB.Net, even though that code is running fine in SQL Server 2000. The code is: “restore database [” + databasename + “] from disk =’” + Me.lblSource.Text + “‘ with move ‘” & dfile & “‘ to ‘” + Me.lbldatafile.Text + “‘,” [...]
How do I create a web based application in SQL Server?
Is it necessary to know C#, .NET or VB.NET to create a web-based application in Microsoft SQL Server 2005?
Answer Question
| July 1, 2008 9:09 PM
.NET, C#, SQL Server 2005, VB.NET
Is it necessary to know C#, .NET or VB.NET to create a web-based application in Microsoft SQL Server 2005?
How can i display response in a new window
If i using Response.Redirect(Url) method then how can i open this url in new tab or new window ? Can i specify Target=”_blank” attribute in Url of the link ?
Answer Question
| June 24, 2008 3:47 AM
Response.Redirect, VB.NET, Visual Basic, Visual Basic .NET, Web development
If i using Response.Redirect(Url) method then how can i open this url in new tab or new window ? Can i specify Target=”_blank” attribute in Url of the link ?
Using VB.NET to find local subscriptions on SQL Express
I have several different SQL Express databases using pull subscription replication with a SQL Server. Different computers will have different databases to replicate with; some have more than one. Is there a way in VB.NET to find all the local subscriptions on the computer running SQL Express?
Answer Question
| June 13, 2008 6:27 PM
SQL Express, SQL Server, VB.NET
I have several different SQL Express databases using pull subscription replication with a SQL Server. Different computers will have different databases to replicate with; some have more than one. Is there a way in VB.NET to find all the local subscriptions on the computer running SQL Express?
Vb.Net Image List
I am Trying to build a game that uses arrays to select an image from an image list. when i run the game, i get an image in the image box, but it keeps cycling through all three options. the code so far is: Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles [...]
Answer Question
| July 13, 2008 11:53 PM
Arrays (programming), VB.NET
I am Trying to build a game that uses arrays to select an image from an image list. when i run the game, i get an image in the image box, but it keeps cycling through all three options. the code so far is: Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles [...]
external application installer using vb.net
Hi, I’m trying to create a simple application launcher in vb.net i would use at work, I’m a computer tech and i constantly need to install the same package of software on newly deployed workstations (antivirus, works, media player, etc). I’ve tried the following: Shell(“installer path”) and system.diagnostics.process.start(“installer path”) and even process.start(“installer path) Let’s use [...]
Answer Question
| May 29, 2008 4:59 AM
Software Quality, Software Quality Assurance, VB.NET, Visual Basic .NET
Hi, I’m trying to create a simple application launcher in vb.net i would use at work, I’m a computer tech and i constantly need to install the same package of software on newly deployed workstations (antivirus, works, media player, etc). I’ve tried the following: Shell(“installer path”) and system.diagnostics.process.start(“installer path”) and even process.start(“installer path) Let’s use [...]
get images from a directory vb.net
How to get all the images from a directory and a sub directory in vb.net Can I have the code for it in vb.net?
Answer Question
| May 27, 2008 7:19 PM
VB.NET
How to get all the images from a directory and a sub directory in vb.net Can I have the code for it in vb.net?





