Forum: VB.NET Apr 16th, 2008 |
| Replies: 3 Views: 1,424 Hi,
I guess, you can use this :
MsgBox("Selected Rows : " & DataGridView1.SelectedRows.Count.ToString())
Regards
Veena |
Forum: VB.NET Aug 25th, 2007 |
| Replies: 3 Views: 2,743 Hi,
I dint get u, U already r appending outside the loop, what u want to do here..?
REgards
Veena |
Forum: VB.NET Aug 23rd, 2007 |
| Replies: 5 Views: 2,185 Hi,
.net dosent have a special Script Control. so u need to use COM script. Check this (http://searchvb.techtarget.com/tip/0,289483,sid8_gci1045916,00.html)
Regards
Veena |
Forum: VB.NET Aug 13th, 2007 |
| Replies: 5 Views: 2,185 Hi.
Check This (http://vb-helper.com/howto_net_use_vsa.html)
Regards
Veena |
Forum: VB.NET Aug 12th, 2007 |
| Replies: 7 Views: 7,557 Hi,
use Val() function check this :
num1 =Val(InputBox("Please enter a number"))
Even if user enters some Text chars, u get its value as zero..
May be u can write check after that to... |
Forum: VB.NET Aug 10th, 2007 |
| Replies: 18 Views: 3,805 Hi,
Just Get the Stored procedure to output these parameters, If the Search is Matched..:
TableName, FieldName, FieldValue, ID of the Matched record.
If user selects some thing from the... |
Forum: VB.NET Aug 8th, 2007 |
| Replies: 2 Views: 2,160 Hi,
Use DataReader which is very fast. Check This Code:
Dim cn As OleDbConnection
Dim cmd As OleDbCommand
Dim dr As OleDbDataReader
cn = New... |
Forum: VB.NET Aug 7th, 2007 |
| Replies: 18 Views: 3,805 Hi,
u can check the Storedprocedure here (http://vyaskn.tripod.com/sql_server_search_and_replace.htm)
It Checks and Replaces, u can modify it to Check and Return back...
Regards
Veena |
Forum: VB.NET Aug 7th, 2007 |
| Replies: 18 Views: 3,805 hi,
In Total how many tables do u need to do search operation..?
If Many Tables, and many recs in each table, then this will be a huge Overhead on the database.
But if u need to do it... |
Forum: VB.NET Aug 7th, 2007 |
| Replies: 18 Views: 3,805 Hi,
What is the Database u r using..? Access..?
-Vee |
Forum: VB.NET Aug 7th, 2007 |
| Replies: 18 Views: 3,805 Hi,
what u actually want..? Search all the fields of all the tables for any one Specific condition...?
-Vee |
Forum: VB.NET Aug 1st, 2007 |
| Replies: 6 Views: 2,540 Hi Arjun,
It is :
By Deleting the Config.app & rebuilding the project
REgards
Veena |
Forum: VB.NET Aug 1st, 2007 |
| Replies: 6 Views: 2,540 |
Forum: VB.NET Jul 31st, 2007 |
| Replies: 6 Views: 1,726 Hi Simon,
make the Font of the NotePad "Courier New", it is a UniDistant font (all fonts acquire same space on screen/media), ur texts will look like Columns..
REgards
Veena |
Forum: VB.NET Jul 31st, 2007 |
| Replies: 8 Views: 848 hI,
U NEED .aspx.vb to view the design.. if u have it then,
AT THE BOTTOM OF HTML U CANT SEE THE "DESIGN" LINK...?
-VEE |
Forum: VB.NET Jul 30th, 2007 |
| Replies: 8 Views: 848 Hi Preetham,
Whatever u download from Web, Just comes with HTML format, If u have the Complete Source Code of the project, then only u can View the Design and How can see how it works..
... |
Forum: VB.NET Jul 29th, 2007 |
| Replies: 8 Views: 848 Hi,
Click on Design and u will get the design Part (if u have designed the WebForm)
But if u have downloaded from the WEB and want to open the Design window, u cannot do that, bcoz only HTML... |
Forum: VB.NET Jul 29th, 2007 |
| Replies: 3 Views: 33,359 Hi,
Check this :
TextBox1.Text = Format(1.9, "0.00")
TextBox2.Text = Format(22, "0.00") |
Forum: VB.NET Jan 13th, 2007 |
| Replies: 2 Views: 1,769 Hi,
Where u r inputting 3rd Digit..?
I think this would suffice, U dont have to put in a Loop, to Calculate the Difference between 2 Values.
Private Sub Button1_Click(ByVal sender As... |