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
Ranked #4K
~3K People Reached
Favorite Tags
Member Avatar for glindhot

<input type="radio" name="Wed" value="" checked>None <br /> <input type="radio" name="Wed" value="Class 1">Computers <br /> <input type="radio" name="Wed" value="Class 2" >Physics (1st 5 weeks) <br /> <input type="radio" name="Wed" value="Class 3">Astronomy (2nd 5 weeks) <br /> <input type="radio" name="Wed" value="Class 4">Mathematics <br /> <input type="radio" name="Wed" value="Class 5">Literature <br /> This …

Member Avatar for diafol
0
159
Member Avatar for glindhot

A program I wrote calculates ratings for the winner and loser of a sporting event. As new results are added the ratings are updated, ie from Pre to Post. It works fine. I also need a version in Excel but I have a problem. Example of the problem: John’s Post …

Member Avatar for SteveInAlabama
0
82
Member Avatar for glindhot

I am rather fond of frames – a static navigation bar suits me fine. I wanted to put a frame on my homepage but not if it meant problems for browsers, etc. My solution was a combination – a standard frameless page but with an optional link to a frame. …

Member Avatar for scrappedcola
0
64
Member Avatar for jake16

Hi I have Turbo pascal and my teacher told us to find how much a guy will earn if he puts in a hundread dollars a month till he's sixty at 5 percent interest. (compound interest that is) Help me please, Here's the code:= Program retirement_fund (input,output); USES winCRT; VAR …

Member Avatar for kalish88
0
1K
Member Avatar for harish92

In a game of Hangman, a setter of the word/phrase is required to enter a phrase. However, I was wondering if there was any way to input data blindly, so that the guesser cannot see the phrase getting typed in. An example of its use would be passwords being entered.

Member Avatar for FlamingClaw
0
167
Member Avatar for glindhot

[code]begin Inc(GamesThisPlayer[Winner]); if GamesThisPlayer[Winner] = SampleGamesBatch then ProvisionalRating[Winner] := Rating[Winner]; Inc(GamesThisPlayer[Loser]); if GamesThisPlayer[Loser] = SampleGamesBatch then ProvisionalRating[Loser] := Rating[Loser] end;[/code] This extract of code is from a player rating program. A player either wins or loses. When a player has played a sample batch of games (20 in this case) …

Member Avatar for glindhot
0
131
Member Avatar for sura17

This is what i have done so far:- [CODE] Program ssd; uses wincrt; var x:real; Begin x:=1; repeat clrscr; gotoxy(32,0); writeln(x:5:2); x:=x+0.001; until KeyPressed; clrscr; gotoxy(20,0); writeln('You Have Filled The Amount Of £',x:5:2); end.[/CODE] This is my ticker, it goes up on 0.01's forever but its slow and i did …

Member Avatar for glindhot
0
144
Member Avatar for angrita

I have just been requested by my wife's office to get a suite of GWBASIC vers 3.23 progs currently on W98SE to run on XP Pro . I have it running, however with 2 questions: 1. It runs in a very small fixed window. I can run full screen but …

Member Avatar for jwenting
0
176
Member Avatar for afarr

I want to fill a matrix randomly with True and False. The code below does produce a matrix where the proportion of True is roughly p, but all the Trues are at the beginning, and all the False at the end (so it looks like it generates the same random …

Member Avatar for MarioV
0
721
Member Avatar for bob on whidbey

I've created a playing card descendent of TCustomControl and I want it to have rounded corners. The card is displayed in a Paint procedure where I determine the bitmap and then use a Canvas.Draw(0, 0, FCardBMP); This approach works well except - no rounded corners. Setting FCardBMP.Transparent := true; doesn't …

Member Avatar for Duoas
0
143
Member Avatar for glindhot

[code]program pics; var N : integer; OutString : string; begin for N := 1 to 6 do begin Str(2*N, OutString); writeln('image'+ OutString) end end.[/code] That is the code I've got and here is its output: image2 image4 image6 image8 image10 image12 but here is the output format that I want: …

Member Avatar for glindhot
0
264