- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 8
- Posts with Upvotes
- 8
- Upvoting Members
- 5
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
30 Posted Topics
Re: the selector that you are using to calculate the sum should be. $("tbody tr").each(function() { // Search for the cell with the dollar value }); The above code will allow you to traverse through all rows. | |
Re: Can you provide the code you are trying at the moment? | |
Hi guys, I am stuck on my code. I am creating Repeater control dynamically. For some reason i cant really get it to work, Maybe someone can tell where i am going wrong. I have one class name "MultipleSelectCategoryRepeaterTemplate" this class will create the repeater Header, Item and Footer dynamic. … | |
Re: Instead of returning all the fields of the table you are querying, only return the fields you are interested in. | |
Re: Move this line of code at the end of your while loop. number = console.nextInt(); // call this once! | |
Hi, I am trying to import the package com.google.android.gms.gcm.GoogleCloudMessaging into my project. I get an error saying the cannot resolve symbol. Can you please help me. Thanks in advanced. | |
Re: Nice.. I like this. Its well thought out.. | |
Re: Why do you need for loop? Is 'lbCorrectAnswerCount' a label? Why can't you use your code as below? Dim score As Integer = 0 If RbAnswers1.SelectedValue = "A" Then score = score + 1 End If If RbAnswers2.SelectedValue = "A" Then score = score + 1 End If lbCorrectAnswerCount.Text = … | |
Re: try running the query in your database and see it works. ![]() | |
Can anyone point me to tutorials for creating windows services in vb .net? Thanks in advance. | |
Re: Do you have this in your code.. require_once('calendar/classes/tc_calendar.php'); You need to insert the class for the Calender before using it. You can look at this site for more information about how to use the calendar http://www.triconsole.com/php/calendar_datepicker.php ![]() | |
Re: You are getting that error because $a is not declared. Uncomment line 8 on your config.php and see what happens. | |
Re: Does it gives an error? like page not found. | |
Re: Can you try the follow css for your ul li childrens and see if it helps. list-style-type:none; | |
I have PHP scripts inside my HTMl file. I am using Apache. I created a .htaccess file and place it in my root directory of the application with the following as its contents AddType application/x-httpd-php .php .html .htm I want to allow the server to execute the PHP scripts inside … | |
Re: You call javacript function by using this line of code System.Web.UI.ScriptManager.RegisterClientScriptBlock(Page, typeof(Page), "nameOfKey", "yourFunctionName()", true); | |
Re: Since your using the post method for your form.. In your adding.php file. you can get the values of the elements by using $_POST['nameOfYourElement'] Since your checkbox is an array.. you just need to used the following code and it will get the array of checkbox. $_POST['checkbox'] Now you can … | |
Re: You can change you margin of li.abouttext2 to margin: 0px 400px 0px 0px; and it should show the two button at the center of the page. Try that and see if it works | |
Re: Your if statement is not going to work.. You need to execute your Select statement. After you execute that select statement you can try to fetch data from the result set. You can read more about Fetch [here](http://www.php.net/manual/en/mysqli-stmt.fetch.php) $Query = "SELECT NameOfTheDVD`, `Qty` FROM `basket` WHERE `NameOfTheDVD` = ?"; $stmt … | |
Re: Struct does not allow cout Statements. You can read more about it here. http://www.learncpp.com/cpp-tutorial/47-structs/ Your code is also missing the tchar.h library. | |
I have an application that where i have a an Asp textBox and i added TextBoxWatermarkExtender to it. <asp:TextBox ID="txtCellNo" runat="Server" /><br /> <ajax:TextBoxWatermarkExtender ID="TextBoxWatermarkExtender4" BehaviorID="CellNoBehavior" TargetControlID="txtCellNo" runat="server" WatermarkText="Cell No."> </ajax:TextBoxWatermarkExtender> Because i have the page constantly postpage the TextBoxWatermarkExtender Blinds everytime it does a Postback. So i added this … | |
Re: Here is another way you can concatenate the string and int together. // must include sstream library (#include <sstream>) int m = 21; stringstream joinedString; joinedString << "I am " <<m<<" years old."; string result = joinedString.str(); | |
Re: ok. now place both divs (subhead and header) in a single div. such as to have: <div> <div id="header"> </div> <div id="subhead"> </div> </div> This here should work. | |
Re: The reason why you keep getting zero is because the person_data object inside the PEmployee class is never initialize. You need to initialize the variables of the person_data object which are "age" and "name". Then you can use the object person_data to call the respective function to get the values … | |
Re: Am guessing for all does tables that they are different users. All users have the same information such as name, username, password, privilege, email, etc. The privilege column is where you are going to state what type of user he\she is, such admin, franchisor, distributor, seller or purchaser. In your … | |
Re: in line 13 use ofstream instead of fstream. ofstream will allow you to write the file | |
Re: Yes, its better. I see u have "char s" as a parameter. What the reason for the parameter? | |
Re: Just initialize it in a loop. In the constructor you are declaring a new local variable for the constructor named sales. It will also be a good idea of having all your variables for the class being private instead of public. for(int i =0 ; i < QUARTERS; i++) { … | |
Re: ok... i have come up with a solution to your problem. Here in this code it allow the user to enter their password the password entered must have an alphanumeric character and no spaces allowed string password; // stores the password the user enters bool pwdNotAlpha; // stores true if … | |
Re: You can also convert integer to double by using the below statements Integer i = 23; Double num = (Double)i; |
The End.