Posts
 
Reputation
Joined
Last Seen
Ranked #137
Strength to Increase Rep
+14
Strength to Decrease Rep
-3
95% Quality Score
Upvotes Received
417
Posts with Upvotes
367
Upvoting Members
207
Downvotes Received
21
Posts with Downvotes
19
Downvoting Members
14
69 Commented Posts
23 Endorsements
Ranked #54
Ranked #41
~1.22M People Reached
Favorite Tags
Member Avatar for nikk8a
Member Avatar for Sachin_41
0
10K
Member Avatar for Vishurey

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...

Member Avatar for Mark_140
1
779
Member Avatar for imhim45

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...

Member Avatar for Deathstr0k3
0
3K
Member Avatar for Q8iEnG

@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 …

Member Avatar for π™ΉπšŠπšœπš–πš’πš—πšŽοΌˆγƒ€γƒΌγƒͺン)
1
14K
Member Avatar for brodeur
Member Avatar for murali2489

@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.

Member Avatar for Dani
0
2K
Member Avatar for rchawdhari

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...

Member Avatar for M_41
0
266
Member Avatar for Troggs

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 …

Member Avatar for Purvi_1
0
339
Member Avatar for Fasola

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?

Member Avatar for weiwei_1
0
8K
Member Avatar for rajesanthu

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 …

Member Avatar for Sakshi@123
0
3K
Member Avatar for richard.haines.39
Member Avatar for Demonix
0
6K
Member Avatar for wuzere.crewzz

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 …

Member Avatar for Phoenix_2
0
8K
Member Avatar for mirapsm

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???

Member Avatar for Jun_7
0
4K
Member Avatar for qqwushi12345

@moseshenry That's not what this forum for... You should read the forum rules before you post the code like that...

Member Avatar for mohanned_2
0
4K
Member Avatar for wilsonz91

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) { …

Member Avatar for JamesCherrill
0
2K
Member Avatar for rupali

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 …

Member Avatar for jamie_13
2
48K
Member Avatar for Violet_82

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?

Member Avatar for Mohamed_84
0
2K
Member Avatar for Lukas_2

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 …

Member Avatar for tinstaafl
0
469
Member Avatar for Maria_21
Member Avatar for Taywin
0
450
Member Avatar for emmstarr

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 …

Member Avatar for Jorge_12
0
5K
Member Avatar for newbee_jv

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 …

Member Avatar for newbee_jv
0
2K
Member Avatar for PulsarScript

An `Invoice` object? It has to match the argument type in your method declaration -- `public bool ProcessInvoice (Invoice anInvoice) {...}`.

Member Avatar for PulsarScript
0
2K
Member Avatar for Saboor880

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 …

Member Avatar for Taywin
0
317
Member Avatar for Start4me

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.

Member Avatar for Taywin
0
874
Member Avatar for Aeonix

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 …

Member Avatar for ryantroop
0
482
Member Avatar for rchawdhari

One easy way is to use [sqoop](https://docs.datastax.com/en/datastax_enterprise/4.5/datastax_enterprise/ana/anaSqpExport.html).

Member Avatar for Taywin
0
183
Member Avatar for Syed Azadar

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.

Member Avatar for Taywin
0
1K
Member Avatar for rchawdhari

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 …

Member Avatar for Taywin
0
452
Member Avatar for Sujan_1

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"]) …

Member Avatar for Taywin
0
334
Member Avatar for Roger_2

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 …

Member Avatar for Taywin
0
455