- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
13 Posted Topics
Re: Basically, it's possible, but not easy. 1) You have to do some reverse engineering of CPanel (which normally is forbidden by the licence agreement), to find out how/where CPanel stores the email accounts in its database. 2) You need to do exactly what CPanel does, such as adding the email … | |
Re: Simple solution: [code] Randomize(); //Required in Borland C++ //Generate a random number between 1 and 6 int random_number = (rand() % 6) + 1; [/code] Andi | |
Re: [QUOTE=Clown] how do i write the repeat() ?? [/QUOTE] Investigate JOptionPane.showConfirmDialog() if you are working on a GUI proggy. If it's a console proggy, it's a lil bit more complicated, and I am a lazy writer. :D | |
Hi! I am writing a tool, that uses a HSQLDB database. The databases can get pretty big (the test DB is 21MB). I am using a standalone DB, so my application also acts as the DB-Server! Here's the problem: I want to show a message like "Loading database... Please wait!" … | |
Re: If you are working in a webserver you have full access to, you can also setup a cronjob! But be aware, that your code should log errors and message to logfiles instead of the console. | |
Re: [QUOTE=jeadeb]Hi all.. I have built a knowledge base, in html.. would just like to know how I can search for an answer using a search form, that I can have on the home page to find answers on the other html web pages., and just open that web page with … | |
Re: [QUOTE=digital-ether]Hi all, I was wondering if there is a way of getting the list of functions inside a class in PHP4. [/QUOTE] Try get_declared_classes() and get_class_methods(), and if needed get_defined_functions()... With those, you can list all functions available within your actually running script. | |
Re: [QUOTE=abc2004]How to populate data from a database table into JList? I can retrieve the data from the database table ok. No Problem but now want to populate those data into the JList. What are the code for this? I need to know the class and methods for this. Thanks!!!![/QUOTE] Well, … | |
Re: Simple answer: Your algo needs to be ported to PHP. There is no way to implement C/C++ code into a php file. The only way this works would be writing an extension for PHP. This extension is loaded by the php engine and provides your functionality under special function names. … ![]() | |
Re: [QUOTE=indienick]Ok, I know this is a stupid-easy question, but how do I "gather" (best word I could think of) an image? [code] JFrame frame = new JFrame(); Image programIcon = (...?...); frame.setIconImage(programIcon); [/code] My main issue is that since Image is abstract, I can't exactly go " = new Image("yadda.png");" … | |
Re: Why don't you want a special part of the Applet not to be repainted? I am just asking, coz I am curious... Basically, you could do this by overwriting the repaint() method of your component. Instead of calling super.repaint(), call repaint(Rectangle r) or a similar function as offten as needed … | |
Re: [QUOTE=jwenting] What you're looking at is an abstract factory to create adapters. What you need is to create an interface (abstract baseclass would work as well but is far less flexible) which defines the methods that you need for your plugins to function.[/QUOTE] I used a 2-interface-version, which made everything … | |
[b]PLEASE FORGET THIS POST... The problem was located in the debugger, which is not able to handle several running threads of ThRead().[/b] [quote] I wrote a file-buffer using Borland C++ 4.x. The buffer is implemented as a thread, which fills itself automatically. I implemented a function, called GetChar() which returns … |
The End.