67 Posted Topics

Member Avatar for puneetkay

Hello everyone, Im trying to write Punjabi (Gurmukhi) by Unicode. I have the Unicode code point of all character and Code Block is Gurmukhi. [CODE=java]System.out.prinln("\u0A73")[/CODE] u0A73 = GURMUKHI URA = ੳ but its showing "?". then i tried with PrintStream [CODE=java]String unicodeMessage = "\u0A73"; try { PrintStream output = new …

Member Avatar for puneetkay
0
288
Member Avatar for cproud21

You can create another object of JComboBox in same way you created 'dormBox'. Regards,

Member Avatar for puneetkay
0
182
Member Avatar for codered152
Re: list

[QUOTE=codered152;708844]hi all i have a java collection question. i m using java list collection in my program and i m very confused how to iterate over the list what i have i like List<object> obj = ArrayList<object>(); now how can i iterate over this if somebody can explain me that …

Member Avatar for Ezzaral
0
115
Member Avatar for websniper77

[QUOTE=websniper77;709956]I am new in Java and need help :} currently working on a new project using netbeans, I have trouble to import commons-io-1.3.2 jar because i really need to use SuffixFileFilter class which is in commons-io-1.3.2 jar.Actually I have the jar but don't know how to import it into my …

Member Avatar for puneetkay
0
114
Member Avatar for rakesh.mk

[QUOTE=rakesh.mk;695355]Ok thanks for your help, Actually i need to edit the user information which is stored in the mysql database, for that i need to fetch the data from database for perticular user. I have written java class in that I am storing all the usernames in an Array list. …

Member Avatar for peter_budo
0
157
Member Avatar for puneetkay

Hello, Im planning to design a software that will send SMS to a group of numbers. Users will be able to create unlimited group and add unlimited numbers. It will work same as Nokia PC Suite SMS Sender. Just connect mobile to PC, Open application, Select Group and send SMS. …

0
57
Member Avatar for shxrainz

[QUOTE=shxrainz;695898]Hi, I have created a login form that has adminid and password.. I use visual studio 2005,database access. login form work smoothly when i enter the correct adminid and password but never display an error message if wrong data was entered or no data was entered. I need a help …

Member Avatar for shxrainz
0
150
Member Avatar for letlet_pogs

[QUOTE=letlet_pogs;694702]hello guy,,can you really help me understand more about "stack" in java?? i am still confused about stack.push or stack.pop.....can you help me understand it more??..thank you again...[/QUOTE] Hello, Please check here : [url]http://java.sun.com/javase/6/docs/api/java/util/Stack.html[/url] Hope this will clear your confusion :) Regards,

Member Avatar for letlet_pogs
0
347
Member Avatar for ezkonekgal

[QUOTE=ai0372;695586]The code posted at the top is a code that converts infix to postfix expressions. My problem is that in my main method, i can't get my "get input from user" to loop while the user still wants to input expressions. In line 28, if YES it should go back …

Member Avatar for ezkonekgal
0
115
Member Avatar for ezkonekgal

[b]StringTokenizer st = new StringTokenizer(s); Creates a StringTokenizer for the String s that uses whitespace (blanks, tabs, newlines, returns, form feeds) as delimiters.[/b] But your input string: "4+4" < doesnt match with any of default delimiters. thats why its showing error. If still cant get it. Im always here. :) …

Member Avatar for ezkonekgal
0
222
Member Avatar for daniel50096230

[QUOTE=daniel50096230;693761]Hi,I had created a Combobox called cboStart at the GUI form...Now I would like to add the integer of 1 to 12 into the combobox,may I know how can I do it?[/QUOTE] [CODE] cboStart.addItem(new Integer(1)); cboStart.addItem(new Integer(2)); // and so one to 12 cboStart.addItem(1); cboStart.addItem(2); // and so one to …

Member Avatar for javaAddict
0
156
Member Avatar for c#loser

Hie, This one is just a simple program that creates a StreamReader object for adding a text into list by reading settings.ini file. Program is using Do While loop for reading. That means, code in Do block will run minimum one time and terminating expression is "reader.peek() != -1". Peek …

Member Avatar for puneetkay
0
114
Member Avatar for arupa
Re: HCF

[QUOTE=selvaganapathy;643765]I give algorithm you try it in C# [B]HCF (GCD) Algorithm[/B] GCD ( M, N ) { If N > M then return GCD ( N, M ) else If N = 0 then return M else return GCD ( N, MOD ( M, N) ) } It is simple …

Member Avatar for puneetkay
0
105
Member Avatar for u4umang2001

[QUOTE=u4umang2001;606516]IN C#::: i have a string string abc="40+40*4.2%+100" now how can i get the result????[/QUOTE] Hie Umang, As i know, you cant do manipulations in string type variables. You will have to use int, float or double type variable for it. [CODE=c#] class Program { static void Main(string[] args) { …

Member Avatar for corwing
0
148
Member Avatar for bagi

Hie bagi, Im also new in VC#(GUI) but still i have knowledge of C#(Console Applications). Can you please tell me which tool are you using ? as im unable to find the tool for draw ellipse. Waiting for your reply! PK:)

Member Avatar for puneetkay
0
95
Member Avatar for puneetkay

Hie guys, Im creating a program that will display the details of every state of India when user will click on that states button. I have two forms: Main.cs = MdiParent form for program. India.cs = Where map of India will be displayed including buttons of every state. So what …

Member Avatar for puneetkay
0
98
Member Avatar for puneetkay

Hello all, I have created few programs & then i reinstalled windows on my pc & now all programs isnt working ? Whenever i try to run them its shows Application Error - [B]The application failed to initialize properly (0x0000135). Click on OK to terminate the application.[/B] then i try …

Member Avatar for zandiago
0
101

The End.