- Upvotes Received
- 14
- Posts with Upvotes
- 14
- Upvoting Members
- 13
- Downvotes Received
- 6
- Posts with Downvotes
- 4
- Downvoting Members
- 6
125 Posted Topics
Re: use [CODE]int vote;[/CODE] in place of [CODE]char vote;[/CODE] | |
Re: Show your code here with enough detail about your project, so that some help you in better way. Although I give some idea You have to write code in combobox text change changed event your selected statement some thing like this [CODE] Dim cmd As New OleDbCommand cmd.commandtext="select * from … | |
Re: Your question is not so clear to me anyway as I understand your problem, basically you want to compare the value of text box and name of your text box are [CODE] 1. txtPassword 2.txtpwdconf [/CODE] if I am right till now then then look at your coding at line … | |
Re: You forget to add lbl1 to groupbox [CODE] GroupBox2.Controls.Add(lbl1) [/CODE] and every thing is fine in your code just hide the location of you the label may be because of that label is not visible to you but the control is added to groupbox. If you get any problem feel … | |
Re: Did you try first you self then if you get any problem then post your problem with you code, I am sure one here kind enough to help you. | |
Re: check the property for that particular event for example click event of button2 | |
Re: What is this 10 coin puzzle? Please explain in English language, you just post your code no one have that much time to read your code and understand....... | |
Re: Please Re-read your line posted by you then reply if you understand any thing after reading the line. Please post your problem clearly with your work (code) what every you try till now | |
Re: On which compiler are u using? | |
Re: @ geneh23 What you copy and from where? If you try to copy the password from the database, then it will not work because of this line [CODE] $password = md5($password); [/CODE] do know the function of [CODE]md5()[/CODE]. try by removing this function first. I hope it will help......... | |
Re: As [B]hericles[/B] suggest database is not a issue you can use either MS SQL server or MySQL. Your question is that when we have to close the connection, as my knowledge .Net frame provide the facility of disconnected database, until you perform the update process your connection just after completing … | |
Hello Actually I have to print Report from php and iam using this code [CODE] <?php $handle = printer_open("Microsoft XPS Document Writer"); $handle = printer_open(); ?> [/CODE] bt iam getting following error Fatal error: Call to undefined function printer_open() in C:\xampp\htdocs\praveen\printer.php on line 2 what i have to do next … | |
Re: please send your code............so that any one can help you in better direction | |
when I click on any button on my page it start refresh whole page and reload it why ? can any help in this............ | |
Hello Genius I want develop a software which user can download from my website and that software must me use less after specified period, Can any one guide me in right direction what's the logic I have implement to accomplish this task. Thanks | |
Re: One which I use in my project is by using crystal report. Crystal report provide you a facility to export your report in excel format. | |
Re: First thing You have to declare every variable before using it, so you have to define the [B]score[/B] [CODE] float score; [/CODE] Second why you use character array no need of this just use simple character variable [CODE] char grade; [/CODE] no need of this declaration [CODE] int A, B, … | |
Re: As I understand Your, you like to send value of text to textbox of other form. go to the designer of the destination form and find the code for text change the access specifier from [B]private[/B] to [B]public [/B] Now [CODE] //create object of destination form2 f =new form2; f.textbox.text="Your … | |
Re: [CODE] while(((def+mid+fwd)!=10) ||( style!="contain" && style!="defensive" && style!="counter" && style!="standard" && style!="control" && style!="attacking" && style!="overload")) [/CODE] Use this condition, I think it will work for you, if I understand your problem correctly. | |
My problem is that I have to send my textbox data to crystal report, i am trying a lot but iam not getting I know how to use crystal though database. Thanks | |
Re: Please read the concept of function and what the function of return. return is use within any function to return a single value to a calling function in your main.Either you use array to return multiple value or call the max by using loop for every row from you main … | |
Re: Please make clear your problem, which some meaning your word is not give us any clear meaning. | |
Hello to all Actually I am on web project with html and java script and my problem is that I have send feed back form as E mail, is there any though which can I send My feed back as an email without using php or asp because I know … | |
Re: line number 17 [CODE] scanf ("%d", &nums[i] ); [/CODE] no need of this scanf, you have too use this [CODE] nums[i]=diff; [/CODE] if i understand ur problem then it will help u otherwise please explain your problem ......... | |
Re: Please send enough code .............I mean to say send class as well For better help. In this code every thing is correct or may i cant able to find out so please send full source or enough to get help | |
Get_Number function is a function to get input from keyboard, this function restrict the user to pass wrong input........... How to use -> For example we need to take input in any integer variable n call Get_Number() like this [CODE] n=Get_Number(); [/CODE] With Full Back Space support Please comments on … | |
Re: Check [URL="http://www.java2s.com/Tutorial/VB/0100__Date-Time/0060__Date-Functions.htm"]http://www.java2s.com/Tutorial/VB/0100__Date-Time/0060__Date-Functions.htm[/URL] and try to write your code according to this, if you get any problem then post here for more help with your work........... | |
Re: Its depends on your form, if your form is startup form of project you can use hide method otherwise you can use close method. If your form is startup form and you use close method then you project is closed. | |
Re: [CODE] Do Until (strUsername) = "Mary" And intPassword = 1234 ' This Is The Loop counter += 1 ' Counter Increments by 1 'If the counter is greater than 5 popup message box and close program If counter > 5 Then ' Show Message Box Is Details Are Entered Incorrect … | |
Re: [CODE] void genAnswer(onedQuestion &inanswer) { inanswer.getAnswer(); inanswer.printAnswer(); } [/CODE] getAnswer() function return the value ay adding the operand but you did't store into the ianswer variable and secondly use same name for member variable as well as object which is not good try to eliminate this first | |
Re: I cant understand your question..........any way In an programming there is two thing first you have to clear logic and then you have to convert your logic into code. If you have clear your logic then try first your self otherwise explain your question with example to get better help | |
Re: So, its your all right but where is your problem? you did't define your problem and your work please show both | |
Re: [CODE] int x,y,x1,y1,i; x1=y1=x=y=0; i=1; int ar[3][3]; clrscr(); while(i<9) { while(x<2-x1){ar[y][x++]=i++;} while(y<2-y1){ar[y++][x]=i++;} while(x>x1){ar[y][x--]=i++;}x1++; while(y>y1){ar[y--][x]=i++;}y1++; ar[1][1]=9; x++;y++; } [/CODE] Check it out | |
Re: IF you close the first it will close your project. Hide your first form instead of close [CODE] this.hide(); [/CODE] | |
Re: Exactly what you try to I cant understand you problem can you explain your problem | |
Re: I think there should be a miss match off datatype, if your Empid is a string type so it must be in single quote [CODE] string query = "Update Employee set Salary="+salary.Text+"where EmpID ='"+GridViewemp.SelectedDataKey.Value.ToString()+"'"; [/CODE] I hope it will help you | |
Re: Why not you try getch(), getchar() always wait for enter key to be wait [CODE] int c; while ((c=getch())!=0) { if(c!=32 && c!=9 && c!=13 && c!=46 && c!=44 && c!=59 ) putchar(c); else putchar('\n'); } [/CODE] Hope it will be work for you other wise feel free to ask … | |
Re: Can you explain what you try and where you get the problem with code so that I will help you in batter way. | |
Re: Change the datatype in your database to TEXT and make the following changes to your code logic behind this code is that, you just extract the integer part from your id and increase one to it with initial S [CODE] if (reader.Read()) { if (reader.GetValue(0) == DBNull.Value) id ="S1"; else … | |
Re: post your code to get better help from here | |
Re: Multi dimensional array is collection row and column. Its all upon you how would like manage your both array in single multi dimensional array, I mean to say row wise or column, how would you like to create array at run time or static. | |
Re: Search this on google you lots of post regarding login form | |
Re: Its not the way to post your code, use code tag to post code Code for select statement [CODE] SELECT Table1.number1, Table1.datetime1 FROM Table1 WHERE (((Table1.number1)=1) AND ((Table1.datetime1)>#1/1/2001# )And (Table1.datetime1)<#1/1/2002#); [/CODE] Its an example to query about date and other filed both are working at same time. You the if … | |
Re: whats your problem? | |
Re: [URL="http://discuss.itacumens.com/index.php?topic=53396.0"]Click Here[/URL]to check the turiturial of date and time function | |
Re: [QUOTE][B]Orignally posted by GregMaClean[/B] How to Enable TextBoxes when specific text is entered? According to me, your code should work... If you could post more or the whole sub, then I could see it better. As to your question about "scanning" the text box, simply use the TextChanged event procedure. … | |
Re: Every thing is look like Correct accept you miss the single quote (') so change your line number 15 to this [CODE] SQL = "SELECT * FROM tbl_Stock WHERE Product_Number = '" & SelectedProduct & "';" [/CODE] I hope it will work fine for you Best Of luck | |
Re: There are lots of issue in your project, 1.First you have get the from your database to combobox 2.Second thing get the selected value from database 3.Then save the value back into database So, if think anyone is to Give copy paste option then forget that you have mention specific … |
The End.