No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
12 Posted Topics
See this post it is similar to your question [Click Here](http://www.daniweb.com/software-development/csharp/threads/241214/help-with-open-file-notification) edit: Go through the links properly if you don't understand the reply back with your problem
Try this.. SqlConnection Conn = new SqlConnection(Connection_String); SqlCommand Comm = new SqlCommand(Command, Conn); Conn.Open(); SqlDataReader srd = Comm.ExecuteReader(); if (srd.Read()) { textBox.Text = srd.GetValue(0).ToString(); } Conn.Close(); P.S:This just a example change it according to your requirement
Thank you for this program ...i have learnt a lot
Please show your code where you are getting the problem
Thank you all for helping me in completing my collage mini-project //form1 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.OleDb; using System.IO; using Microsoft.Office.Interop.Excel; using ClosedXML.Excel; namespace merge_excel { public partial class Form1 : Form { public Form1() { InitializeComponent(); …
Hello everyone, I have a project which i want to publish but the problem is i don't know how to add my name as the developer in the setup... can anyone tell me how to do that... thanks in advance
could you specify the code
I have a pictude box which i want to load with a map,i know now how toget picture box coordinates and would like to conver it into latitude and longitude. thank you ps: i seached the net but could'nt understand it ,so please be simple as i am a new …
the code : Console.WriteLine("Press Y to run again"); string yes = Console.ReadLine(); is within "do" loop so is considered as local variable for block inside "do" loop and hence would not be recognized outside do loop.Try doing it as tinstaafl sugested.
i am using the following code using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace GIS_assignment { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { } private void pictureBox1_Click(object sender, EventArgs …
Hello everyone,i am new to c# programming and i am making a form app for my collage fest which has following details: 1.name of event(comboBox) 2.name of subevent(comboBox) 3.name of coordinator1(text box) 4.name of coordinator2(text box) 5.name of participent(text box) 5.price(text box) my problem is when any event is selected …
The End.
johnrosswrock