Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~38.4K People Reached
About Me

Always keen to learn

Interests
Web Development, Cricket
Favorite Tags
Member Avatar for litlemaster

Hello to all, I am trying to execute a mysql query for selecting * rows from the table where user name = [one of the usernames stored in an array]. Ok. Sorry if I am not clear. Now I have an array naming $users[]. I want to select all the …

Member Avatar for mukesh_20
0
36K
Member Avatar for litlemaster

[CODE] int cg = Convert.ToInt16(comboBox1.SelectedValue.ToString()); [/CODE] This code is giving an error. Please tell me where I m wrong.

Member Avatar for litlemaster
0
90
Member Avatar for litlemaster

Hello buddies, I have two datagrid views on my form. The first datagridview is bound to a table named contacts. And the second one is bound to a different tables say Group_members. Now My problem is that I want to add the selected row in DataGridView1 to datagridview2. And later …

Member Avatar for Geekitygeek
0
263
Member Avatar for litlemaster

I have three as 1.Contacts --> contact_ID, contact_name 2.Members --> contact_ID, Group_ID 3.Groups --> group_ID, contact_ID I want to SELECT contacts_names from Contacts where some Group_ID such that all the contact_IDs belong to one group_ID in table Members. In short I want to Group my contacts. Please Help

Member Avatar for litlemaster
0
64
Member Avatar for litlemaster

[CODE] SqlCeDataAdapter adp = new SqlCeDataAdapter("select * from gmembers where GID = "+current_group, con);[/CODE] What I was trying to do is to Select all the records from table gmembers where GID is a string variabe. I would also like to mention that actuall data type of GID is INT. probably …

Member Avatar for Geekitygeek
0
93
Member Avatar for litlemaster

He friends, I have added a Local Database in My project(it's an SDF database) by following this: [COLOR="Red"]Right Click Solution Explorer > Add.. > New Item > Local Database[/COLOR] I have created a table in this database. Now I want to insert data into this database via windows form. I …

Member Avatar for pritesh2010
0
90
Member Avatar for litlemaster

Hi Everyone, I was working with DataGridView tool in Visual Studio. I have managed to display data from my database in DataGridView. Now I have to Select some certain rows and store them in such a way, so that I can Use a loop on them and process each row …

Member Avatar for Duki
0
127
Member Avatar for litlemaster

Hello, First of all let me thanks you all for your support throughout my project. Now just a few final steps are left to finish the SMS application. Now I have to make a phonebook to store the contacts. For this purpose I need a database, I tried SQL Server …

Member Avatar for ddanbe
0
79
Member Avatar for litlemaster

hello, I am a student and I am trying to build an application to send SMS. For that I have to modify this source code at code project article [URL="http://www.codeproject.com/KB/cs/SMS.aspx?msg=3533311#xx3533311xx"]http://www.codeproject.com/KB/cs/SMS.aspx?msg=3533311#xx3533311xx[/URL] SmsSubmitPdu pdu; pdu = new SmsSubmitPdu(richTextBox1.Text, textBox1.Text, ""); GsmCommMain comm = new GsmCommMain(); CommSetting.comm.SendMessage(pdu); I have used this code to …

Member Avatar for Lusiphur
0
109
Member Avatar for litlemaster

[CODE]protected override void Dispose( bool disposing ) { if( disposing ) { if(components != null) { components.Dispose(); } } base.Dispose( disposing ); }[/CODE] I new nothing, what this code is doing in this project. I am familiarizing myself with am application to send and receive SMS from GSM modem. Meanwhile …

Member Avatar for litlemaster
0
110
Member Avatar for litlemaster

Hello All, This is regarding my project which is about an Application through which I can Send SMS to any mobile phone. I have googled a lot and finally stumbled upon this link. [URL="http://www.codeproject.com/KB/cs/SMS.aspx?msg=2961173"]http://www.codeproject.com/KB/cs/SMS.aspx?msg=2961173[/URL] Its quite a famous link, My problem is that I have downloaded the application, It works …

Member Avatar for Teme64
0
89
Member Avatar for litlemaster

[CODE]SqlConnection connection = new SqlConnection(); connection.ConnectionString = "Data Source = kumar\\SQLEXPRESS; Initial Catalog = phonebook; Integrated Security = TRUE"; connection.Open(); SqlCommand cmd = new SqlCommand("Select * From contacts", connection); SqlDataAdapter adp = new SqlDataAdapter(cmd); DataSet ds = new DataSet(); adp.Fill(ds, "contacts"); comboBox1.DataSource = ds.Tables["contacts"]; comboBox1.ValueMember = "phone"; comboBox1.DisplayMember = "name"; …

Member Avatar for litlemaster
0
267
Member Avatar for litlemaster

Dear friends. hello i have to select multiple contacts from database. How should I retrieve data so that the user can select any contact with the help of checkboxes? DataGrid is not the right choice I guess..! Is there any other way...? Please please reply...!

Member Avatar for litlemaster
0
74
Member Avatar for litlemaster

I am developing an application to send and receive SMS from Desktop via nokia mobile phone modem. So far I am successful in sending sms through my application. But it seems as if my modem doesnot supports AT commands to read SMS. I have tried to read the SMS from …

0
123
Member Avatar for litlemaster

Hello all, I am a newbie and currently learning c#. i have adequate programming ability. I have to create a project in c#. Now I am searching for a topic for my project. I have plans in my mind to create a desktop application through which we can send and …

Member Avatar for litlemaster
0
171
Member Avatar for litlemaster

I am clue less about what are delegates and why do we use them in c#. Also what are no type safe functions as the concepts seems to be relevant.

Member Avatar for farooqaaa
0
84
Member Avatar for litlemaster

Hello, I need a little bit advise from some of the experienced members here at Daniweb. I am currently engaged in a making a social networking site. Its not a new idea, no new features has been introduced yet. So I was in a confusion that how will I attract …

Member Avatar for pwsolutions
0
119
Member Avatar for litlemaster

I tried out few tutorials out there, but I messed up with each one. Please anyone , explain me step by step how i can simply add a paginition to my site.

Member Avatar for Krstevski
0
66
Member Avatar for litlemaster

I need to select certain the rows from a table but need to show only just five of them. For example select * from table where user = $user; but i need only top five results

Member Avatar for litlemaster
0
101