Posts
 
Reputation
Joined
Last Seen
Ranked #277
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
~163.23K 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

224 Posted Topics

Member Avatar for darianculbert
Member Avatar for Feir
1
275
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
504
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
820
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
758
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
264
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
480
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
934
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
454
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
943
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
126
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
381
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
541
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
781
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
Member Avatar for udigold1
Member Avatar for Joshua Kidd

or you can try this: [CODE] texbox1.Text = DataGridView1.SelectedRows(0).Cells(1).Value.ToString() [/CODE]

Member Avatar for adam_k
0
325
Member Avatar for rajdey1

you should use : NSIS or Inno setup maker.. its easy and understandable.. i use nsis and its quite powerful yet easy [URL="http://nsis.sourceforge.net/Main_Page"]http://nsis.sourceforge.net/Main_Page[/URL]

Member Avatar for sandeepparekh9
0
255
Member Avatar for vincezed

if you are using sql database.. you can just fire a simple query. like [CODE]select MIN(yourColumnName) from yourTableName; select MAX(yourColumnName) from yourTableName;[/CODE]

Member Avatar for vincezed
0
3K
Member Avatar for pro_learner

use ccleaner to clear junk [URL="http://www.piriform.com/CCLEANER"]http://www.piriform.com/CCLEANER[/URL]

Member Avatar for uv4u
0
250
Member Avatar for vedro-compota
Member Avatar for kerek2

here try this: [CODE] Imports System.IO Imports System.IO.Path Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim strPath As String = System.IO.Path.GetDirectoryName(Application.ExecutablePath) & "\" Dim dirInfo As New IO.DirectoryInfo(strPath) For Each file As FileInfo In dirInfo.GetFiles("*.txt", SearchOption.TopDirectoryOnly) ComboBox1.Items.Add(file.Name) Next End Sub End Class …

Member Avatar for codeorder
0
2K
Member Avatar for uchendu korie

see here if helps: [URL="http://www.dreamincode.net/forums/topic/149975-monitoring-network-traffic/"]http://www.dreamincode.net/forums/topic/149975-monitoring-network-traffic/[/URL]

Member Avatar for codeorder
0
170
Member Avatar for Reverend Jim

here try something like this: [CODE] Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim item As New ListViewItem '("Harry Potter and the Philosopher's Stone", "J K Rowling") item.Text = "Harry Potter and the Philosopher's Stone" item.SubItems.Add("J K Rowling") ListView1.Items.Add(item) item = New …

Member Avatar for Reverend Jim
0
2K
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 …

0
291
Member Avatar for aimboter89

[QUOTE]Dim myArray() As Integer = {a, b, c, d, f}[/QUOTE] why do you have character in your integer arrary??

Member Avatar for sandeepparekh9
0
329
Member Avatar for vedro-compota
Member Avatar for vedro-compota
0
239
Member Avatar for vedro-compota

hi.. here [URL="http://goo.gl/6pz4S"]http://goo.gl/6pz4S[/URL] i have made this custom control and provided the smart tag coding also.. i hope it helps ..

Member Avatar for vedro-compota
0
114
Member Avatar for ritesh2190

use something like this: [CODE] Public Function findString(ByVal strData As String, ByVal strWhatToFind As Char) As Integer Dim cnt As Integer = 0 For Each c As Char In strData If c = strWhatToFind Then cnt += 1 End If Next Return cnt End Function [/CODE] use: [CODE] Dim str …

Member Avatar for codeorder
0
141
Member Avatar for hawkmcdowell85

for starters see here: [URL="http://www.codeproject.com/KB/cs/xml_parsing.aspx"]http://www.codeproject.com/KB/cs/xml_parsing.aspx[/URL] [URL="http://support.microsoft.com/kb/307548"]http://support.microsoft.com/kb/307548[/URL]

Member Avatar for hawkmcdowell85
0
198
Member Avatar for Netcode

[QUOTE] .SelectCommand.CommandText = "SELECT Reference_Number, Year, Title, Surname," + _ "FirstName, Date_of_Birth, Origin, Phone, State_Deployed, Facility_Deployed FROM HEALTHWORKERS" + _ "WHERE DESIGNATION = BASIC MIDWIVES"[/QUOTE] a silly mistake.. you forgot a space between "FROM HEALTHWORKERS" AND "WHERE" JUST change your query to : [CODE] .SelectCommand.CommandText = "SELECT Reference_Number, Year, Title, …

Member Avatar for Netcode
0
147
Member Avatar for sandeepparekh9

India released a Rs.1,500 ($30) laptop / Tablet PC for students and teachers in colleges and Universities. The device is currently not available for sale in the market as government has decided to launch it for students in 2011. The price of this device (so called laptop) may even go …

Member Avatar for teammate
0
212
Member Avatar for y2kshane

may be this will help: [URL="http://www.codeproject.com/KB/miscctrl/ControlCloneTst.aspx"]http://www.codeproject.com/KB/miscctrl/ControlCloneTst.aspx[/URL]

Member Avatar for Fa3hed
0
156
Member Avatar for deva.v

this will help you: [URL="http://www.codeproject.com/KB/office/excel_using_oledb.aspx"]http://www.codeproject.com/KB/office/excel_using_oledb.aspx[/URL] and this too: [URL="http://stackoverflow.com/questions/57987/writing-into-excel-file-with-oledb"]http://stackoverflow.com/questions/57987/writing-into-excel-file-with-oledb[/URL]

Member Avatar for sandeepparekh9
0
3K
Member Avatar for sandeepparekh9

hi everyone, i was wondering if anyone can guide me regarding TCP/IP programing in c# or vb.net . like what interview question can be asked here, some basic tutorials etc. thanks in advance

0
71

The End.