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
~50.2K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

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
452
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
126
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
210
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
218
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
266
Member Avatar for gabanxx
Member Avatar for NanaYee
0
539
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
813
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
96
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
429
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
659
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
148
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
196
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
587
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
114
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
146
Member Avatar for Datsun90
Member Avatar for sierrainfo
0
148
Member Avatar for Mashimar

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

Member Avatar for dyadarling
0
175
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
102
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
189
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
136
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
182
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
115
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
132
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
142
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
90
Member Avatar for Ekaterina
Member Avatar for Ekaterina
0
199
Member Avatar for sravankolla
Member Avatar for sierrainfo
0
169
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
130
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
171
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
154
Member Avatar for konczuras
Member Avatar for konczuras
0
138
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
146
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
79
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
166

The End.