- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 9
- Posts with Downvotes
- 5
- Downvoting Members
- 7
53 Posted Topics
Re: Ok.You have to do this 1- Uninstall processor , fan with heatsink .Clean the past on the processor.it called heatsink past.Now you clean prosessor area by air blour and also Uninstall the Ram and Bios Battery.Now plugin main for 20sec and plugout the main. Importan:- [COLOR="red"]RePaste Prosessor Never Install the … | |
Re: **Ap0ca1ypse's code is perfect for this purpos, but if you don't want to use these code because of troubling keypress Event "YOu Can Use this simple code for Text validation "** private void button8_Click(object sender, EventArgs e) { try { if (Convert.ToInt32(textbox1.Text) < 0) { MessageBox.Show("Please Enter Correct Value !", … | |
Hello Experts Here is my connection string [CODE] string con = "Data source =YS-8462BA359936;Initial Catalog = Schooldata;Integrated Security = True";[/CODE] and my store procedure is [CODE] SqlConnection objCon = new SqlConnection(con); objCon.Open(); SqlCommand cmd = new SqlCommand("Studentinsertadmission", objCon); cmd.Parameters.Add(new SqlParameter("@Studentid",Convert.ToInt32( studentid.Text))); cmd.Parameters.Add(new SqlParameter("@StudentName", firstname.Text)); cmd.Parameters.Add(new SqlParameter("@Image", image.image )); cmd.CommandType = … | |
I want make Dictionary English into Urdu.I already made Hash Table and entered Some Words Pleas Tell me how can i convert English text into Urdu. | |
How Can Transferdata from RitchTextBox to Label with all Formats. i.e RitchTextBox's Text Color ,Font,FontStyle | |
Re: I think Line Numer 38 as **con.open()** and Line number 42 **com.CommandType = CommandType.StoredProcedure;** should be after Parameters it should after line no 40 as below SqlCommand("insertguestinfo", con); com.Parameters.Add(new SqlParameter("@guest_ID",gst_info.Guest_id)); com.Parameters.Add(new SqlParameter("@first_name", gst_info.First_name)); com.Parameters.Add(new SqlParameter("@Last_name", gst_info.Last_name)); com.Parameters.Add(new SqlParameter("@Gender_ID", gst_info.Gender_status)); com.Parameters.Add(new SqlParameter("@Martial_ID",gst_info.Martial_status)); com.Parameters.Add(new SqlParameter("@phone_number",gst_info.Phone_numb )); com.Parameters.Add(new SqlParameter("@email_address",gst_info.Email_address )); con.Open(); com.CommandType = … | |
This is My Code I could not fingur out the code for Next Picture in my array int imagenume; string[] imagepat = new string[imagenum]; private void button3_Click(object sender, EventArgs e) { OpenFileDialog open = new OpenFileDialog(); open.Multiselect = true; if (open.ShowDialog() != DialogResult.Cancel) { for (imagenum =0; imagenum < imagepat.Length; … | |
Re: Send Value from Form1 to Form2 You can use this code In Form1 private void btnsendvalue_Click(object sender, EventArgs e) { Form2 form2 = new Form2(TextBox1.Text +"SurName "+ TextBox2.Text); form2.ShowDialog(); } and in Form2 use this code public Form2 (string text) { InitializeComponent(); label1.Text = text; } Hope this Help You | |
I am Creating Attendance windows form I have two lables 1-current time 2- time i fixed ie 8:00:00am.i want if student came to school before 5 minutes It show message you came before 5minutes and if student came after time 5 minutes late it show student came 5 minutes late … | |
Re: private void Form1_Load(object sender, EventArgs e) { //SQL Connection String Modify with Your Data Source and DataBase Name string con = "Data Source = Flower-PC;Initial Catalog = Schooldata ; Integrated Security = True"; // Create Connection SqlConnection cn = new SqlConnection(con); DataTable dt = new DataTable(); cn.Open();//Sql Conneciton Open // … | |
Re: **A database is a collection of data that is organized so that its contents can easily be access, manage, and update.** | |
Re: Draw a Panel and a Text box and set its property multiline = true in your Form and modify the line no "32" to this.panel1.Controls.Add(txtTemp); Now write loop code in button2_click private void button2_Click(object sender, EventArgs e) { foreach (Control cont in panel1.Controls ) { if (cont is TextBox) { … | |
AoA I am Inserting Data From DataGridview to Sql2005.It Insert Perfectely. The Problem is that when i insert record it alway insert 0 row with my other rows The Code is below try { string con = "Data Source = FLOWER-PC;Database = MYFIRSTDATABASE;Integrated Security = True"; SqlConnection cn = new … | |
How to use c sharp properties and after get value save in sql database. | |
Please tell me deeply about classes and objects My Question are: What is class? Why we use class? How can we use class? what do help class? Please tell me and also tell how can I learn about class? | |
[CODE]i made calculator it works best but it cannot result out when i enter 10*100% pleas help me immediately [/CODE] | |
Please tell me,Why Microsoft choose name operating system (Windows).Please no body reject this question.I know it is not related c#,But it is related IT world. | |
Hello In My Visual C# 2008.Its References has not Direct show in .Net Reference . Tell Me how I can Install Direct show library in c sharp.net | |
Hello Hi when I deploy my project using set up wizard the error show and my deployment set up stopped,Please Help for this Immediately. The Error Is [COLOR="Red"]The following files may have dependencies that cannot be determined automatically, Please confirm that all dependencies have been added to the project C:\windows\system32\wmp.dll … | |
Please tell me how to make flash player in c sharp.I have no Idea.Please tell me about to flash in c sharp 2008. | |
I have a form of c sharp, In winch I have Five Button.I want hit all buttons one by one dynamically. Please send me complete Code of c sharp. | |
Hello All I just made a simple media player in c sharp.My code is [CODE]axWindowsMediaPlayer1.ContainingControl.BackgroundImage = Properties.Resources.Image1 ;[/CODE] But it is not working..................Please tell me. Thanks Advance | |
Hello,This is my code.I have in big problem anyone have a solution. I want view crystal Report by using studentid. [CODE] { CrystalReport1 objRpt; objRpt = new CrystalReport1(); string con = ("Data source =DATA;Initial Catalog = Schooldata;Integrated security = True"); SqlConnection objCon = new SqlConnection(con); // Here I am writing … | |
Please tell me "I am Using c Sharp window form and crystal Report" I want Display the record User input windows form.i.e If user Input in textbox CustomerID 1.It should show the record in crystal Report only Customer Id 1. | |
Re: [CODE] SqlConnection connect = new SqlConnection ("Data source =YS-8462BA359936;Initial Catalog = Schooldata;Integrated Security = True"); SqlCommand command = new SqlCommand ("select Picture from Picturestable where Studentid=@id", connect); command.Parameters.Add("@id", SqlDbType.Int).Value = txtstudentid.Text; SqlDataAdapter dp = new SqlDataAdapter(command); DataSet ds = new DataSet("Picturestable"); byte[] MyData = new byte[0]; dp.Fill(ds, "Picturestable"); DataRow myRow; … | |
I have two text box [COLOR="Red"]Textbox1[/COLOR]and [COLOR="red"]Textbox2[/COLOR] and [COLOR="red"]button1[/COLOR] textbox1.text = 1; textbox2.text = 0; Now I want when I click on button1.textbox2's data increment. this is my code [CODE]for (int i = 0; i <= 5; i++) { textBox2.Text = textBox1.Text[i].ToString(); }[/CODE] | |
I have a database [CODE]LastBalance,AdmissionFee,ClassFee,Total,Received,Balance[/CODE] Please tell me how can i get [B]Last Balance[/B] from sql server | |
I have a Textbox named txtage.text.Now I want When Insert in txtage.text as 30/12/1980. disable tabindex.and messagebox show "You can not give admission".If Insert in txtage.text as 30/12/2005. Enable Tab index .its mean student 's age must be 6 year not greater nor less. | |
Hello All Experts Please tell. Can I use Microsoft Excel Sheet in c sharp as addition of Students Monthly fee And save it in SQL Server ? | |
Re: Name Space [CODE]using System.Data.SqlClient;[/CODE] Connection string [CODE]connString = "Data Source = .\SQL2005;Initial Catalog= lianpiaudatabas;Integrated Security = True"; try { DataTable objDT = new DataTable(); SqlConnection objCon = new SqlConnection(conn); objCon.Open(); SqlDataAdapter objDA = new SqlDataAdapter("select * from Table1 Inner join table2 on Table1.table1ID=Table2.Table2ID ",objCon); objDA.Fill(objDT); objCon.Close(); this.dataGridView1.DataSource = objDT; } … | |
I want get data from database SQL with ADo.net connection string in three text boxes by studentid. 1- studentid int (Textbox1.text) 2-Studentname varchar(50) (Textbox2.text) 3-StudentAddress varchar(100) (textbox3.text) --------------------------------------- when i insert Studentid. All data get automatically in others two textbox. How Can I Do It? Please Answer as soon as … | |
Re: [COLOR="Red"][B]Useless mean is demo version [/B][/COLOR] | |
I have a database in which customerid CustomerName 1 ------------- Yousaf 2 ------------- Aslam 3 -------------Manga 4 ------------- ABC ================================================= Now I want Count customerid Row. How can i do it In SQL SERVER I write the query [CODE]Select Count(Customerid) from studentinfo [/CODE]And I get Total Customer. [B][COLOR="Red"]I want display … | |
What is Wrong in this code [CODE]Select * from Studentinfo Inner Join Admission On Studentinfo.Studentid= admission.studentid where Studentid= '1'[/CODE] Please Help as soon as Possible | |
Hello any one can help me ?i have no idea data normalization .I want make software in c# "School Management System ".This is my Data Please normalize this. ------------------------------------------------------------------------ Student Name Roll Number Class Section Date of admission Fee Per Month Result Ist Term 2nd Term Final Term Admission ID … | |
Re: please try [CODE] private void finish_MouseClick(object sender, MouseEventArgs e) { Form1 form1 = new Form1(); form1.Show(); this.Hide(); [/CODE] | |
I want Picture show (image viewer)and this code is not working Please Help [CODE] PictureBox[] arrpic = new PictureBox[5]; arrpic[0] = pic1; arrpic[1] = pic2; arrpic[2] = pic3; foreach (PictureBox pb in arrpic) { picshow.Show(pb); } [/CODE] | |
When i click button an I always get an Error that[COLOR="Red"]An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: Named Pipes … | |
Please help me how can i creat a class and use in windows application for Studen Result card .[COLOR="red"]I want type below code in class and want to use in windows application for student Grade [/COLOR] [CODE] private string MethodGrade(float Avrage) { string Grade; if (Avrage > 91) { Grade … | |
Re: Mostly this problem haven in monitor data cable .first you check deeply your monitor data cable if it is OK,then problem is in monitor chassis.the you can adjust color by using the system Red,Green,Blue color .Decrease green color of your monitor | |
Re: 1- Boot System in safe mode when desktop appear click yes if any message come.then click Start ,All program,Accessories, System Tool and click Restore.When Restore Form appear click next and click Previous date Which is highlighted and click Next.Your system will restore your all previous setting after reboot the system … | |
Hello I want make mini word.but here is big problem within.........The problem is that,when i save my file ,it save.But its encoding does not save.For Example: I type some line as font size =30 and save it but next time when i open it. It open default size as =10. … | |
I am trying to create a text editor and I thinking to have a horizontal ruler on the top so the user can set margins top bottom left right as desired. | |
Can anyone tell me how to make game in c#.if any one please send me source code Thanks | |
Re: if You want close two form and show the first one try with this [CODE]private void button1_Click(object sender, EventArgs e) Form1 frm1 = new Form1(); Form2 frm2 = new Form2(); Form3 frm3 = new Form3(); frm2.close(); frm3.close(); frm1.show(); [/CODE] YousafC# | |
| |
i make a string array and want to show in message box,but it does not working properly [COLOR="Red"]Help Me what is wrong [/COLOR] [CODE] private void btnarray_Click(object sender, EventArgs e) { string[] myname = new string[2]; myname[0] = "Shahid"; myname[1] = "Hussain"; MessageBox.Show(myname.ToString()); }[/CODE] when message box show error show … | |
[COLOR="Red"]i want make office repairing software in c# suggest me what i do [/COLOR] [COLOR="Green"]Yousafc#[/COLOR] | |
Please tell me ,that how can i give dynamic effect of my application form. i want see my application very beautiful.Please tell me how can i do so . | |
can i make myself simple game in c#. if yes then please[COLOR="Red"]send me code[/COLOR] for [COLOR="[B]red"]Tic Tac[/B] Toe[/COLOR] |
The End.