Hmmmm..Doesn 't ring a bell..But i do remember at the end of every level you had to shoot out a bridge kinda thingy..I remember because i was on a high score run and forgot to do that and crashed the plane in to the bridge..Frustrating..That was my last life..Ah those were the days..No saves no checkpoints :) ..
Colwin
Posts
-
Speaking of the good old days... -
Australia Win Test with Ten Balls remaining...Wow...dam i missed it..caught a bit before i left for work this morning..
-
Speaking of the good old days...Hey i'm younger than 25 and i have played on the atari. I think it was the 2600 (The 1986 version) Clickety[^]. There was a game i used to play don't quite remember what the name was but it involved flying a plane on a pink background and flying over fuel cans to refuel. And there were the classics of course PacMan and Donkey Kong. I still have it around at my mom's place I think. Will have to take the dust off and see if it still works. Corrected link
-
Someone's been watching CSIA Wong wrote:
Quick, somebody build a VB GUI to trace the IP! ;P
He he, that one cracked me up to when I watched. No one around me got what was so funny about it. :P
-
Crystal Reports 2005- Group totals in the page footerThe sub report works like a charm Thanks Colwin
-
Crystal reports 2005 Suppressing page headers when there is a subreport (in the report footer)Here is what i have spent the past day banging my head against. I have a report with page headers and in the report footer i display two subreports and i need to suppress the page header when the subreports are displayed. From what i understand i need to write a formatting formula but i have no idea what this formula is or what it looks like I am very new to Crystal reports. Any help will be appreciated Thanks in advance Colwin
-
Crystal Reports 2005- Group totals in the page footerThank you for your response. i need the information at the end of the report. The end of the report need the count of all the employees in each department like this Dept1 10 Dept2 14 . . . . like that. I don't know at the start how many departments are there i will look at embedding a sub report at the end of the report Thanks again Colwin
-
Crystal Reports 2005- Group totals in the page footerHi Guys, I'm totally new to Crystal reports and this problem has me stumped. Here it is, lets say i have a table of employees this table has the departments they work in too and i want to display the number of employees in each department at the end of the report(in the page footer) Here is what i did so far Added a new group and grouped the records according to the Department name This gives me the total of the employees in that department but it appears within the table i created I want these to move in to the page footer If i do move it to the page footer i get the total of only one group Been banging my head against this for the past couple of days now. I'm sure i'm missing something obvious. Do i need a formula Field??? Also if i still want the group totals but i need the records sorted on another field is that possible?
-
How to avoid mails in spam folder??How about asking the customers to add you to their white list? or to mark your emails as not spam?
-
OpenFileDialog Initial Directory FTP Directory - Plz Helpp - 2nd tryOk are you sure you are not setting it again after that??
-
OpenFileDialog Initial Directory FTP Directory - Plz Helpp - 2nd tryThis should work. If the user name and password are wrong it should prompt you for them Did you step thru the code with the debugger and see whether the initial dir is being set?
-
browse network directoryAre you using the open file dialog to select and open files? What is the code within the IF?
-
OpenFileDialog Initial Directory FTP Directory - Plz Helpp - 2nd tryCan you post some code? Where you set the dialogs initial directory?
-
browse network directoryCan you please post some code that you are using?
-
OpenFileDialog Initial Directory FTP Directory - Plz Helpp - 2nd tryTry this
mOpenFileDialog.InitialDirectory = string.Format("ftp://{1}:{2}@{0}", server, userName, password);
mOpenFileDialog.ShowDialog(this);Be careful using the username password because if they are wrong the dialog will ask the user for a username password in a pop up
-
browse network directoryYou mean you want to programmatically browse a network drive? Or you want to map a network drive thru your program?
-
remember credentialsYou could encrypt the data and then store it in the registry And when the user signs in the next time just pick up the values from there and pass it to the Authentication system you are using hope it helps
-
is asp.net validators are safe to useIf i turn javascript off on my browser and then visit your page there will be no client side validation on my inputs. And if there is no server side validation then yes i may be able to perform SQL injection or other attacks on your website this is why server side validation is also very important and most definitely needed
-
[Message Deleted]Modified my previous post. look it over
-
[Message Deleted]Rajesh B Prajapati wrote:
onClinetclick="make_blank();"
Don't you mean onClientClick="make_blank();"? onclick also works as far as i know