Posts
 
Reputation
Joined
Last Seen
Ranked #328
Strength to Increase Rep
+9
Strength to Decrease Rep
-2
72% Quality Score
Upvotes Received
83
Posts with Upvotes
71
Upvoting Members
35
Downvotes Received
33
Posts with Downvotes
17
Downvoting Members
22
25 Commented Posts
7 Endorsements
Ranked #260
Ranked #279
~199.48K People Reached
Favorite Tags
java x 450
c++ x 63
c x 31
php x 7
Member Avatar for anveshi

[code] #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". unsigned long Size; //Size in BYTES of the file. unsigned long Reserved; //Reserved. Set to zero. unsigned long OffSet; //Offset to the data. unsigned long headsize; //Size of rest …

Member Avatar for rproffitt
0
14K
Member Avatar for Majestics

I want to prevent my router from hard reset.... My friend often press the hard reset button to tease me.... Is there any way...................

Member Avatar for peiliri
0
5K
Member Avatar for sreejhu
Member Avatar for 1bung100

Follow this link [url]http://stackoverflow.com/questions/2596641/simulate-backspace-key-with-java-awt-robot[/url] [code] robot.keyPress(KeyEvent.VK_SHIFT); robot.keyPress(KeyEvent.VK_BACK_SPACE); robot.keyRelease(KeyEvent.VK_BACK_SPACE); robot.keyRelease(KeyEvent.VK_SHIFT); [/code]

Member Avatar for Kubu Letuka
0
2K
Member Avatar for sameer074uhis

seems like a security issue, login from administrator account... Still you can access then scan from an antivirus because some times virus block your access.

Member Avatar for razib8bd
0
135
Member Avatar for alexsamam

Your quesiton is not clear, please give an example with your question that what you want to achieve, Any how i just guessed that synchronization can be your issue , check this link http://docs.oracle.com/javase/tutorial/essential/concurrency/syncmeth.html it will help you to grab the basic knowledge of synchronization.

Member Avatar for Majestics
0
149
Member Avatar for emmanuell

When i started the J2ME i used this forum http://www.roseindia.net/j2me/. Hope this help you too.

Member Avatar for peter_budo
0
116
Member Avatar for Kronolynx

I compiled your code at first i got the errors you have described, so i took some parts and re compiled one by one .. Your code is o.k it works.

Member Avatar for Kronolynx
0
132
Member Avatar for utchia
Member Avatar for Majestics
0
576
Member Avatar for archana.khare.395

You havnt mentioned your code. But according to the error you mentioned this thread can help you. http://stackoverflow.com/questions/5180713/old-format-or-invalid-type-library-exception-from-hresult-0x80028018-type-e

Member Avatar for Majestics
0
77
Member Avatar for LeonKam
Member Avatar for engrjawad

Swing is the primary Java GUI widget toolkit. It is part of Oracle's Java Foundation Classes (JFC) — an API for providing a graphical user interface (GUI) for Java programs. Swing was developed to provide a more sophisticated set of GUI components than the earlier Abstract Window Toolkit (AWT). Swing …

Member Avatar for jalpesh_007
0
191
Member Avatar for jack_hehe

Your question is not clear, kindly please paste some code and some explanation to elborate your problem.

Member Avatar for jalpesh_007
0
143
Member Avatar for Ismail Issa

You actually need to learn events through buttons in c#. http://www.homeandlearn.co.uk/csharp/csharp_s1p8.html Check out the link.

Member Avatar for ddanbe
0
113
Member Avatar for poojavb

You have to change your key listener from Released to Pressed. Reason is on release it check so your characters go out of range. Hope this help. public void keyPressed(KeyEvent key)

Member Avatar for JamesCherrill
0
3K
Member Avatar for Majestics

I am working on grid view in c#. I want to attach a key press listener with grid view to dectect up and down keys. I tried "Editcontrol" but it didnt worked. Also "Keypressed event" with grid view , it also didnt worked. Before that I used "Mouse Event" and …

Member Avatar for TnTinMN
0
164
Member Avatar for Majestics

I have created a project in c#.net. At the time of implemenation it require framework and updations which become a headace, i want to remove this .net nature from my application. I mean to say i want to embed the dll libraries with the application so they become independent of …

Member Avatar for jinus
0
126
Member Avatar for london-G

It isnt difficult, all you have to learn graphics library of java. Its drawing of a rectangle and putting buttons over it. Also u can draw a jpanel and put buttons and increase it size gradually. http://www.imint.com/demos/islide/demo3500.htm this website will help you.

Member Avatar for Majestics
0
192
Member Avatar for Majestics
Member Avatar for kimlong.khov

You can search alot over internet , here is one http://vb.net-informations.com/crystal-report/vb.net_crystal_report_step_by_step.htm

Member Avatar for Majestics
0
74
Member Avatar for ctclements

its because scanner class reach to end when counting the letter. It will return 0 for other two. 1) You can solve this by making a string. and pass that string to scanner 2) make a custom class which has three variable count, total count and length. and make function …

Member Avatar for Majestics
0
2K
Member Avatar for dnanassy

yes there is, place that file with the jar, or in a folder with the jar. Like FILES in folder. then reference throught `FILES//file-name` Thats how you can make it dynamic, it will work on all platform.

Member Avatar for dnanassy
0
504
Member Avatar for np complete

Caches is a intermediate memory which is required to hold data. This provide faster performance by hardware. In computer cpu has registers then caches. L1 Come first then L2 and then L3 and so one. In last it has access to Ram. The more near to cpu the more it …

Member Avatar for np complete
0
167
Member Avatar for rahul.ch

for checking strings use equal function. == sign doesnt work properly while checking strings. E.g String a = "hello"; a.equal("hello"); // ---- true ----------------

Member Avatar for rahul.ch
0
240
Member Avatar for vinnitro

If you are using JDK 1.7.0 then you have to use generic type as stated in its documentation http://docs.oracle.com/javase/7/docs/api/javax/swing/JComboBox.html You wont find that problem in 1.6.

Member Avatar for vinnitro
0
1K
Member Avatar for Farhad.idrees

You can follow two syntax for loading image //-------- Directly File Location ------------------ pictureBox1.Load(imageFileName); OR //-------------- Load an image from image object ----------------- this.pictureBox1.Image = image;

Member Avatar for Majestics
0
167
Member Avatar for onlineboy18

First Problem Solution : Select All deptno and then select the user specific dept no. and make it selected Please post your code here, so i can check it out.

Member Avatar for onlineboy18
0
165
Member Avatar for hcbckwidpeace93

there is no need for OR operator.... use this while(name.toUpper().equals("anything".toUpper())) { //-------- use to upper function to make it in one case and equal to compare them. // Above is java syntax i hope there will be same in c# }

Member Avatar for andur92
0
114
Member Avatar for deirdre.mckinnie

Is it shuting down during booting process or after boot? Can be battery problem.

Member Avatar for caperjack
0
66
Member Avatar for tuttu007

There is no error in the program, When u run the jar... U must run like this. java UDPClient message ipaddress //------------ message can be any message u want to transfer while ipaddress is needed of destination computer In your program args[0] point to message while arg[1] point to ip …

Member Avatar for richieking
0
414