- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 3
- Posts with Downvotes
- 3
- Downvoting Members
- 1
32 Posted Topics
that was a great interview...
I created a website that will upload files to a webdav server I can now upload files to the webdav server and I am able to view it. below is my code <% boolean isMultiPart = FileUpload.isMultipartContent(request); DiskFileUpload upload = new DiskFileUpload(); List items = upload.parseRequest(request); String baseUrl = "http://localhost:8084/webdavserver"; …
I am a newbie of node.js and I am trying to run a simple chat application but I got an this error: node.js:201 throw e; // process.nextTick error, or 'error' event on first tick ^ Error: Cannot find module 'now' at Function._resolveFilename (module.js:334:11) at Function._load (module.js:279:25) at Module.require (module.js:357:17) at …
Good day! I am a newbie in jquery. I want to create a multicolumn select box that may look like this. [IMG]http://www.codeproject.com/KB/combobox/multicolumncombo/comboOpen.jpg[/IMG] I am planning to do it in a table that work just like a standard select box but the problem is I dont know how. could anybody show …
In my office all our pc's is monitored on the server.. I just want to ask that if you are using Virtual Machine, are all your websites opened can be seen on the server??? thanks!!! sorry about my english!!!
Good day... I am new to javascript... I created a simple validation using javascript alone.but my problem is when I press enter the browser aumatically refresh.. this is my code js code.. [CODE]var validid=false; var validname=false; var validaddress=false; var validzip=false; var validemail=false; function idiit() { var uid = document.form1.userid; var …
I don't know if this is the right section to post this thread but just correct me if this is not... I just graduated BSIT and I am planning to apply as a programmer or Software engineer but I am wondering, to be a good programmer, do you need to …
could anyone help why hover doesnt work on some of my link. below is my code! thnks in advance!!! [ICODE]a:link {color:#FF0000;} a:visited {color:#00FF00;} a:hover {text-decoration: underline;} a:active {color:#0000FF;}[/ICODE]
i haven't use MAC OS since but I am planning to use MAC OS but i don't know if all software is compatible specially the drivers... is there any software compatibility issues about this OS???
could anybody help me.. im stack with this.. alert is not shown when i entered invalid username and password but when i entered correct username and password it runs smoothly... it only print what i want to print as a tracker.... this is the code: [CODE] if(c==login) { display.setCurrent(agauge); loginmethod(); …
could anybody help me.I got error java.lang.IndexOutOfBoundsException when i press edit button.. this is my code: [CODE] String stredit=""; System.out.println(foodselected.size()); for(int m=0;m<foodselected.size();m++) { if(foodselected.isSelected(m)) { foodselected.delete(m); stredit=foodselected.getString(m); break; } } int qtyint=Integer.parseInt(stredit.substring(0,3)); String namestr=stredit.substring(5,stredit.length()-12); System.out.println(qtyint); System.out.println(namestr); namecust.setString(custname.getString()); tableno.setString(txtno.getString()); fooddrinkname.setString(namestr); txtqty.setString(Integer.toString(qtyint)); frmedit.append(namecust); frmedit.append(tableno); frmedit.append(fooddrinkname); frmedit.append(quantity); frmedit.append(type); frmedit.addCommand(ok3); display.setCurrent(frmedit); display.setCurrentItem(custname); [/CODE]
could anyone help this... when i run my application i got this error.. Running with storage root C:\Users\182\j2mewtk\2.5.2\appdb\DefaultColorPhone Exception in thread "Child process stdout copier" java.lang.ClassCastException: sun.java2d.NullSurfaceData cannot be cast to sun.java2d.d3d.D3DSurfaceData at sun.java2d.d3d.D3DRenderer.copyArea(D3DRenderer.java:55) at sun.java2d.d3d.D3DSurfaceData.copyArea(D3DSurfaceData.java:665) at sun.java2d.SunGraphics2D.doCopyArea(SunGraphics2D.java:1986) at sun.java2d.SunGraphics2D.copyArea(SunGraphics2D.java:1968) at javax.swing.BufferStrategyPaintManager.copyArea(BufferStrategyPaintManager.java:316) at javax.swing.RepaintManager.copyArea(RepaintManager.java:1239) at javax.swing.JViewport.blitDoubleBuffered(JViewport.java:1604) at javax.swing.JViewport.windowBlitPaint(JViewport.java:1573) at javax.swing.JViewport.setViewPosition(JViewport.java:1118) …
I created an application using ChoiceGroup.MULTIPLE.. ChoiceGroup has 7 elements and I checked/selected 5 to be deleted.. but when i press delete only 3 elements will be deleted.. here is my code..[CODE] for(int k=0;k<cg.size();k++) { if(cg.isSelected(k)) { cg.delete(k); } } display.setCurrent(alert,frm); [/CODE] can anybody help me??I dont know what's wrong...
i created a simple appz..two textfield.numeric... this is the first time i've encountered this.. when i input 1 on the first textfield it will display as 11 same as with 2 display as 22.. i have no problem with the second textfield.. anybody knows about it...
how to get the string in a choicegroup.popup... here is my sample code... [code=Java]Form frm=new Form("Sample"); ChoiceGroup cg=new ChoiceGroup("Sample",Choice.POPUP); frm.append(cg); cg.append("1"); cg.append("2"); cg.append("3"); int index=cg.getSelectedIndex(); String str=cg.getString(index);[/code] but i got null pointer exception.. anybody knows about it????
hi all.. i've been practicing mobile programming for a months and i wonder why IMPLICIT is not included in CHOICEGROUP??? I got error when i try to use it...
I am new to J2ME Programming so i am stuck with the keylisteners.. I am writing a simple J2ME app in which there are 2 textfields. As soon as the user types a char in first textfield the result must be displayed in second. I want to handle the events …
i created a simple program using j2me when the user input number[1-9], the element that corresponds to the input is highlighted.. i use choicegroup.. how to do it??
i created a list of name using j2me. its like looking for a contact number in our phone that has a textfield to search. i want that when i type the beginning of the name i want to highlight the name that corresponds the search name.. is it possible to …
i am new to PHP programming.. I cant access phpmyadmin and its says "You don't have permission to access /phpmyadmin/ on this server." when i tried to use the ipaddress of my computer instead of localhost... how to fix it can anybody help me???
i created an application for my mobile phone using J2ME...i want that when i turn-on my mobile phone i want my application to start automatically... i heard about push registry but i dont know how to do that... could anybody help me??? thnks....
When I install sony vegas 8.0 i got an error message. Extracting file failed, it is most likely caused by low memory (low disk space for swapping file) or corrupted Cabinet. I certainly don t have an issue with low memory so what can you guys tell me about this …
hi i'm lsvife i am new to this forum and new to programming too.I am looking forward for your help guyz:all members i appreciate it. thanks in advance..
I got a problem on my pc right now. when i open download folder in my documents a window will pop up, it says "Windows Explorer has encountered a problem and need to be close. Sorry for the inconvenience". I dont want to reformat cause i have important data and …
I want to create a web application that enable the user to create java jar file using PHP.. How to create java jar file using PHP? Could anyone give the code? appreciate it...thnks..
I am trying to connect myphpadmin.. when i use 'localhost' i can connect easily to myphpadmin but when i replace localhost to my ip address i got an error it says Forbidden You don't have permission to access /phpmyadmin/ on this server. I've already change the privileges but still i …
I want to create program that would check if the mobile phone is registered by using IMEI in a mobile phone? How to get the IMEI number using J2me. Could someone show me the right code in doing this..thnks in advance...
anybody could help me? i want to generate txt file extension using j2me. how to do it? thanks..
I just bought new computer but I am confused what antivirus should I use to protect my computer from viruses. what antivirus has a better protection?
hi i'm lsvife I am beginner in java programming. I created a project that will able to send orders via bluetooth using mobile phone for a fast food chain. I want to add food item by updating the jar file on your mobile phone. how to do it without using …
Hi, I am beginner in java programming. I want to create a program that will enable the user to input data? I want to check if the input is numeric or not. How to do it? thanks!!!
The End.
lsvife