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
~2K People Reached
Favorite Tags
Member Avatar for Zababa

Hey there guys :) I need to create a page (HTML) which contains some static content, and an `iframe`. The `iframe` is used to contain an external page, so I am trying to 'inject' the source of the page into the document element of the` iframe`. You would ask me, …

Member Avatar for asmira
0
247
Member Avatar for Zababa

Hello there guys! :) It's been quite a while since the last time I've been here. I am currently working on topics different from my usual, and I have found myself baffled by a problem. So, here goes: I am working on a web application which collects user fiscal data. …

Member Avatar for chrishea
0
207
Member Avatar for Zababa

Hello there guys! :) I've been given a sample code for my upcoming assignment in Computer Graphics and, according to the guide available in the course's site, I've set up Visual Studio 2008. What we've been given is a solution with some sample code which we must use as a …

Member Avatar for Zababa
0
212
Member Avatar for Zababa

Hey there guys! :) I'm quite a newbie to Android programming, and I need to get the dimensions of the screen, that is the visible area of the screen. I know I can just set the layout of the controls in the .xml file, but I explicitly need to do …

Member Avatar for Zababa
0
116
Member Avatar for Zababa

Hello guys! :) I just wanted to ask something so that I can clear up things in my mind. What is the difference among Carriage Return ('\r'), New Line ('\n') and Line Feed? Is it correct to say that \n = \r + LF ? Thank you in advance! :)

Member Avatar for Zababa
0
159
Member Avatar for Zababa

Hey there guys. I need to load data from a MS Access database into my application, but when I try to do so, I get either an error in my FROM clause, while data from precedent tables has already been loaded using that same FROM clause [which changes programmatically every …

0
74
Member Avatar for Zababa

Hello there, guys! I'll get right to it. I am coding in VB, using Visual Studio 2005, and I need to retrieve the data from a MS Access database. The thing is, I need to use a SQL statement to do so, right? Therefore, I need to know the number …

Member Avatar for jireh
0
114
Member Avatar for -jOHn BeneDict-

[code]#include<stdio.h> #include<conio.h> main() { float x,y,z; clrscr(); printf("\nThis program calculate if you are Underweight,Healthy or Overweight"); printf("\n\n Enter your weight in kilograms:"); scanf("%f",&x); printf("\n\n Enter your weight in meters:"); scanf("%f",&y); z=((y*y)/x); if(z<20){ printf(" the Quetelet-index is: %f",z); printf("\n\n\tUnderweight"); } else{ printf("\n the quetelet-index is : %f",z); printf("\n\n\tOverweight"); } getch(); return …

Member Avatar for Zababa
0
122
Member Avatar for Zababa

Hello there, guys! I am quite some time now into programming, but have been dealing with C source codes for a short time. After creating some very basic programs, I want to do something more "sophisticated", might I use this expression. But let me not beat around the bush and …

Member Avatar for WolfPack
0
232
Member Avatar for Zababa

Hello there, guys! I am relatively new to programming in C, and I still have a lot to learn. I am currently using Dev C++, but I work in C only. My problem is that I need to fill a 2D table with some multi-character variables, and I don't know …

Member Avatar for jim mcnamara
0
414
Member Avatar for Zababa

Hello, guys, and thank you in advance! I am trying to make the program stop running for six seconds. I don't know, however, how to use the system clock. The code I came up with is something like this: PROGRAM TIMER; VAR LINE:STRING; X, S:INTEGER; BEGIN REPEAT WRITE ('TYPE ANYTHING …

Member Avatar for Zababa
0
369
Member Avatar for Zababa

[FONT=Georgia]Hello to everyone who sees this post! I am not very experienced in programming, but I have some basic knowledge, and the first real programming language I happen to learn is Dev Pascal. I have compiled a program which generates random numbers, using the RANDOM(); function. It is actually a …

Member Avatar for Zababa
0
180