- Strength to Increase Rep
- +14
- Strength to Decrease Rep
- -3
- Upvotes Received
- 417
- Posts with Upvotes
- 367
- Upvoting Members
- 207
- Downvotes Received
- 21
- Posts with Downvotes
- 19
- Downvoting Members
- 14
Re: I don't think this forum would suite what you need. What database management software are you using? What web frame work are you using? It is not all about web page but there are other hardware & architecture involved... | |
Re: Try to add before line 25 but outside the while loop `out.closeEntry();` and see what happen? | |
Re: Are you using Turbo C++ format??? The `#include<iostream>` should not have `.h` in there. The same applies to the next line. PS: Next time, please include the exact ERROR MESSAGE you saw from your compiling process... | |
Re: @Ahmad_10, please create a new post instead of pull a very old post up. If you want to disable view source from a browser menu, you will have to force open a new window with menubar/toolbar disabled. However, it is still defeated easily if the person really knows how to … | |
| |
Re: @murali, have you tried hard-refresh your page? Sometimes, browsers cache the CSS and will not apply new changes from the CSS. Hard refresh (Shift+F5) would force them to rerender again. | |
Re: You may need [a loop](http://dev.mysql.com/doc/refman/5.0/en/loop.html) in order to accomplish what you are trying to do... | |
Re: I don't know what "look good" to you and what not? Also, it is odd to me that people like to use "#" and assign ID to elements. That's not what style is intended to be in my opinion. It should be "class" instead of "id" for styling even though … | |
Re: What you don't understand about the code? The method names explain themselves about what they are doing. Could you pinpoint more about which part of the code you don't understand? | |
Re: You can do it via Servlet in the 'doGet()' or 'doPost()' method depending on how you implement your Servlet. If you implements 'doPost()' to call 'doGet()' (which is usually the way it is), then you just need to do it in 'doGet()' by obtaining the value of the parameter from … | |
Re: How did you implement it? Also in which class did you implement the method in? | |
Re: Look at line 51, copy that line and insert it right below the line 51. Then change the value from 'txt'+suf to 'txtt'+suf. Assumming that you have created the expected input field in your HTML. I hope you learn how to do it from his/her script (JavaScript is not a … | |
Re: Hmm... Your database tables don't look like or at least the column name doesn't look like. What is `resinvent` table for? Is it a reservation or is it a room available table??? | |
Re: @moseshenry That's not what this forum for... You should read the forum rules before you post the code like that... | |
Re: OK, you have not shown what you have in your class's variable. From what I look at your code, I am assuming that you have your class declared as followed: [CODE] class YourClassName { private Node head; private Node tail; public YourClassName() { head=null; tail=null; } public YourClassName(Node newNode) { … | |
Re: 4+ months old thread from the previous reply post (above mine)... By the way, non-sorted 2D array with nxm will have O(nxm) because you have no uniform rule to search, so you would try to look through the whole array. Average case to me is still O(nxm)... For a sorted … | |
Re: What did you use to retrieve texts from PDF files? And what is the format of the results? Did you read PDF file using JavaScript or something else? | |
Re: How about forgetting the code for a second. Let's talk about how to achieve the requirement first. How do you deal with checking for the same character in a word? Well, there are steps to solve the problem. 1. You need to be able to iterate through each character in … | |
Re: Also, which compiler are you using? There are many flavors of assembly language... | |
Re: Your second loop is not correct. [CODE] for (int dig= 1; dig <= 2*row-1; dig++) {} [/CODE] You may need to break this loop into 2 loops instead. Once is to print from the 'col' value down to 1, and the other print up from 2 up to 'col' value … | |
Re: Quick questions... MyDataBaseManager dbManager = null; JdbcTemplate jt = null; public DAOBook (MyDataBaseManager dbManager) { jt = dbManager.getJdbcTemplate(); } Do you intend to accept `MyDataBaseManager` in your constructor? How did you implement the method `getJdbcTemplate()` and how the method deals with exception? Why do you need another member variable for … | |
Re: An `Invoice` object? It has to match the argument type in your method declaration -- `public bool ProcessInvoice (Invoice anInvoice) {...}`. | |
Re: Just a quick suggestion to you if you really want to use Excel as your database (and also input & report). 1. You should create a sheet containing all items and their extra/meta info instead of have them all in a column inside transaction sheet. This sheet would become your … | |
Re: You need to set `z-index` in CSS to be higher than the image you want to overlay. IIRC, the default z-index value for all HTML objects is 0. Add something like `z-index: 99` to your CSS and see what happen. | |
Re: There are 2 dependent events in your fading -- decreasing/increasing value of opacity and the time interval. In this case, it looks like your time interval of animation is not smooth enough. What is inside `requestAnimationFrame()` function? If you are using `setTimeout()` or `setTimeinterval()`, then make sure that the sleep … | |
Re: One easy way is to use [sqoop](https://docs.datastax.com/en/datastax_enterprise/4.5/datastax_enterprise/ana/anaSqpExport.html). | |
Re: Check your line 73, you are assigning value (using `=` instead of `==`) for 2 conditions checking. Fix that and see how it is going to be. | |
Re: I'm not sure what you really want here. Would an employee can have multiple fabric bundles and a fabric bundle can belong to multiple employees (many to many)? If so, what you need is `has_and_belongs_to_many :employees` keywords in `fabric_bundle` model and `has_and_belongs_to_many :fabric_bundles` in `employee` models. Then do a db … | |
Re: Because the value of radio button is not set (index), the PHP throws an exception. You may need to check whether the value is set first using [isset()](http://php.net/manual/en/function.isset.php). That way, you would be able to properly set a default value or display error message. e.g. $gender = "Unknown"; if (isset($_POST["gender"]) … | |
Re: OK, Scheme language is a bit similar to Lisp but not quite. Thus, you SHOULD think of a solution in recursive. You should never try to solve a problem using iterative function. The language deals best with list type data, so you should convert your integer to a list. It … |