Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
25% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
4
Posts with Downvotes
2
Downvoting Members
4
3 Commented Posts
0 Endorsements
Ranked #779
~40.2K People Reached
Favorite Tags
Member Avatar for papuccino1

A THOUSAND apologies if this question has been asked time and time again. Google gave no results and Jeeves is retired so I come looking for help in the best programming forum around. [code=csharp]private void button1_Click(object sender, EventArgs e) { pictureBox1.ImageLocation=??????????? }[/code] My question is fairly simple, what do I …

Member Avatar for NetJunkie
0
2K
Member Avatar for phephe

Hi, I am having trouble writing the code to work for my C# .Net assignment. I already design the form and now I have to get the code to work for my program. The problem I am having is if I put a number in my design form other than …

Member Avatar for Armen_2
0
2K
Member Avatar for omoz4real

Hi everyone, please i am writing a program in C# for connecting to a microsoft access database using visual studio 2005 and ADO.NET. i want to be able to use Dataset to update,delete,insert and edit records in the database.please how do i go about this.I already have aform with a …

Member Avatar for garymedina
0
3K
Member Avatar for kobi

Hello there, How can i add a node in a certian place in a treeView control? Thanks ahead

Member Avatar for JirkaJirka
0
207
Member Avatar for IT_Techno

Hi anybody know how to convert a doc file to pdf using c# code i need to create my owne application i donot want to use any one at internet Best Regards, IT_Techno

Member Avatar for mfran
0
1K
Member Avatar for luckydude

Hey all, I am new to C# and want to learn it. Can anyone tell me a good book for beginners? Your help is greatly appreciated. thanks. Luckydude

Member Avatar for geric823
0
926
Member Avatar for viswa_007

I am using a datagridview in my windows application in VS-2005. How can I convert some cells in a particular textbox column in my datagridview to checkbox cell types. Please provide some suggestions with code (if possible) Thanks in advance

Member Avatar for Janice44
0
1K
Member Avatar for Krimi

hi im trying to create a small excel addin in VS2008 byt i cant figure out how to write lika a string or an int to a specific cell? for example: i want to write something in cell B1? how do i do that in the C# code? it must …

Member Avatar for SuperSid
0
330
Member Avatar for frmsasp

Dear Friend, I am new in ASP.Net with c#. I want date in a dd/mm/yyyy format with validation in TextBox . Is anybody guide me how shall ? As I got date with dd/mm/yyyy but it will also accept 32/02/2005. Though Feb has less 30 days. Also when I compare …

Member Avatar for amitesh kaushik
0
4K
Member Avatar for serkan sendur

I have never found a logical explanation to make my mind about using interfaces in c#. Does any one know a robust benefit of using interfaces? please explain to me in a structural manner.

Member Avatar for Sam.ars
0
1K
Member Avatar for Indianblues

Hi I am very new to C#. Below is the program which i am trying. { string connstring = "Data Source = .\\SQLEXPRESS;Initial Catalog = SAMP; Integrated Security = True"; SqlConnection conn = new SqlConnection(connstring); SqlCommand comm = new SqlCommand(); comm.Connection = conn; SqlDataAdapter myadapter = new SqlDataAdapter(comm); DataSet myset …

Member Avatar for adchopra
0
84
Member Avatar for rahilameen

hi i am a new memeber of this group. i am developing a web application which inserts customers details into databse when customer inserts his details on the web page. i need help regarding code to connect MSAccess database in ASP.NET.means if user inserts the details the details should get …

Member Avatar for msubash78
0
1K
Member Avatar for omoz4real

Hi everyone, please i created a[COLOR=#000000] C# windows application to implement a form with a ListBox, a TextBox, an Edit button, an Insert button, a Delete button, a Update button and an Exit button in the form. I want my C# program to be able to copy the columns of …

Member Avatar for youtubeline
0
152
Member Avatar for blazted

I created a text box event handler to only allow my textbox to accept Numbers only. The Event handler works great and does not allow anything but numbers except when the form first loads and the character entered is non-numeric it then allows the first charcter to be entered can …

Member Avatar for Nick Evan
0
541
Member Avatar for 1qaz2wsx7

Hi :) I want to click on a button and open the mail box so i can put message and send it, how can i do that ? Thanks.

