Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
61% Quality Score
Upvotes Received
3
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
2 Commented Posts
0 Endorsements
Ranked #1K
~49.7K People Reached
About Me

I am a Microsoft Certified Professional (MCP,MCSD, MCAD.Net,MCSD.Net, MCP-.Net2.0) with 8 years experience of conducting training for Microsoft Certification Courses, and SW Development experience with VB6, SQL 7, 2000, .Net 1.0/1.1/2.0.

Interests
Reading, Movies, Books, acquiring and imparting knowledge
Favorite Tags

114 Posted Topics

Member Avatar for geetajlo
Member Avatar for edcaryl

A simple code on how to connect sql server from VB.Net via SQL connection string, and the use of [B]ExecuteNonQuery()[/B] method to execute the command and the try and catch to catch errors during runtime. Example information: [B]SQL data:[/B] Database name: user Table name: user_t Columns: user_id,lname,fname,username,password,usertype [B]Controls: [/B] [B]textboxes: …

Member Avatar for vinod_10
0
7K
Member Avatar for suresh.andey
Member Avatar for du_1
-3
2K
Member Avatar for remyajames

[url]http://www.vbdotnetheaven.com/UploadFile/krishnajina/CrystalReportwithXmlInVB11102005001552AM/CrystalReportwithXmlInVB.aspx[/url]

Member Avatar for Armand_1
0
440
Member Avatar for jaasaria

u can also use CheckedListBox control. see the following link. I hope it will help u. [url]http://msdn.microsoft.com/en-us/library/2yc9d57t.aspx[/url]

Member Avatar for bluemarine90
0
3K
Member Avatar for mansi sharma

try this in the Load event, it should solve your problem: [code=ASP]protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { DropDownList1.Items.Clear(); DropDownList3.Items.Add("BE"); DropDownList3.Items.Add("Drawing"); DropDownList3.Items.Add("PG"); } }[/code] Regards Sunil Punjabi <URL Snipped>

Member Avatar for anilMAN
0
119
Member Avatar for chrisdent1986

I hope this helps: The Microsoft provider ships with the .NET Framework 1.1. All types are contained in the System.Data.OracleClient namespace. The Microsoft provider requires Oracle client version 8.1.7 or above. ODP.NET is freely available from the Oracle Technology Network (OTN) at [url]http://www.oracle.com/technology/software/tech/windows/odpnet/index.html[/url]. The types are contained in two namespaces—Oracle.DataAccess.Client …

Member Avatar for 201061198
0
203
Member Avatar for sreein1986
Member Avatar for cVz

try this [COde=sql]SELECT Tel_H_Code + ' ' + Tel_H AS Tel_H FROM Detailed_List[/COde]

Member Avatar for Todster
0
212
Member Avatar for shashikanth

Try to following links. I hope it will help u. [url]http://www.programmingtutorials.com/vbnet.aspx[/url] [url]http://www.java2s.com/Code/VB/CatalogVB.htm[/url] [url]http://download.microsoft.com/download/8/e/7/8e725d96-7ec3-498b-9fa7-86779aed101f/dotNET%20Tutorial%20for%20Beginners.pdf[/url]

Member Avatar for formulav8
0
265
Member Avatar for gabanxx

heres the sample code you can use from MSDN: [url]http://support.microsoft.com/kb/306125[/url]

Member Avatar for NanaYee
0
526
Member Avatar for sancti

hope it will help u. [url]http://www.dotnetcurry.com/ShowArticle.aspx?ID=109&AspxAutoDetectCookieSupport=1[/url] [url]http://www.codeproject.com/KB/aspnet/ASPXFILES.aspx[/url]

Member Avatar for guptanitesh1988
0
2K
Member Avatar for dhirananda

[code] Imports System.Data Module Test Sub Main() Dim sConnectionString, sSQL As String 'SQL Connection String sConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\yourdatabase.mdb" sSQL = "SELECT Title FROM yourTable" Dim conn As New System.Data.OleDb.OleDbConnection(sConnectionString) Dim cmd As New System.Data.OleDb.OleDbCommand(sSQL, conn) Dim dr As System.Data.OleDb.OleDbDataReader conn.Open() dr = cmd.ExecuteReader() Do While dr.Read() System.Console.WriteLine(dr.Item("Title")) Loop dr.Close() …

Member Avatar for deshmukh dinesh
0
812
Member Avatar for nouvaki

Declare public variable in a Module. Store the radiobutton value in the variable and then retrieve the value stored in the public variable in the main form.

Member Avatar for TomW
0
95
Member Avatar for saleemwazir
Member Avatar for shxrainz

Try the following Steps : [B]Go to the folder C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG Select the Machine.config and then find the tag <DbProviderFactories> under <system.data>.Then next step is to hide all the provider entries which has either Version=3.5.0.0 or Version=9.0.242.0. [/B] [QUOTE] <DbProviderFactories> <add name="Odbc Data Provider" invariant="System.Data.Odbc" description=".Net Framework Data Provider for Odbc" …

