- Strength to Increase Rep
- +9
- Strength to Decrease Rep
- -2
- Upvotes Received
- 83
- Posts with Upvotes
- 71
- Upvoting Members
- 35
- Downvotes Received
- 33
- Posts with Downvotes
- 17
- Downvoting Members
- 22
Re: [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 … | |
I want to prevent my router from hard reset.... My friend often press the hard reset button to tease me.... Is there any way................... | |
Re: can you show me the code where you are saving data to database (local)? | |
Re: 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] | |
Re: 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. | |
Re: 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. | |
Re: When i started the J2ME i used this forum http://www.roseindia.net/j2me/. Hope this help you too. | |
Re: 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. | |
Re: Kindly paste the error or explain it. Reading a huge code is a bit difficult for every programmer. | |
Re: 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 | |
Re: Why dont u try bluetooth...... | |
Re: 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 … | |
Re: Your question is not clear, kindly please paste some code and some explanation to elborate your problem. | |
Re: You actually need to learn events through buttons in c#. http://www.homeandlearn.co.uk/csharp/csharp_s1p8.html Check out the link. | |
Re: 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) | |
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 … | |
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 … | |
Re: 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. | |
Are there any open source video hosting complete websites? | |
Re: You can search alot over internet , here is one http://vb.net-informations.com/crystal-report/vb.net_crystal_report_step_by_step.htm | |
Re: 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 … | |
Re: 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. | |
Re: 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 … | |
Re: for checking strings use equal function. == sign doesnt work properly while checking strings. E.g String a = "hello"; a.equal("hello"); // ---- true ---------------- | |
Re: 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. | |
Re: 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; | |
Re: 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. | |
Re: 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# } | |
Re: Is it shuting down during booting process or after boot? Can be battery problem. | |
Re: 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 … |