Posts
 
Reputation
Joined
Last Seen
Ranked #276
Strength to Increase Rep
+8
Strength to Decrease Rep
-2
71% Quality Score
Upvotes Received
41
Posts with Upvotes
35
Upvoting Members
30
Downvotes Received
26
Posts with Downvotes
26
Downvoting Members
6
20 Commented Posts
~159.71K People Reached
Interests
Gaming, Surfing , Anime , Manga , DayDreaming(sometimes)
PC Specs
Processor: AMD Phenom II x6 1055TGraphics Card : Ati Radeon HD 4290 (AMD 890GX) - 1 GbRam : 4 GbHard…
Favorite Tags
Member Avatar for darianculbert
Member Avatar for Feir
1
274
Member Avatar for kazekagerandy

put a text box and button on a form then use following code [CODE] Dim conn As New SqlConnection("Data Source=server;Initial Catalog=database;User ID=id; pwd=pass") 'basically connection string Dim cmd As New SqlCommand("SELECT columnname FROM table", conn) Dim ds As New DataSet Dim da As New SqlDataAdapter(cmd) da.Fill(ds, "list") // list can …

Member Avatar for bikithalee
0
12K
Member Avatar for kipslem
Member Avatar for ddanbe
Member Avatar for sandeepparekh9

Lets say you have lots of data your listview. Now you want to Group This data According to a Perticular Subitems. For Example: Suppose i have some books data in my ListView. this listview items contains Author name and Books Title. And there are 2000 Books in list view. Now …

Member Avatar for dragonfly67
1
1K
Member Avatar for steven woodman

1. If all the nations in the world are in debt(am not joking. even US has got debts), where did all the money go? 2. What is the speed of darkness? 3. If the "black box" flight recorder is never damaged during a plane crash, why isn't the whole airplane …

Member Avatar for stultuske
4
399
Member Avatar for sandeepparekh9

Simple Encryption and Decryption Function using rijndael algorithm. Imports this: Imports System.Security Imports System.Security.Cryptography Imports System.IO Imports System.Runtime.InteropServices Imports System.Text.RegularExpressions Imports System.Text Source : [snipped]

Member Avatar for Reverend Jim
2
10K
Member Avatar for nithysony

check this : [URL="https://docs.google.com/viewer?a=v&pid=explorer&chrome=true&srcid=0B4UFpIoo5oVWMmFmMWEwOTgtYmVmOS00NTVkLTg1MWEtMTUyZTcyZjUwNGQ1&hl=en_US&authkey=CLav9_QD"]https://docs.google.com/viewer?a=v&pid=explorer&chrome=true&srcid=0B4UFpIoo5oVWMmFmMWEwOTgtYmVmOS00NTVkLTg1MWEtMTUyZTcyZjUwNGQ1&hl=en_US&authkey=CLav9_QD[/URL]

Member Avatar for normantyago
1
486
Member Avatar for Jake.20

hi Put a list view to form use following code: [CODE] Imports System.Data.SqlClient Public Class Form1 Dim conn As SqlConnection Dim cmd As SqlCommand Dim da As SqlDataAdapter Dim ds As DataSet Dim itemcoll(100) As String Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Me.ListView1.View = …

Member Avatar for nethzkie18
0
814
Member Avatar for P.manidas

see if this helps : [URL="http://www.akadia.com/services/dotnet_databinding.html"]http://www.akadia.com/services/dotnet_databinding.html[/URL] or this (its with example) :[URL="http://www.vb-helper.com/howto_net_bind_collection.html"]http://www.vb-helper.com/howto_net_bind_collection.html[/URL]

Member Avatar for G_Waddell
0
2K
Member Avatar for paulablanca

hi suppose u have two datagrid view 1. DataGridView1 (source to copy from) 2. DataGridView2 (Destination to copy) For example assume that both the datagridview have 3 columns u have a button to perform the copy.. write the following code at copy button [CODE] Dim dr As New System.Windows.Forms.DataGridViewRow For …

Member Avatar for arun1123
0
4K
Member Avatar for tirso

hi.. right click on your [B]Detail Section's Header[/B]. then select the [B]Selection Expert[/B] from dropdown. now check : [B]New Page After [/B] its done. see screen shot for more info

Member Avatar for maboho25
0
750
Member Avatar for crazyvonzipper

i think dataset doest not allow select from multiple datatable, correct me if i am wrong. what could you do is, iterate through each row of datatable1 , comparing each row with each row of other datatable2. and copying the matched data to another datatable2.

Member Avatar for Michael27
0
263
Member Avatar for wenbnet