Member Avatar for singharchana06
0
427
Member Avatar for jahanna

hi see the following links. I hope it will help u. [url]http://www.codeproject.com/KB/books/0764549146_8.aspx[/url] [url]http://www.codeproject.com/KB/recipes/IE7_Clone_VS2005_Browser.aspx[/url]

Member Avatar for simulanics
0
650
Member Avatar for shashank.kuls

see the link to solve your problem : [url]http://www.pin5i.com/showtopic-7166.html[/url]

Member Avatar for jkvsos
0
147
Member Avatar for divyasrinivasan

hope it will help you. [url]http://www.15seconds.com/issue/060323.htm[/url] [url]http://www.c-sharpcorner.com/UploadFile/raj1979/GridViewExample11232008075052AM/GridViewExample.aspx[/url]

Member Avatar for mail2saion
1
187
Member Avatar for madelein

[QUOTE] [B] 1st Method[/B] Imports System.Data Module Test Sub Main() Dim sConnectionString, sSQL As String 'SQL Connection String sConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\yourdatabase.mdb" sSQL = "SELECT Title FROM yourTable" Dim conn As New System.Data.OleDb.OleDbConnection(sConnectionString) Dim cmd As New System.Data.OleDb.OleDbCommand(sSQL, conn) Dim dr As System.Data.OleDb.OleDbDataReader conn.Open() dr = cmd.ExecuteReader() Do While dr.Read() …

Member Avatar for Abhay Joshi
0
584
Member Avatar for markx_018
Member Avatar for stek74

Try this links [url]http://faqfront.com/document/sql-server-session-state[/url] [url]http://en.csharp-online.net/ASP.NET_State_Management%E2%80%94Storing_Session_State_out_of_Process[/url] [url]http://www.codeproject.com/KB/session/ASPNETSessionInternals.aspx[/url]

Member Avatar for sierrainfo
0
113
Member Avatar for yrpchoudary

Hope it will help you. [url]http://aspalliance.com/1479_Using_XSLT_to_Transform_XML_Using_ASPNET.all[/url] [url]http://www.geekinterview.com/question_details/44257[/url]

Member Avatar for sierrainfo
0
144
Member Avatar for Datsun90
Member Avatar for sierrainfo
0
143
Member Avatar for Mashimar

[COLOR="Green"]SELECT DISTINCT(MobileNumber), COUNT(MobileNumber) AS RecordCount FROM MobileTable GROUP BY MobileNumber[/COLOR]

Member Avatar for dyadarling
0
173
Member Avatar for ryan311
Re: help

In Form1 Private Sub CustemersList_DblClick() Form2.Comand1_Click() End Sub In Form2 [COLOR="Red"][B]Public[/B][/COLOR] Sub Command1_Click() 'Your Code Here End Sub If you got it [B]MARKED AS SOLVED[/B]

Member Avatar for ryan311
0
111
Member Avatar for Ninad16

[url]http://en.wikibooks.org/wiki/Active_Server_Pages/Differences_between_ASP_3.0_and_ASP.NET[/url] [url]http://www.techiwarehouse.com/cms/engine.php?page_id=61d8b135[/url] [url]http://www.tutorial-web.com/asp.net/[/url] [url]http://www.w3schools.com/aspnet/aspnet_vsasp.asp[/url]

Member Avatar for sierrainfo
0
96
Member Avatar for kritiohri
Member Avatar for arunasingh

Try this following links. Hope it will help you. [url]http://www.beansoftware.com/asp.net-tutorials/generating-excel-reports.aspx[/url] [url]http://www.dotnetspider.com/resources/15591-How-read-EXCEL-data-file-asp-net.aspx[/url]

Member Avatar for sierrainfo
0
187
Member Avatar for arunkish

Try this : [COLOR="Red"]Go to Control Panel >>>> Regional Options >>> Numbers and change the "Digit Grouping" like 12,34,56,789 then OK [/COLOR] [COLOR="Green"]Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Label1.Text = Format(Your No., "##,##0") End Sub[/COLOR]

Member Avatar for sierrainfo
0
134
Member Avatar for Ugochukwu

[url]http://www.c-sharpcorner.com/UploadFile/mamtam/AddandRetrieveImages09232005080918AM/AddandRetrieveImages.aspx[/url] [url]http://www.vbdotnetheaven.com/UploadFile/scottlysle/ImageToSqlServer11242006025136AM/ImageToSqlServer.aspx[/url]

Member Avatar for Teme64
0
179
Member Avatar for venkat554

Hope it will help u. [url]http://www.aspnettutorials.com/tutorials/database/Save-Img-ToDB-VB.aspx[/url] [url]http://forums.asp.net/p/739822/996518.aspx[/url]

