Forum: Java Sep 16th, 2009 |
| Replies: 4 Views: 222 import javax.swing.*;
import java.awt.*;
public class mainForSimpleGUI
{
public static void main(String[] args)
{
SimpleJavaGUI labelFrame = new... |
Forum: Java Sep 15th, 2009 |
| Replies: 4 Views: 222 Use line 19 before 16 and 17. You are not initializing the theTextArea. |
Forum: C Sep 8th, 2009 |
| Replies: 7 Views: 290 Java is derived from C. You can use dynamic memory allocation. |
Forum: Java Sep 8th, 2009 |
| Replies: 2 Views: 260 Thank you, now i don't this. I was working on a java on screen keyboard from 3 months . But the problem was of getting focus and send keys to OS. Finally 3 days back i completed the project and... |
Forum: Java Sep 5th, 2009 |
| Replies: 2 Views: 260 I am giving this title so most of you attract towards this thread. I actually want to know is there any way to link mfc created programe with java . As all the programmers know that mfc contain a lot... |
Forum: Java Sep 2nd, 2009 |
| Replies: 2 Views: 142 |
Forum: C++ Aug 31st, 2009 |
| Replies: 5 Views: 161 Sorry but it didn't help me ... I want the answer from my given source code. |
Forum: C++ Aug 31st, 2009 |
| Replies: 5 Views: 161 // OnscreenKeyboard.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "OnscreenKeyboard.h"
#include "OnscreenKeyboardDlg.h"
#ifdef _DEBUG
#define new... |
Forum: Java Aug 22nd, 2009 |
| Replies: 11 Views: 460 I have source code of onscreen keyboard in MFC , is there any tool that help me to convert it in java.. |
Forum: Java Aug 22nd, 2009 |
| Replies: 11 Views: 460 Well is there any way that java can get the handle of event which is focused? |
Forum: Java Aug 21st, 2009 |
| Replies: 11 Views: 460 All what you said is write but i want to do it automatically not manually clicking and there can any other active programe like microsoft word then how my programe send's the key .... I always post... |
Forum: Java Aug 21st, 2009 |
| Replies: 11 Views: 460 JTextField only work inside java i want to send the events to outside environment. |
Forum: Java Aug 20th, 2009 |
| Replies: 11 Views: 460 well sorry i forgot to take that code out of these , i just when i press any button it do in my keyboard through mouse then it work and that's what all i concerned. |
Forum: Java Aug 20th, 2009 |
| Replies: 11 Views: 460 import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.Robot;
import java.awt.Event;... |
Forum: Java Jun 6th, 2009 |
| Replies: 5 Views: 346 Thank You Friendz Especially Ezzaral. |
Forum: Java Jun 4th, 2009 |
| Replies: 5 Views: 346 I want to learn JNI , please suggest me some basic guide. |
Forum: Java May 31st, 2009 |
| Replies: 9 Views: 380 Great Help! Thank You Very Much. |
Forum: C++ May 31st, 2009 |
| Replies: 4 Views: 328 use == instead of = in while |
Forum: Java May 31st, 2009 |
| Replies: 9 Views: 380 Thank you very much JamesCherrill , it solve my problem but still i am facing a problem is that how can i get focus of the place where i want to write some thing. |
Forum: Java May 31st, 2009 |
| Replies: 9 Views: 380 When I press 'A' on my On-screen Keyboard then It should generate the interrupt like hardware keyboard. I mean this. In vb Made on-screen keyboard we send the key but in java how can we do this? |
Forum: Java May 31st, 2009 |
| Replies: 9 Views: 380 I mean when I press 'A' in the keyboard it generate function like Normal Hardware Keyboard and writes that word. |
Forum: Java May 30th, 2009 |
| Replies: 9 Views: 380 I am making on-screen keyboard in java. All what i want to know is how to get focus into the notepad or any other typing point , I mean when i press a key it type it into the typing point like a... |
Forum: Java May 25th, 2009 |
| Replies: 3 Views: 205 Thank You Very Much it solved my problem.... |
Forum: Java May 25th, 2009 |
| Replies: 8 Views: 513 http://java.sun.com/docs/books/tutorial/uiswing/layout/gridbag.html
I think it will solve your Problem. |
Forum: Java May 25th, 2009 |
| Replies: 3 Views: 205 import javax.swing.*;
import java.awt.*;
public class keyboard
{
public static void main(String args[]) |
Forum: C++ Dec 1st, 2008 |
| Replies: 16 Views: 754 #include <iostream>
#include <cstdlib>
#include <iomanip>
#include <ctime> |
Forum: C++ Dec 1st, 2008 |
| Replies: 16 Views: 754 while (choice!=5)
{
Your Programme Body
}
Remember to Intialize Choice With any Number without 5 |
Forum: C++ Dec 1st, 2008 |
| Replies: 16 Views: 754 [code] while (choice!=5)
{
Your Programme Body
}[\code]
Remember to Intialize Choice With any Number without 5 |
Forum: C++ Nov 29th, 2008 |
| Replies: 9 Views: 427 you have to declare functions before using them,,
return type function name (parameters list)
in your case
void studentDetails();
and call them |
Forum: C++ Nov 29th, 2008 |
| Replies: 9 Views: 427 dont write return type (void,int,....) when u r calling functions. |
Forum: C++ Nov 29th, 2008 |
| Replies: 5 Views: 340 If we think that all books are in shelf and we want to keep a stock_record then..... i think it will be an attribute then. |
Forum: C++ Nov 29th, 2008 |
| Replies: 5 Views: 340 I have made an erd having book,cutomer and shelf but i am confused in stock , i dont need any one to solve it completly but just tell me about stock , is stock a entity or attribute ? |
Forum: C++ Nov 29th, 2008 |
| Replies: 5 Views: 340 Apply all steps of conceptual and logical database design on the following requirements:
The system should be able to store a customer’s name, address, and contact information and a book’s ISBN,... |
Forum: C Nov 28th, 2008 |
| Replies: 3 Views: 365 #include <stdio.h>
int main(void)
{
int N = 0 ;
char x[100] ;
int i=0;
FILE * input ;
input = fopen("weights.txt", "r") ; |
Forum: Database Design Nov 28th, 2008 |
| Replies: 2 Views: 1,212 3nf is industry standard normal form, you will not find any problem in inserting,deleting and updating a row if ur table is in 3nf. |
Forum: Database Design Nov 28th, 2008 |
| Replies: 2 Views: 1,441 Apply all steps of conceptual and logical database design on the following requirements:
The system should be able to store a customer’s name, address, and contact information and a book’s ISBN,... |
Forum: C Sep 19th, 2008 |
| Replies: 2 Views: 1,576 #include <alloc.h>
#include <conio.h>
#include <graphics.h>
#include <stdio.h>
#include <stdlib.h>
struct BMP
{
char Type[2]; //File type. Set to "BM". |
Forum: C++ Sep 19th, 2008 |
| Replies: 7 Views: 4,041 I have searched the forum , also over internet but i didn't found any understandable method to convert float number to string , Please help Me in conversion. |
Forum: C Sep 10th, 2008 |
| Replies: 3 Views: 403 void name(int a,int b,int c,int &sum,int &avg){ }
"&" mean referring a variable , this is a way by which function return more than one value. |
Forum: C May 4th, 2008 |
| Replies: 10 Views: 1,085 Example is this
char arr[100],i=0;
while((arr[i]=getchar())!='\n')
i++;
so it will take any number of character from 0 to max size until enter is not encountered
but in integer i... |