Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
2
Posts with Downvotes
1
Downvoting Members
2
0 Endorsements
Ranked #2K
~3K People Reached
Favorite Tags
Member Avatar for zeeven

Guys help me 3 of my thesis proposals were rejected and i can't think of a better one now Here are my topics: 1. Multiple CP brand PC Suite 2. Music Composer 3. Facial Recognition Our professors want us to focus on networking, online systems, or database. Please help me. …

Member Avatar for angelicdemOOn
-2
124
Member Avatar for zeeven

Hello guys, Been doing good in my thesis: Face Recognition System, a little more improvements and its all done. Now, I'm planning to deploy my application in terms of a installer (i.e. .msi). I know that VS2008 Pro can have this with no pain but I'm using VC# 2008 Express …

Member Avatar for JuhaW
0
98
Member Avatar for zeeven

Hello guys, need a little help here! I wanted to create a fading effect on a groupbox but there is no opacity property for that control. Is there any way to set a control 's (i.e. button, groupbox, etc) opacity? Ive been searching the net but found no useful help... …

Member Avatar for zeeven
0
86
Member Avatar for zeeven

Hi there guys... Been working all week for the database connection of VC# with SQLite. I got an error everytime i try to open the database... No matter how i tried the [B]SQLiteConnection.Open()[/B] command still returns an error... I installed the required ADO.NET and the required SQLite Database... [I] here's …

Member Avatar for zeeven
0
1K
Member Avatar for MonicaClare

Hi to all programmers.. i have a problem about this code .. i don't know what to do to this code.. i change a lot of code .. but always appear the error "illegal start of expression" .. I'm a newbie in Java.. please help me in this case.. thanks.. …

Member Avatar for llemes4011
0
173
Member Avatar for rizillion

Hi!, I have created a user inteface named "helpGUI". This user interface contains a JTextArea. I also have created a text file named "help.txt". I need to show the "help.txt" file in the JTextArea. As I'm new to JAVA I have no idea how to do this. Given below is …

Member Avatar for peter_budo
0
743
Member Avatar for akulkarni

i wish to print sll the combinations of digits of a number eg 123 gives 321 132 231 132.... [code] class numbers { public static void main(String args[]) { int num=123; int x=num%10; int y=num/10; int z=100*x+y; System.out.println(z); } } [/code] this is all my brain is letting me to …

Member Avatar for JamesCherrill
0
109
Member Avatar for sotvisal

import java.util.*; class Array { Scanner in() { return new Scanner(System.in); } void out(String n) { System.out.print(n); } int[] getarray(int n) { int a[]=new int[n]; for(int i=0;i<a.length;i++) { out("Enter A["+i+"]: "); a[i]=in().nextInt(); } return a; } void showarray(int[] a) { for(int c:a) out("Array: " +c); out("\n"); } void sortinc(int[] a,int …

Member Avatar for zeeven
0
114
Member Avatar for akulkarni

[code] i want a program which asks the user to type the password. If he goes wrong three times exit.this is my code import java.io.*; class password1 { public static void main(String args[])throws Exception { String pass="samarth"; boolean flag=false; BufferedReader br=new BufferedReader(new InputStreamReader(System.in)); String [] password=new String[20]; int i; for(i=0;i<3;i++) …

Member Avatar for mvmalderen
0
208