Member Avatar for Teme64
0
2K
Member Avatar for trivedimca2005

see the links. [url]http://www.codeproject.com/KB/vb/VB2005_SMTP_EMail.aspx[/url] [url]http://www.aspnettutorials.com/tutorials/email/email-aspnet2-vb.aspx[/url]

Member Avatar for sierrainfo
0
182
Member Avatar for Swetha Suresh

u can use Hierarchical FlexGrid or FlexGrid control to display the data. See the following link for example. [url]http://kbalertz.com/223073/MSHFlexGrid-Invalid.aspx[/url]

Member Avatar for sierrainfo
0
113
Member Avatar for Kartikey

See the following links. Hope it will help you. [url]http://systems.bus.ucf.edu/lwest/courses/4212/lessons/reports.htm[/url] [url]http://www.vbdotnetheaven.com/UploadFile/krishnajina/CrystalReportwithXmlInVB11102005001552AM/CrystalReportwithXmlInVB.aspx[/url]

Member Avatar for sierrainfo
0
131
Member Avatar for chanthung

see the following link [url]http://forum.cheatengine.org/viewtopic.php?p=2018703[/url] [url]http://vbcity.com/forums/faq.asp?fid=6&cat=Forms[/url]

Member Avatar for sierrainfo
0
139
Member Avatar for exploreSPUL

[url]http://www.aspnettutorials.com/tutorials/database/db-repeater-aspnet2-vb.aspx[/url] [url]http://www.devasp.net/net/articles/display/663.html[/url]

Member Avatar for sierrainfo
0
89
Member Avatar for Ekaterina
Member Avatar for Ekaterina
0
198
Member Avatar for sravankolla
Member Avatar for sierrainfo
0
166
Member Avatar for nice_true

[url]http://asp-net-whidbey.blogspot.com/2006/04/generating-pdf-files-with-itextsharp.html[/url] [url]http://www.developerfusion.com/code/5682/create-pdf-files-on-fly-in-c/[/url] hope it will help u

Member Avatar for peter_budo
0
127
Member Avatar for sainik
Member Avatar for Pgmer

See the following links for details : [url]http://www.builderau.com.au/program/windows/soa/Reading-and-writing-text-files-with-VB-NET/0,339024644,320267367,00.htm[/url] [url]http://www.astahost.com/info.php/text-file-operations-vb-net_t6372.html[/url]

Member Avatar for Pgmer
0
168
Member Avatar for brokencalc

[B]Public Class Form1[/B] [COLOR="Green"] Dim firstchoice As Double Dim secondchoice As Double Dim buttonnumber As Integer Dim HasCalcDone As Boolean[/COLOR] [B]Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click[/B] Dim buttonnumber As Integer = 1 If lblFirstNumber.Text = String.Empty Then lblFirstNumber.Text = buttonnumber firstchoice = buttonnumber Else …

Member Avatar for brokencalc
0
150
Member Avatar for konczuras
Member Avatar for onlyvidya

[url]http://www.go4expert.com/forums/showthread.php?p=37348[/url] [url]http://www.dreamincode.net/forums/showtopic70247.htm[/url]

Member Avatar for onlyvidya
0
105
Member Avatar for sbv

See the following links. Hope it will help u. [url]http://www.codeproject.com/KB/aspnet/EmailApplication.aspx[/url] [url]http://www.learnxpress.com/modules/contents/channels/prog_aspnet_2_email.aspx[/url] [url]http://aspnet101.com/aspnet101/tutorials.aspx?id=52[/url] [url]http://www.codeproject.com/KB/aspnet/Send_Emails_in_ASPNET20.aspx[/url] [url]http://www.dotnetcurry.com/ShowArticle.aspx?ID=65&AspxAutoDetectCookieSupport=1[/url]

Member Avatar for sbv
0
145
Member Avatar for geethanjali_man

[url]http://vbcity.com/forums/topic.asp?tid=64171[/url] [url]http://stackoverflow.com/questions/229404/ignored-columns-using-vb6-to-extract-from-excel[/url]

Member Avatar for sierrainfo
0
75
Member Avatar for gatewaytl

See the following links. I hope it will help u. [url]http://www.codeproject.com/KB/aspnet/webconfig.aspx[/url] [url]http://www.asp.net/Learn/data-access/tutorial-73-vb.aspx[/url] [url]http://aspnet.4guysfromrolla.com/articles/021506-1.aspx[/url]

Member Avatar for sierrainfo
0
99
Member Avatar for reena12
Member Avatar for imagetvr

[url]http://www.a1vbcode.com/snippet-4135.asp[/url] [url]http://www.developerfusion.com/forum/thread/28348/[/url] [url]http://www.eggheadcafe.com/community/aspnet/8/10009179/set-parameter-values-to-c.aspx[/url] I hope it will help u.

Member Avatar for sierrainfo
0
165

The End.