- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
26 Posted Topics
Re: are you trying to make some wrap page with opacity? why not try use jquery instead. easier to applied and a lot of other effects that you can use or implement. | |
Re: Some other might do it "automatically" by adopting other code from other well-known developer. I develop my own simple code in javascript that I attached in my page to solve your issue that used to be mine. [CODE] <script type="text/javascript"> function setContPos() { //get client screen resolution var docWidth = … | |
Re: Basically whatever it is that you wrote on "main layer" will be inherited to all its sub-layers. e.g: HTML code: [CODE] <div id="container"> <div id="content"> Some text that are supposed to be on top of a "rather transparent" background </div> </div> [/CODE] CSS code: [CODE] #container { background-color: #ffffff; /* … | |
Re: In my opnion, there's no right or wrong in drawing an ER diagram. It will all be based on your understanding toward the case and requirements that you are facing. So why don't you start by listing your requirements in points. From there you can analyze what are the objects … | |
Re: maybe you can try this one. hope it helps add to your HTML command: [code]<script type="text/javascript" language="javascript1.2">installTable(tableID);</script>[/code] Javascript: [code=javascript] var markerHTML = "<>"; var minWidth = 100; var dragingColumn = null; var startingX = 0; var currentX = 0; function getNewWidth () { var newWidth = minWidth; if (dragingColumn != … | |
Re: [CODE] <a href="location to go to here" [COLOR="Green"]onmouseover="document.NAME.src='changed-picture'" onmouseout ="document.NAME.src='orig-picture'"[/COLOR]> <img name=NAME src='orig-picture'> </a> [/CODE] you need the ".src" as it is the property of the image object, that allows you to declare your image file. [CODE] ... [COLOR="Red"]onMouseOver="/pix/smile.gif" onMouseOut="/pix/nosmile.gif"[/COLOR]> <img src="/pix/nosmile.gif" width="100" height="100" border="0" name="jack"> ... [/CODE] codes highlighted … | |
Re: please to this links to help u have a better understanding [URL="http://en.wikipedia.org/wiki/Java_%28programming_language%29#Notes"]Java[/URL] [URL="http://en.wikipedia.org/wiki/C_Sharp_%28programming_language%29"]C#[/URL] [URL="http://en.wikipedia.org/wiki/C%2B%2B"]C++[/URL] in my personal opinion, those languages are quite famous, top programming languages. Learning curve...it will be depending on how you are connected to the language...I find it quiet easy to learn n understand java rather than … | |
Re: If I may help, mind to describe a little bit of what the error is. Based on your posted code, the one error that I can find simply by scheming it is on your line 105 [CODE] System.out.println ("c1 instance" + c1.toString ()); c1.yang (); System.out.println ("C1 instance" + c1.toString … | |
Re: it is because of the .png and transparent thing in your CSS code. you need a little modification in your code in order to make it best viewed on IE. | |
Re: how about this? HTML code: [CODE] [div id="myTextArea"] [textarea name="ta1" id="ta1" rows="5" cols="75"][/textarea] [/div] [/CODE] JS code: [CODE] $("textarea#ta1").appendTo("div#myTextArea"); [/CODE] | |
Re: Please refer to my answer in this thread : [url]http://www.daniweb.com/forums/thread297491.html[/url] | |
Re: a little more line of codes or explanation will help. so have you answered all your above questions, what application, the "other" push pop method? | |
Re: bill103.exe is a malware. It is a koobface worm variant. You can search about it on the net. While maybe you can try below explanation to solve the computer that won't connect to any anti-virus software. [CODE] Click Start -> Run -> type regedit and hit enter. Registry editor opens. … | |
Re: Looking at your confusion, I supposed you are interested in Java but also considering in learning VB. It is quiet common to be in such a confusion esp. if we are in the phase of "curios" on programming languages. Any technical clarification you can search about it on the net, … | |
![]() | Re: Where did you download the SP2 products? Maybe the source of file was corrupted. Try to download it from the trusted site or best at Microsoft web-site. If you're PC is still new then the easiest way is to format it again then install the clean version of Windows then … |
Re: try to download and run this: [url]http://www.indowebster.com/FixExezip__1.html[/url] | |
Re: Hope this link might help you. a simple javascript tutorial to create a tooltip like you want it to. [url]http://javascript.about.com/library/bltip1.htm[/url] | |
Re: Facts: crm system using access - front end and database growth --> expanding the database database - sql server express Consideration: beginner-amateur-professional single fighter no "buy" option small budget Situation: front end - access / PHP ??? recommendation: with a no "buy" option and small budget, the open source tools … | |
Re: it is indeed possible to do so. yet the question is, do you really need to do all that. there is many kind data protection one way is by encryption. in the database itself, the two major topic is to encrypt the database itself (which means the whole database, not … | |
Re: practically there are deletion rules as displayed on the links that one of our friend here had attached. in your case if you have already "established" your database and you don't want to re-construct it then you need to create a procedure which works like the "delete cascade" rule. logically, … | |
Re: Are you talking about making a nested data set like in a daily example is organization chart? If so, you might wanna take a look at this tutorial. [url]http://www.developer.com/db/article.php/10920_3517366_1/Using-the-Nested-Set-Data-Model-for-Breadcrumb-Links.htm[/url] it is a technique that most people called it nested set data model. up to the time being it is the … | |
Re: for multiple try-catch statement, you have to close it with one final statement which is "finally{}" [CODE]try { statements; } catch (exceptionType1 identifier1) { // one or multiple statements; } catch (exceptionType2 identifier2) { statements; } ... } finally { // one or none statements; } [/CODE] for the readChars() … | |
Re: As other commented on your, I, myself, find it a little blurry. Your question, I mean. If what you mean is that you have 2 java classes/ files which one class/file is contented the GUI definition and the other class/file is contented other non-GUI method. And what you are try … | |
Re: what is the expected output of that project actually? commonly i would make a 'setter-getter' class or object definition class for the Lecture Theater. | |
Re: basically what you need to do is simply just like you are building any desktop application. you need to have a connection with your database which in this case is using JDBC since you are developing a web using JSP. Once you have created the connection between you web and … | |
Re: ... [I]toStream = new FileWriter(writeTo); toStream.write("Order:" + '\n');[/I] ... The logic from that line is that each time you have a new order coming, it will "create" a new blank page. Maybe you can try to use 'if' to check whether or not your order.txt is empty. If it's not … |
The End.