IT seeker -2 Light Poster

i have made main page in which there are categories(casual, partywear,bridal dresses)
i have give link on these catogories to open in seprate pages.

i will make database for it, but i have diffrent size of images that is main problem can they set on sql or i should use adobephotoshop for size them??

secondly where to write code of sql connection n query for reteriving data??

for example for casual dresses where to write code that images appaear in casaul.php

IT seeker -2 Light Poster

my work is stop here dont know how to do this

i want to store numbers of images in mysql. after thar i want to reterive those products images with description and price. how it will be done?

secondly if i click on category number 1 those images with detail should be appear how those images will appear in a sequence???
plsease help me out

if possible than plz give me example

thnx alot

IT seeker -2 Light Poster

hope u will be fine .. i need help on shopping cart n money transaction in boutique website.. but i have no idea how to set up the cart?

i thought to use alert pay .. but no idea how it will be use in my site

so guide me

IT seeker -2 Light Poster

i am making my final project ov ONLINE SHOPPING boutique . i want to add ALERTPAY account for transaction in my site . means customer who wants to purchase can transfer money through ALERTPAY... i m very confused that what is the method for it? or only mention ALERTPAY is enough..........?

plz guide me... suggest some website which can help me

IT seeker -2 Light Poster

Exception Handling

in which no error and no warning appear , a yellow box point out the specefic line....

i only know this .............

IT seeker -2 Light Poster
(reader.Read())ecxeption come on this line 
            {
 
                label1.Text = reader[0].ToString();
                radioButton1.Text = reader[1].ToString();
                radioButton2.Text = reader[2].ToString();
                radioButton3.Text = reader[3].ToString();
                sa = reader["sa"].ToString();
            }
        }
 
        private void button2_Click(object sender, EventArgs e)
        {
            MessageBox.Show("your score is" + score);
        }
    }
}

plz solve it

IT seeker -2 Light Poster

i write the following code . but eception comes at "reader.reard".. 1st question retrive but when i click on next button it give exception..plz check it

public partial class Form1 : Form
    {
        SqlDataReader reader;
        public Form1()
        {
            InitializeComponent();
        }
        string sa = "";
        int score = 0;
        RadioButton rdanswer = new RadioButton();

        private void Form1_Load(object sender, EventArgs e)
        {
            string constring = "Server=TAHIRA-7B0ECEAE\\SQLEXPRESS;integrated security=SSPI;database=stu";
            SqlConnection conn = new SqlConnection(constring);
            conn.Open();
            string Sql = "select * from Table_1";
            SqlCommand cmd = new SqlCommand(Sql, conn);
            SqlDataReader reader = cmd.ExecuteReader();

            if (radioButton1.Checked == true)
                rdanswer = radioButton1;
            else if (radioButton2.Checked == true)
                rdanswer = radioButton2;
            else if (radioButton3.Checked == true)
                rdanswer = radioButton3;

            if (rdanswer.Text == sa)
                score++;
            if(reader.Read())
            {
                label1.Text = reader[0].ToString();
            radioButton1.Text = reader[1].ToString();
            radioButton2.Text = reader[2].ToString();
            radioButton3.Text = reader[3].ToString();
            sa = reader["sa"].ToString();

          
        }
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if (radioButton1.Checked == true)
                rdanswer = radioButton1;
            else if (radioButton2.Checked == true)
                rdanswer = radioButton2;
            else if (radioButton3.Checked == true)
                rdanswer = radioButton3;

            if (rdanswer.Text == sa)
                score++;
            if
            (reader.Read())
            {

                label1.Text = reader[0].ToString();
                radioButton1.Text = reader[1].ToString();
                radioButton2.Text = reader[2].ToString();
                radioButton3.Text = reader[3].ToString();
                sa = reader["sa"].ToString();
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            MessageBox.Show("your score is" + score);
        }
    }
}
IT seeker -2 Light Poster

yeah i wanti to show here but when i "print screen"and paste in paint for screen shots... that did not upload here becoz of page size ...

any other method...

