4,588 Topics
| |
Hi, I have developed a app using facebook c# sdk.I got the api key from fb after making registration on api page.But the problem is no other user except me can't login into the app.Plz app | |
Hello, first this is not a homework assignment so please respond whenever you have time as a speedy solution is not exactly needed. I have been learning C# recently from a microsoft book and had an idea of a program i want to make. Basically i want to be able … | |
Hello, I create a delayer for something but it dont work right, that i want is 1, Load Form 2, Draw a text in TabPage 3, Show a text in tabpage for 5 seconds 4, when delay end then add WebBrowser Control to TabPage PS: I forgot notice, when use … | |
For eg : i am having textbox , in tat v need 2 enter rollno , aft clicking the go button , result of tat individual person hv 2 display in Gridview . itz like Result system , jst i am new to this tech . I need some one … | |
I have not done development work for many years now but I decided to download the new (and free!) Visual Studio 2010 Express C#. I'm enjoying this, but for the life of me I cannot figure out how to data bind controls. Here is my setup: I have a SQL … | |
The following code is used to connect C# with mysql server connectionParam = "SERVER=" + DbServer + ";DATABASE=" + dbName + ";UID=" + uName+ ";PASSWORD=" + pass; MySqlConnection mConnection = new MySqlConnection(connectionParam ); But what will be the code, if MySql can only be accessed through HTTP Tunneling. Tunneling URL: … | |
i have an existing database and i want to attach that database one time to sql server and when thee database is attached then it open that database | |
Hi all, I have 4 (four) tables using MySql database, ie: [CODE]tb_item ( id_item, (varchar) --> PK item_name, (varchar) price, (double) ) tb_order ( id_order, (varchar) --> PK id_item, (varchar) -->FK date_order, (date) lead_time, (float) order_quantity, (double) ) tb_use ( id_use, (varchar) --> PK id_item, (varchar) -->FK date_use, (date) use_quantity, … | |
ım doing a c# security program this detect the desktop, any human musnt exit from program with use the windows types . what codes ı need | |
hello..im a new user of the c# programming language,.im asking for your help in finding a code for my project..can you please give me the code on how to have my own log in form???since c# doesnt have a log in form. | |
Hello All, My son (14) just finished a course on C# and I'm looking for some practice assignments for him. Can anyone tell me a good place where I can find such? Thanks in advance. | |
I am looking to create a desktop application in C# which : 1. Allows the user to select a file / multiple files / folder containing files from his computer. 2. Upload the files selected to a PHP script (which is already equipped to handle file uploads using the $_FILES … | |
Is there any way a user can input numbers into an array like you can in c++??? Or strings for that matter???? | |
hi, i have a question in C#.net report viewer. i want to create a report which will take a user input and generate a report. what i want is get the month from the user input and get it as a parameter for the sql query go get the result. … | |
hi all, i have the server code and client code, but it cannot communicating with each other. i try to run it in 2 pc but happen error. i do not know what is the problem, please help me. server code: [CODE] using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; … | |
How do I get a dattime format in C# that will look like this: 2011-09-01 00:00:00:000 This works DateTime saveNow = DateTime.Now; string test = String.Format("{0:yyyy-MM-01 00:00:00:000}", saveNow); Now I want to know this. How would I subtract one month from the current month? It T-SQL it would look like … | |
How do I get a dattime format in C# that will look like this: 2011-09-01 00:00:00:000 | |
How do I get a dattime format in C# that will look like this: 2011-09-01 00:00:00:000 | |
Hi , I am good at C# concepts, but i am looking to gain expertise on C# programming (developing tools e.t.c) Can any of you please share some links, which contains good basic programs and projects. Thanks in advance. Regards, kumar | |
please help me with the code behind file..as i am really confused...otherwise give me some tips to start doing the code | |
Hello there, I am having trouble with my C# datagrid. Im working with sql. I have four columns in my datagrid: firstname, lastname, membership, date. So heres the design behind my app. Employee scans a card, hits update. Info pertaining to that member gets pulled from the sql database, then … | |
I am trying to make a simple calculator for my code and I wanted to know, how can I have the user input a number like c++ cin >> number; and then just have my math functions do the rest. I have this so far... [CODE] public static void Main() … | |
So I was looking at this problem , and in monodevelop (and Visual Studio). But for somereason I keep getting unreachable code or error in Visual Studio, I retyped and relooked over my code but I cant seem to find what the mistake is that I can run my code. … | |
I'm really new to C# so this may seem like a novice question..How does C# accomplished passing a reference to a object reference? I'm really trying to understand the underlying mechanisms and how it applies to the attached code with the comments - //what happens here? Do we pass a … | |
Hey I have been trying to make a chatmachine, and i wanted to make it play music when the user asked for it, but the problem is how can i make the music stop again? Without closing the player, but by closing with the program.. I used this code [CODE]System.Diagnostics.Process.Start("C:Moves … | |
how Save, Update, Delete Data using C#.Net and SQL Server 2005 | |
I'm encountering some problems with converting Delpi7 pascal to C#, maybe a fresh set of eyes will see what I can't. Pascal [CODE] procedure TForm1.Button5Click(Sender: TObject); var Data: TData; i: integer; s: string; begin if not (CheckBox1.Checked) then begin StatusBar1.SimpleText:='Bidirectional operation not allowed'; exit; end; for i:=0 to 255 do … | |
I want write a text file event log. but when i want add second record(from datagridview) to text file, it will replace 1 record. [CODE]private void btnAddGoods_Click(object sender, EventArgs e) { SqlCommand cmdCheckID; SqlDataReader dtrCheckID; foreach (DataGridViewRow r in dataGridView1.SelectedRows) { string PONO = r.Cells[0].Value.ToString(); string DeliveryDate = r.Cells[1].Value.ToString(); string … | |
When I click the Submit Button in a form it should check whether 6-7 textboxes,2-3 pictureboxes nd combobox which resides in that form should not be empty..? How it is possible in Short to provide this validation..??? | |
Hello, I am working on a program where I need to be able to send a file over the network to another computer. I would like to have a sort of system setup where each computer that is running my program will show up in an "address book" of sorts, … |
The End.