Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+3
Strength to Decrease Rep
-0
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
0 Endorsements
Ranked #2K
~3K People Reached
Favorite Tags
Member Avatar for neigyl_noval

Hi everyone. I wonder why the following code doesn't draw anything. [code=java] package AssProgLang; import java.awt.*; import javax.swing.*; import java.util.*; public class AssOutput extends JPanel { public AssOutput(Queue translatedQueue) { this.translatedQueue = translatedQueue; outputFrame = new JFrame(); outputFrame.getContentPane().add(this); // outputPanel attributes outputFrame.setLocationRelativeTo(null); outputFrame.setPreferredSize(new Dimension(640, 480)); //this.setPreferredSize(new Dimension(640, 480)); outputFrame.pack(); outputFrame.setTitle("ASS™ …

Member Avatar for JamesCherrill
0
337
Member Avatar for NRaf

I'm going crazy. I've been trying to a linked list of a struct (which stores some strings and a character) however I've had no luck. It's just not working and I've been working on this for hours on end. Note: StorePtr is a pointer to the Store struct (which stores …

Member Avatar for jephthah
0
120
Member Avatar for neigyl_noval

how are we going to define data in the FS and GS register using TASM? For example: in data segment: .data ; data here then: mov ax, @data mov ds, ax mov es, ax how do we do something like that for the FS and GS?

Member Avatar for Salem
0
66
Member Avatar for neigyl_noval

Hi everyone! I am in Windows XP and this has been my problem whenever i use graphics mode in C. We are required to use the Borland Turbo C compiler IDE (with the blue background thing.) Here is the problem: Whenever I run the program in graphics mode, it always …

Member Avatar for neigyl_noval
0
194
Member Avatar for neigyl_noval

I am in Windows XP and this has been my problem whenever i use graphics mode in assembly. We are required to use a TASM assembler. Here is the problem: Whenever I run the program, it always runs on full screen. Is there a possible way to restore the size …

0
63
Member Avatar for |\|asrin
Re: Help

Hi I want to have a n*n matrix is there sombody to help me?? how i can write it??

Member Avatar for |\|asrin
0
103
Member Avatar for Colettek

My internet explorer program stopped working and i got an error mess"0x800106ba" I have done some research and know this is a windows defender error. I have tryed uninstalling it but the computer wont let me. I tryed restoring it and i can't do that either. Now no programs are …

Member Avatar for fabioxx
0
296
Member Avatar for jephthah

im going to risk getting a beating, because this is something i should (used to?) know... anyhoo, given a function, how do you tell the size of the array that is passed? obviously trying to find the sizeof the pointer doesn't work (it returns the size of the pointer, duh) …

Member Avatar for nalply
0
504
Member Avatar for Sune

Hello I have started to study C++ after having worked with a procedural language for many years. I have read a couple of C++ books (hmm, well at least looked into) and some tutorials about C++. I started to prepare a C++ quick reference guide for my own usage and …

Member Avatar for e.shankar87
0
221
Member Avatar for firehazrd0

I'm a toal noob to programming. i just bought a C++ book and im trying to develop some very simple programs. I'm using dev C++. I'm stuck on this one, its having an issue linking. here is my code: [code=cplusplus] #include <iostream> #include <math.h> #include <stdlib.h> #include <time.h> using namespace …

Member Avatar for firehazrd0
-1
100
Member Avatar for 35nando

Hello! When my program in C++ exits, it throws errors like: EInvalidPinter with message 'Invalid Pointer operation' ... and later: EAccessViolation with mesage 'Access violation at address 00000010 ... and finally: Abonarmal Program Termination I can't locate the code responsible for it ( I am using many libraries in my …

Member Avatar for neigyl_noval
0
316
Member Avatar for bernaise

I have a Dell 4500 with windows XP. I was trying to load the website for my company's VPN when that action caused all sorts of bizzare actions. First I cannot get into MSN explorer. The error message says that their is something wrong with the internet provider. However I …

Member Avatar for caperjack
0
67
Member Avatar for gdreisen

I'm very new to C and am working on a card game. I've got my cards and shuffle down, but I want each card to have a name. I made my cards inside an array of structs: [code] struct card { int value; int suits; int points; char name[20]; }; …

Member Avatar for dmachop
0
120
Member Avatar for rizillion
Member Avatar for mvmalderen
0
196
Member Avatar for djchrismyk

Can anyone help me? I am using a SONY VAIO VGN-FJ58GP and I just reinstalled my windows XP. After reinstalling my Windows XP the function keys is not working. All my drivers are working properly but there is no audio. I can see the speaker icon on the lower left-side …

Member Avatar for neigyl_noval
0
122
Member Avatar for Niesiol

I boot my PC, windows loads up, I type my login and password. After a while it shows desktop without any icons (just a wallpaper) also there is no taskbar. It stays this way 4ever. Happens also in safe mode and VGA mode

Member Avatar for mjdodd
0
148
Member Avatar for rizillion

[code=cplusplus] #include <iostream> #include<string> using namespace std; int main() { string str1="Amusement Park"; string str2="going to"; string str3="the"; string str; cout<<str2+''+str3+''+str1<<endl; cout<<str1.length()<<endl; cout<<str1.find('p')<<endl; cout<<str1.subtr(1,5)<<endl; str="ABCDEFGHIJK"; cout<<str<<endl; cout<<str<<endl; cout<<str.length()<<endl; str[0]='a'; str[2]='d'; cout<<str<<endl; return 0; }[/code]

Member Avatar for neigyl_noval
0
93
Member Avatar for kvprajapati

I have two integer numbers. I want to find which number is greater than other one without using relational operators.

Member Avatar for Dave Sinkula
0
153
Member Avatar for richardcyper

Arrange the following list of functions in ascending order of growth rate. If the growth rate of function f is less than the growth rate of function g, you write f < g. For functions having the same growth rate, use = to denote this case. Your answer therefore will …

Member Avatar for jephthah
-1
87