Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~10.4K People Reached
Favorite Tags
Member Avatar for Joncamp

I really need this WYSIWYG editor here on DaniWeb, with the smileys and rich text editing, does anyone know where to get it? Thanks, jon

Member Avatar for suresh89cse
0
547
Member Avatar for Joncamp

I can add nodes to my JTree, but after expanding a node, I can not add any child nodes to that node, or at least they dont show on the screen? Actually I can use the .add(new DefaultMutableTreeNode("Label")); to add a node to a parent node, but the new child …

Member Avatar for rocknroll60
0
229
Member Avatar for Joncamp

I am trying to transmit an Image object through a Socket connection in Java. The only thing I may be missing is how to get an image size in bytes so I know how many bytes are being transferred over the Socket. I have the ServerSocket and Client working transferring …

Member Avatar for kvprajapati
0
4K
Member Avatar for Joncamp

The following code compiles, but I don't have any documentation on how to use the "enum" structure. I cant find any info on it in my books or Sun's language documentation... class Test { enum eone { Plus { int operate(int x) { return ++x;} }, Minus { int operate(int …

Member Avatar for stultuske
0
98
Member Avatar for Joncamp

What is the limit on how many records you can have in a table in Oracle? It must have a limit. Also, has anyone ever benchmarked Oracle on sorting records... say 1,000,000 records of a small record size, just 2 or 3 fields? :cheesy:

Member Avatar for debasisdas
0
3K
Member Avatar for Joncamp

Hi, Im installing Oracle 10g on Fedora 5, I did it once, but when I tried to set it up again I got this error on the last part of the install... ORA-12157: TNS: internal network communication error Anybody know what might cause this? I think I have installed all …

0
92
Member Avatar for Joncamp

I have RedHat Fedora 4/5/6, they all have IBM Java 1.4 which doesn't do GUI correctly, and is not supported in FireFox browser for Applets. Anybody know how to setup Sun Java 5 and FireFox browser Java on Red Hat Fedora 4/5/6? Thanks

Member Avatar for jwenting
0
53
Member Avatar for Joncamp

Taking a Java test I found a for{} loop which had a : character in it?... like this... for { : } I was supposed to fill in some objects, but I have no idea how a : character does in a for loop? Any comments? JON

Member Avatar for Dani
0
162
Member Avatar for Joncamp

In many languages (like PHP/Perl) you can execute shell commands, what package or method do you use in Java2 to execute a shell command? Thanks, Jon

Member Avatar for masijade
0
76
Member Avatar for Joncamp

I can't get IPsec (for a VPN) to start on Linux because it doesn't recognize the interface, which should be PPP I believe, I have PPPd installed and my question is... Does a ppp connection such as ppp0 or ppp1 start only if you have a modem line or ethernet …

0
74
Member Avatar for Joncamp

In Visual C++ you can create a 64 bit int like this... long long int xyz; But in Linux with GNU C++ you can't seem to do it. I need to manage files larger then 9 gigs, how can you get fstream to use file position seek pointers that large, …

0
69
Member Avatar for Joncamp

I can't buy a c++ reference, and need one for programming in Linux. Does anyone know of a good reference free on the Web? Thanx, Jon:cheesy:

Member Avatar for ~s.o.s~
0
139
Member Avatar for Joncamp

In Linux you have what I belive are called Kernel-modules, they operate faster and are more efficient then common programs. The TUX web server for Linux is a Kernel module if I am correct? How do you create Kernel modules? Is there a good book on this? Kind regards.

Member Avatar for vivek1234
0
161
Member Avatar for Joncamp

I don't know how to configure my sendmail8 system, is sendmail a mail server? Why don't PHP send mail() through the sendmail8 system? Thanks:mrgreen:

Member Avatar for shaocpa
0
148
Member Avatar for Joncamp

I would like to know if anyone has bench marked MySQL server, compared to Oracle. I have developed a database that will sort 1,000,000 records in less then 22 seconds (100 byte record sorting on 2 fields, and 1.3Ghz cpu).

Member Avatar for d66
0
93
Member Avatar for Joncamp

I have tried the instructions from Red Hat, the instructions from a guy on JustLinux.org and I cant get Samba to work. I downloaded the latest version of Samba and it installed ok. I can view shares on Linux from the Windows machines, but I cant write files in the …

Member Avatar for DMR
0
124
Member Avatar for Joncamp

I'm running Apache 3.0, and have a c++ cgi-bin program working fine with Apache... except the cgi-bin program wont create or even read from files it uses as a database? Anybody know the answer to this one? Thanks kindly, jon

Member Avatar for Joncamp
0
113
Member Avatar for Joncamp

I am wanting to create C++ modules to load with Linux Apache web server, to give it additional functionality while not requiring a new process to be executed. I want to do this because I believe it would be faster then cgi-bin programs which require a new process space every …

Member Avatar for Joncamp
0
91
Member Avatar for Joncamp

I'm setting up Linux with Samba on a small LAN for a friend. I got everything working except on the Windows computers I can't go to the files under a shared folder (shared on the Samba computer), I can view the Samba shares from the Windows computers but just cant …

Member Avatar for WolfPack
0
90
Member Avatar for Joncamp

I was writing a C++ CGI-BIN program, but couldn't get it to work in Linux Apache web server. It just seemed to display the c++ program as binary garbage in the Firefox browser, it didn't execute it like a CGI-BIN is supposed to. I put it in the /CGI-BIN/ directory …

Member Avatar for Joncamp
0
318
Member Avatar for Joncamp

I used to program in 68x assembly many years ago, I would like to learn x86 64bit assembly, any suggestions on a good book to purchase? :mrgreen:

Member Avatar for Narue
0
67
Member Avatar for Joncamp

I wrote a cgi-bin program to run with Apache/Linux. When I do a form-post operation from a web page to my cgi-bin program, the form fields are not passed to the cgi-bin program? The cgi-bin program runs ok and returns some html through stdout, but doesn't read any form fields …

Member Avatar for Dave Sinkula
0
160
Member Avatar for Joncamp

Does the Linux TUX web server support CGI-Bin executables? I know it doesn't have some of the scripting support that Apache has, but what about just straight CGI executibles that support form-submit actions?

0
80
Member Avatar for Joncamp

I need to setup Network Address Translation (NAT) for a LAN, which uses Samba to support Windows clients. There is only one DSL IP address, but about 4 computers on the LAN. They all need to have Internet access, does Linux support NAT with Samba?

Member Avatar for blud
0
113
Member Avatar for lsu420luv

I am trying to read in information from an external file using ifstream. I use fin >> to input the data usually. Now I have to input a full name. Can anyone tell me what I use to do this? do I use a string type variable and then just …

Member Avatar for lsu420luv
0
264
Member Avatar for bsdpowa

I have a header and cpp file.I'm trying to learn OOP so I did a small program that handles classes.In the header I have declared the class and in the main file I'm implementing the methods. m_prvi = first number m_drugi = second number m_rezultat = result So I call …

Member Avatar for bsdpowa
0
138
Member Avatar for Joncamp

Has anybody use the jwSMTP c++ email routines, or do you know of a better freeware email c++ app?

0
74