IT seeker -2 Light Poster
public void LoadQuestion()
{
radioButton1.Checked=false;
radioButton2.Checked=false;
radioButton3.Checked=false;
if(reader.Read())

..... to do in property window nad to write the code as above are same or differnt impact on OUTPUT .. because i do that in property window of radiobuttons it blank all the buttons but when we want to select any option it did not marked ... that's why im asking ...

IT seeker -2 Light Poster
radioButton1.Checked=true;// with every question the radiobutton 1 will be selected

with every question radiobutton1 should not be slected ... ... there must be appear blank or any other radiobuuton should be slected

IT seeker -2 Light Poster
radioButton1.Checked=true;// with every question the radiobutton 1 will be selected
IT seeker -2 Light Poster

i makinh MCQs question as my mini project in windows form application i m facing few problem plzz solve that

1. to count the score of total correct question and show at the last in windows form

2. when i selct any option(radiobutton) then next question appears with same number of option as marked e.g if i selct option 2 in 1st question then 2nd question 2nd option appears as selected .. i wanted that options appears randmoly or blank.

private void Form1_Load(object sender, EventArgs e)
{
string constring ="Server=TAHIRA-7B0ECEAE\\SQLEXPRESS;integrated security=SSPI;database=MCQ";
SqlConnection conn = new SqlConnection (constring);
conn.Open();
string Sql = "select * from table_1";
SqlCommand cmd = new SqlCommand(Sql,conn);
SqlDataReader reader = cmd.ExecuteReader(); 
[B]Int score= 0;[/B]
while(reader.Read());

label1.Text=reader[0];
radioButton1.Text=reader[1].Tostring;
radioButton2.Text=reader[2].Tostring;
radioButton3.Text=reader[3].To.string;
[B]if(radiobutton1.checked=true)
{
score +1;
}
cmd.ExecuteNonQuery();

it must count score ov all question.. in which button i ve to code

IT seeker -2 Light Poster

i think so ur only counting my post. not others people who r also posting here for help. if u people have not abilty to learn others then u can only say that we have time to abuse others ..

IT seeker -2 Light Poster

1.write a progrm to initilize the integer, double and character type values in an array and then print their values on the sacreen?


2. write a program to calculate the average of n number&then compute the deviation of each number about the average


3.write a program to multiply a 5 * 5 matrix


solve these plzz these are initial programs of arrays n i want to learn it from beginning

IT seeker -2 Light Poster

what is the code of ms office in c++??//

IT seeker -2 Light Poster

my qustion is why u use switch and break statments ????/

kindly explain

IT seeker -2 Light Poster

i need help on funtions throughout,

i want to take lecture on funtions .

theory then practicle.......

so plzz help me

IT seeker -2 Light Poster

how can we make softwares or games with c++. i ve listned that we can make softwares , games by progrmming ,
but how i read in a book that u can make calculator but how we type program in compiler and the output is shown .

my question is

when calculator is ready in compiler how can we use it in our pc. or anything else..........

IT seeker -2 Light Poster

c++ programing by D. S MALIK IS also good book

IT seeker -2 Light Poster

which c++ compiler is easy n best? i want to download...........

guide me......

IT seeker -2 Light Poster
#include <iostream>
using namespace std;
int main()
{
int note10,note50,note100;
cout<<"enter the withdrawn ammount"
cin>>amount;

(what is next step ?

IT seeker -2 Light Poster

ok i understand . first i ll try thank u

IT seeker -2 Light Poster

progrmming statments r difficult for me i dont know what i ve done in this progrme there r many but here it is

a cashier has currency notes of denomination 10,50,100. if the amount to be withdrawn is input through the keyboard in hunderds, find the total number of currency notes of each denomination the cashier will have to give the withdrawer??

n what do u mean by provide code??

IT seeker -2 Light Poster

yeah i dont want to learn anything by cheating but i m nothing in progrmmaing i can make simple progrmas and in my book there r difficult question would u plz teach me i want to learn therefore i ve joined this forum, so tell me when u ll start to learn me ???????? i m wating

IT seeker -2 Light Poster

salam, hope u people ll fine , any body have solved excercises of CHAP 2, CHAP 3,CHAP4 AND CHAP 5 BY D.S AMLIK book i need these urgent so kindly help me my exams r very near n i w ant to prepare them

Ezzaral commented: Do you think work in the real world has solution manuals? -2
IT seeker -2 Light Poster

i dont know when we use for loop, while , and do while , is there specific sitution when we use these.n our teacher learn us for this output a b c d e f g h i j k l m n o p q r s t u v w x y z.

for(int i=65;i<=90;i++)
cout << static_cast <char >(I)<<"  ";

here my qustiion is why we use this for(int i=65;i<=90;i++)statment for a b c d e................ make me clear plz

IT seeker -2 Light Poster

sorry for late sqrt function
i know this because it was hint given in qustion in D.S malik book

IT seeker -2 Light Poster

actully im new, thanx for it . solve very 1st statment of my thread starts with a libaray function...........

IT seeker -2 Light Poster

here is statment write c++ statements the include the headerfiles iostraem and string

see i make wrong or right

#include<iostream>
using namespace std:;( i dont know about std so plz explain)
int main()
{
cout<<"a"<<endl
return 0;
}
is it right

IT seeker -2 Light Poster

i ve write statements in sparate thread name "help me in my assignment" tag is pakistan

IT seeker -2 Light Poster

write a program that promts the user to input five decimal numbers the program should then add the five decimal numbers, convert the sum to the nearest intger and print the result?

2.write a progrma that promts the user to input a four digit positive integer the progrmas then ouput the digits of numbers, one digit per line for e.g if the output is 3245 the out put is
3
2
4
5
???

IT seeker -2 Light Poster

till no reply plz help me i ve to submit it tommorow. i need replies urgent

IT seeker -2 Light Poster

yes i ve make seprate theard for statments

IT seeker -2 Light Poster

1.i cant understand the statement and dont know what i ve to do in program like i dont know what r the requirements of statment. like what is 1st step, what is 2nd one n so on.................

IT seeker -2 Light Poster

here is statement from D.Smalik BOOK

1.write a c++ statement that allows you to use cin, cout and endl witout the prefix std::( ub iss program ka syntax kia hoga mujy nahi pata key is mein kia krna hay)

2.write program that declare the following variables;num1,num2.and newnum of type int;name of type string;and hoursworked and wages of type double?

3.write program that promt the user to enter a person's last name and then store the last name into the variable?

( i think so phley inko samjh lun phr agey chaluonn

reply soon plz

IT seeker -2 Light Poster

here is statement from D.Smalik BOOK

1.write a c++ statement that allows you to use cin, cout and endl witout the prefix std::( ub iss program ka syntax kia hoga mujy nahi pata key is mein kia krna hay)

2.write program that declare the following variables;num1,num2.and newnum of type int;name of type string;and hoursworked and wages of type double?

3.write program that promt the user to enter a person's last name and then store the last name into the variable?

( i think so phley inko samjh lun phr agey chaluonn

reply soon plz

IT seeker -2 Light Poster

salam i m new here. i m student of MIT. the basic problem is with that i cant understand the statement of proagram that what i have to do in it. and theoratical i know what is cin, cout, headerfiles etc but not very much. so i ve to submit my assingment on tuesday. so plz help me here ra sum statements and plz taught me how ill u make progrmmas relpy soon as possble..

this is from second chap of object orinted by robert lafore


1.a laibarary funtion, is lower(),takes a single character (aletter)
as an argument and returns a nonzero integer if the letter is lowercase or zero if it is uppercase .this function requires the headerfile CTYPE.H WRITE a progrma tha allows the user to enter a letter and then displayas either zero or nonzero, depending on whether a lowercase or uppercase letter was enterd????/

IT seeker -2 Light Poster

aslmolikum im new member here, hope u ppl ll welcum me warmly, i m student of MIT, im having problems in C++ so i want to learn from here, plz help me out,.....