Member Avatar for Seema
0
2K
Member Avatar for johnroach1985

Hi. I would like to create a 3D desktop environment like the one done in [url]http://www.real-desktop.de/[/url] please check it up. However I do not know how to start... I thought of creating a a huge form that is always on the top and calling short cuts when someone clicks on …

Member Avatar for bk_bhupendra
0
335
Member Avatar for free_eagle

Dear forum members, Could you please let me know from your experience the best avaibable textbooks to learn C# effectively with examples? I am planning to start to learn C# programming but I have no idea from where to start and which book to read. I have Deitel's books Programming …

Member Avatar for gira
0
334
Member Avatar for iamrashid
Member Avatar for btech_Saurabh

Hi Developers....... Can anybody help me......I have an array and i want to enrypt that array and save that encrypted data into a file .......how can i do this...... i don't know ....how to do Encrytion in C# Every Comment will be welcome.... Thanks......

Member Avatar for aungzy24
0
137
Member Avatar for Jx_Man

hi all, i m a newer in c#. a already start to using c# today. in my first project i make program to add,edit and delete data from database. i m already do all of them. now i want to showing data in every control (textbox,combobox, etc) when i click …

Member Avatar for lksath
0
347
Member Avatar for shraddha24

I am developing a job portal and i want the end user to enter his/her D.O.B..for that I want to create 3 dropdown one for..day,second for month and third for year..since I'm new to asp.net 2.0 my problem is how to program to as to get the values of all …

Member Avatar for LizR
0
159
Member Avatar for FlamingBlade

I can't figure out how to display a local webpage. I've tried messing with the webBrowser control but it keeps adding "http://" to the front of the local webpage address, and if I try to change it from within the code like this: [code=C#]webBrowser1.Url = "file:\\webpage\Maphs v1.htm";[/code] I get the …

Member Avatar for FlamingBlade
0
160
Member Avatar for emilio

i'm trying to open an existing excel worksheet. my code is: [CODE=c#]Microsoft.Office.Interop.Excel.Application excelApp; Microsoft.Office.Interop.Excel.Workbook excelWorkbook; Microsoft.Office.Interop.Excel.Worksheet ExlWrkSheet; private object Opt = Type.Missing excelApp = new ApplicationClass(); excelWorkbook = excelApp.Workbooks.Open("..//..//Data.xls", Opt, Opt, Opt, Opt, Opt, Opt, Opt, Opt, Opt, Opt, Opt, Opt, Opt, Opt);[/CODE] on the last line i get an …

Member Avatar for LizR
0
215
Member Avatar for schmidty169

Here are my parameters to follow: Every Account at the bank keeps track of a balance. In addition, each Account allows users to deposit and withdraw money. Accounts are subdivided into: SavingsAccount. This type of account has an interest rate associated with it. This rate is used at the end …

Member Avatar for schmidty169
0
261
Member Avatar for sivak

anyone tell me what is the use of webservices ....in which condition we should go for webservices in c# .net? any example?

Member Avatar for Jugortha
0
106
Member Avatar for pavanbandi

Hi all, i am new to this forum.can u please explain,how we can read data from pdf.

Member Avatar for Jugortha
0
127
Member Avatar for Catherinedally

Ok I need to be pointed into the right area where I'm going I seem to be lost and more I read it confuses me more. My assignment is: Create a C# project to process 10 students result. Use arrays to keep all the students details in terms of Student …

Member Avatar for coolkeg
0
120
Member Avatar for MRafeie

Hi The [I]System.Windows.Forms.SendKeys.Send[/I] method does not support sending Left or Right shift key. How can I send these keys in C#? thanks in advance

Member Avatar for MRafeie
0
1K
Member Avatar for Gaurav arora

HI all i m making a project for a departmental store. In that I have to make a bill generation form in which i have taken a gridview for the products entry which have been purchased by the customer. I have taken 5 columns in that gridview. ProdId,ProdName,Qty,Price and total. …

Member Avatar for EastStreetEagle
0
122
Member Avatar for sivak

can u tell me what is the difference between webappliaction and windows applications ? same as difference between sql 2000 and 2005... asp.net 2.0 and asp.net 3.0 ..plz reply me soon

Member Avatar for bondo
0
112