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
~243 People Reached
About Me

Student

Interests
Computer Programming
PC Specs
AMD64
Favorite Forums
Favorite Tags
Member Avatar for rockberto

I'm having problems with this. The thing is that when I send an MMS with J2ME to another devices with JSR 205 (two tested: SonyEriccson w610i and Nokia 5300), a receiving icon flashes, but the message is not in the inbox folder. I think this happens because of the application …

Member Avatar for peter_budo
0
102
Member Avatar for rockberto

[code]MyObject first = new MyObject(); first.value = 4; second = first; second.value = 5; Console.WriteLine(first.value);[/code] I get 4. Is there a way to get 5 by only modifying second?

Member Avatar for Ramy Mahrous
0
33
Member Avatar for rockberto

Hi there, I have a problem with a BST program, whenever I try to run this a SIGSEGV error occurs. The files are: node.pas [CODE]Unit Node; Interface Type NodePtr = ^TNode; TNode = Class FData : Integer; FLeft,FRight : NodePtr; Constructor Create(PData : Integer); End; Implementation Constructor TNode.Create(PData : Integer); …

Member Avatar for rockberto
0
108