here are two tutorial on anchoring and docking which will help you get going: [URL="http://www.codeproject.com/KB/miscctrl/anchordock.aspx"]http://www.codeproject.com/KB/miscctrl/anchordock.aspx[/URL] [URL="http://www.startvbdotnet.com/forms/form4.aspx"]http://www.startvbdotnet.com/forms/form4.aspx[/URL]

Member Avatar for poojavb
1
462
Member Avatar for sandeepparekh9

Ever Thought if it was possible to not WebBrower control and use the Firefox Browser in your c# window Application...?? Yes ,, It is possible using GeckoFx wrapper class for C#.net and vb also. You will need the Followings: 1. [URL="http://code.google.com/p/geckofx/downloads/list"]GeckoFx Wrapper[/URL] 2. [URL="http://mirrors.directorymix.com/mozilla/xulrunner/releases/1.9.1.2/runtimes/"]Xul Runner[/URL] (Download the zip file from …

Member Avatar for newlonator
0
920
Member Avatar for riahc3

check this .. its just wat you want: [URL="http://winform-net.blogspot.com/2011/05/numeric-only-textbox.html"]http://winform-net.blogspot.com/2011/05/numeric-only-textbox.html[/URL]

Member Avatar for princenathan
0
4K
Member Avatar for Arjun_Sarankulu
Member Avatar for sandeepparekh9

hi.. guys.. just joined daniweb.. and this is my first post this one's very easy... i suffered a lot to find this simple program.. i hope you guys like it.. here is a quick preview of it...[URL="http://lh4.ggpht.com/_blnOia1d0Pw/TQs3BhaCClI/AAAAAAAACco/3vPqJIlyG-M/gmail%20client.JPG"]http://lh4.ggpht.com/_blnOia1d0Pw/TQs3BhaCClI/AAAAAAAACco/3vPqJIlyG-M/gmail%20client.JPG[/URL] 1. First Of All Add the Following Line to your code: [CODE]Imports System.Net.Mail[/CODE] …

Member Avatar for kothaisaravan
0
449
Member Avatar for sandeepparekh9
Member Avatar for diven

this should get you going: [URL="http://www.daniweb.com/software-development/vbnet/code/368571"]http://www.daniweb.com/software-development/vbnet/code/368571[/URL] you can read all the excel files into dataset and export that dataset to single excel

Member Avatar for Human2.0
0
938
Member Avatar for gunbuster363

well these are my daily visits: [URL="http://lifehacker.com/"]http://lifehacker.com/[/URL] [URL="http://www.geeky-gadgets.com/"]http://www.geeky-gadgets.com/[/URL] i read them in google reader

Member Avatar for Arkrothe
0
124
Member Avatar for astha_malik

try this: [URL="http://www.vcskicks.com/3d-graphics-improved.php"]http://www.vcskicks.com/3d-graphics-improved.php[/URL]

Member Avatar for Shwetha Dali
-1
6K
Member Avatar for yehtunaung

see the below links: [URL="http://www.dreamincode.net/forums/topic/103960-save-and-retrieve-images-with-sql-server/"]http://www.dreamincode.net/forums/topic/103960-save-and-retrieve-images-with-sql-server/[/URL] [URL="http://www.atalasoft.com/KB/Article.aspx?id=10018"]http://www.atalasoft.com/KB/Article.aspx?id=10018[/URL] [URL="http://www.codeproject.com/KB/web-image/PicManager.aspx"]http://www.codeproject.com/KB/web-image/PicManager.aspx[/URL]

Member Avatar for ErnestSeeker
0
369
Member Avatar for Shanti C
Member Avatar for sandeepparekh9

hi.. i just made two function related to excel . 1. Merging all sheet of excel as tables in single Dataset 2. Exporting a dataset to Excel File .(all the tables of dataset as sheets) i just wanted to share.. i hope it becomes helpful to you. ps: Dont forget …

Member Avatar for sandeepparekh9
0
539
Member Avatar for installer
Member Avatar for Dani
Member Avatar for pseudorandom21
Member Avatar for happygeek

check this out: [URL="http://blog.nielsen.com/nielsenwire/online_mobile/iphone-vs-android/"]http://blog.nielsen.com/nielsenwire/online_mobile/iphone-vs-android/[/URL]

Member Avatar for katmai539
0
766
Member Avatar for Dranip

you can't SPECIALIZE in all the areas. choose a profession and excel in it.. choose the one you like and is in current market trend in your country or region from which you can benefit.

Member Avatar for a.oprea
0
125