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.

~4K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums

12 Posted Topics

Member Avatar for aryan123

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

Member Avatar for johnrosswrock
0
162
Member Avatar for kool005

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

Member Avatar for johnrosswrock
0
249
Member Avatar for ddanbe
Member Avatar for Amanpreet_1
Member Avatar for Amanpreet_1
0
433
Member Avatar for makanda
Member Avatar for johnrosswrock

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(); …

Member Avatar for Member #1094041
0
189
Member Avatar for johnrosswrock

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

Member Avatar for johnrosswrock
0
194
Member Avatar for coolsasuke
Member Avatar for johnrosswrock

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 …

Member Avatar for gusano79
0
341
Member Avatar for Jahanzaib_2

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.

Member Avatar for johnrosswrock
0
185
Member Avatar for johnrosswrock

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 …

Member Avatar for ddanbe
0
135
Member Avatar for johnrosswrock

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 …

Member Avatar for johnrosswrock
0
236

The End.