-
Replied To a Post in Using JQuery or JavaScript to Obtain Default Behavior in a Form
Well for one thing, your second SELECT is missing the opening tag around the options. I'm not exactly sure what you're asking. If you're wanting to just change the default … -
Replied To a Post in PHP and mysql Upload files
I strongly back up what diafol has said. Right now you're vulnerable to injection attacks. Many folks think that because they can't see POST data that it can't be tampered … -
Replied To a Post in JButton's not adding to JPanel
Does it throw any errors when you compile? Or simply doesn't display? -
Replied To a Post in PHP options calculator type script
PHP can do what you want, as long as you don't mind refreshing the page to calculate the answer. Most would say that's a deal breaker, so use javascript as … -
Marked Solved Status for background image fade to transparent?
Title pretty much says it all. I want a background image to have a linear gradient fade to transparent. I've faded the image out to a color by overlaying a … -
Replied To a Post in background image fade to transparent?
I managed to work it out this morning after reading about mix-blend-mode, but thanks. https://codepen.io/anon/pen/ZpXLPd -
Created background image fade to transparent?
Title pretty much says it all. I want a background image to have a linear gradient fade to transparent. I've faded the image out to a color by overlaying a … -
Replied To a Post in Putting a String in a Jlabel from a jTextField in another class
> Right there is your problem. Naming conventions Just to add to what fredy is talking about, every language tends to have a standard way of naming things, whether official … -
Replied To a Post in Deque program project
This isn't a place for people to do your homework for you. Try it yourself, then if having trouble ask a specific question. -
Created offset anchor position
I have a fixed header followed by a list with various anchor tags. By default, the anchor will jump to the top of the browser. I need to offset this … -
Replied To a Post in get a pseudo-element created from css before selector
That only demonstrates what the code already does. I need to change the text of "Select an image" to the name of the selected file. Basically, how do I select … -
Replied To a Post in If statement problem
I'd put those strings into an array, more efficient doing a simple array lookup than a bunch of IF statements. `echo do_shortcode(codes[get_the_ID()]);` My guess is that you're getting that banner … -
Replied To a Post in password recovery
Where's your code for sending the email? Do you have an email server setup yet? Generating a 6 digit pin is as simple as: `$pin = rand(100000,999999);` Store the pin … -
Replied To a Post in How to create simple filter using only CSS
I played around with it for awhile, and I just don't see a way of doing this with pure CSS. You're going to need javascript to change those LI tags … -
Created get a pseudo-element created from css before selector
Doing a custom file upload button like so: CSS: input[type="file"]::-webkit-file-upload-button{ visibility:hidden;width:0;height:0;} input[type="file"]{font-size:30px !important;background:none !important;} input[type="file"]::before{ content: 'Select an image'; display: inline-block; background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3); border: 1px solid #999; border-radius: … -
Replied To a Post in database design questions
I'd say 99% of the contacts will have numbers, but maybe only about 10% will have more than 1. -
Replied To a Post in Minesweeper GUI need help!
You could set the ImageIcon. ImageIcon icon = new ImageIcon("image.png"); JButton button = new JButton(icon); -
Replied To a Post in Best Free Antivirus?
I used Norton (corporate without the bloatware) for a long time until they were very slow to come out with a 64bit version many years ago. I have since been … -
Replied To a Post in which Graphics Card is best for Games?
Which graphics card is best? Usually the newest one. What's typically the best one for most average gamers? The one we can afford. -
Replied To a Post in Do you have a led monitor?
My current monitor is LED because it's more efficient and also mainly because that's what all monitors seem to be these days. My old westinghouse started to fail, it was … -
Replied To a Post in Analyze the following code. and choose the right answer
Sounds like someone is trying to get answers for their homework because they were too lazy to pay attention in class. -
Replied To a Post in change jframe style
Looks like the Nimbus look n feel. To change the look and feel, read here: https://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/index.html -
Replied To a Post in Store image path to DB with PDO
Hijran, you can't send the redirect header when you've already outputted text to the page. And create a new thread next time instead of hijacking someone elses. Jason, I'm uncertain … -
Created database design questions
I'm making a kind of address book thingy and seem to have confused myself on the best way of organizing the tables. At the moment, I have two tables, Contact … -
Replied To a Post in JComboBox Table Cell Editor - removing items
Sounds tricky, but here's my first thought. Add a listener to the combo boxes. When a value is selected from one of them, retrieve a list of the other combo … -
Replied To a Post in Java Gui...
For starters, read up BorderLayout. -
Replied To a Post in working with JList
Sorry I worded that wrong. By overriding the Person toString to display what she wants in the JList, you can remove the need for a custom renderer. (depending on how … -
Replied To a Post in BlueJ - How do I print strings from subclasses?
BlueJ? Are schools seriously still using that? -
Replied To a Post in How can I gnerate random PPS Numbers in Java?
I looked up PPS on wiki to see how it is calculated. Once the proper number is calculated, you can simply cast it to a char to match it up … -
Replied To a Post in layout manager, which one?
For reference, this will help you learn about layout betters: http://docs.oracle.com/javase/tutorial/uiswing/layout/index.html -
Replied To a Post in Java Program Help....
**st** is a linked list, not a string. Anytime you output an object like that it's going to use its default toString() method. You can either extend the LinkedList class … -
Replied To a Post in Rich TextBox in java in netbeans
You'll need to use JEditorPane, that can support RTF formatting. But as far as I'm aware, it doesn't support tables. You'd have to write your own custom editor/renderer. Or you … -
Replied To a Post in working with JList
> I've managed to display all the deatiles of the person i the JList , but I only want the id and name to display The concept is the same, …
The End.