Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
~5K People Reached
Favorite Tags

13 Posted Topics

Member Avatar for vssp

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 …

Member Avatar for jaison_1
0
2K
Member Avatar for trevs234

Simple solution: [code] Randomize(); //Required in Borland C++ //Generate a random number between 1 and 6 int random_number = (rand() % 6) + 1; [/code] Andi

Member Avatar for WaltP
0
230
Member Avatar for Clown

[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

Member Avatar for Phaelax
0
81
Member Avatar for Rotak

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!" …

Member Avatar for Rotak
0
130
Member Avatar for timhysniu

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.

Member Avatar for timhysniu
0
302
Member Avatar for jeadeb

[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 …

Member Avatar for Rotak
0
135
Member Avatar for digital-ether

[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.

Member Avatar for digital-ether
0
119
Member Avatar for abc2004

[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, …

Member Avatar for Phaelax
0
676
Member Avatar for angelv

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. …

Member Avatar for iamthwee
0
178
Member Avatar for indienick

[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");" …

Member Avatar for indienick
0
167
Member Avatar for Badhrinath

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 …

Member Avatar for Rotak
0
128
Member Avatar for Cudmore

[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 …

Member Avatar for Rotak
0
249
Member Avatar for Rotak

[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 …

0
70

The End.