Forum: Geeks' Lounge Jan 23rd, 2008 |
| Replies: 10 Views: 1,143 Hello all been a while, years in fact. I don't know who remembers me but I did anti virus work on DaniWeb for a few years; back with DMR and all the other veterans. I am in college now, and majoring... |
Forum: C# Sep 6th, 2006 |
| Replies: 2 Views: 13,739 Could be as simple as....
if(tbUserName.Text != "username") //Textbox names tbUserName
{
MessageBox.Show("Wrong user name"); //show message
}
else
{
MessageBox.Show("Correct"); |
Forum: Geeks' Lounge Aug 27th, 2006 |
| Replies: 63 Views: 7,259 I think telling them may give them incentive to post more to reach there goal. But, maybe not ;). |
Forum: Game Development Jun 22nd, 2006 |
| Replies: 2 Views: 2,709 This isn't open gl. But it is DirectX, this shows how to overlay text in a game. Hope this helps :).
http://www.gamedev.net/community/forums/topic.asp?topic_id=367591 |
Forum: C# May 23rd, 2006 |
| Replies: 4 Views: 7,336 He wants to use the header of the file.
What if for some reason it has no extension? Then that way won't work ;). |
Forum: C# May 23rd, 2006 |
| Replies: 7 Views: 15,169 Complete Code.
FolderBrowserDialog folderDialog = new FolderBrowserDialog();
folderDialog.Description = "Select Folder";
if(folderDialog.ShowDialog() == DialogResult.OK)
{
txtTargetPath.Text... |
Forum: C# May 19th, 2006 |
| Replies: 4 Views: 7,336 Perhaps this will help?
http://www.devhood.com/tutorials/tutorial_details.aspx?tutorial_id=79
I am sure, you could get what you need from that code, in order to throw together a little class... |
Forum: Viruses, Spyware and other Nasties Apr 30th, 2006 |
| Replies: 6 Views: 1,974 Download hijackThis (http://www.merijn.org/files/hijackthis.zip). Extract it to its own folder. Then run it and select. Do system scan and save log. Post the contents of the log that pops up.
We... |
Forum: Viruses, Spyware and other Nasties Apr 15th, 2006 |
| Replies: 2 Views: 16,191 Hi :).
Please start HJT, and select "Do system scan only." Then, check these items.
O2 - BHO: (no name) - {17A9D5A9-E944-211F-E207-CEDC289742F0} -... |
Forum: Viruses, Spyware and other Nasties Apr 5th, 2006 |
| Replies: 6 Views: 4,796 That is correct. So when you go to
Start>Run> and type regedit
That comes up? If so I am pretty sure you have a virus.
If you belive you have a virus, please download Hijackthis... |
Forum: C# Apr 5th, 2006 |
| Replies: 2 Views: 18,082 Perhaps this will help you: http://www.codeproject.com/useritems/IsNumeric.asp
Let me know :). |
Forum: Viruses, Spyware and other Nasties Mar 27th, 2006 |
| Replies: 6 Views: 3,381 Hi,
Please download VundoFix.exe (http://www.atribune.org/ccount/click.php?id=4) to your desktop.
* Double-click VundoFix.exe to run it.
* Click the Scan for Vundo button.
* Once it's done... |
Forum: C# Feb 10th, 2006 |
| Replies: 5 Views: 2,989 So it would look somthing like this.
Process p=new Process();//Declare new process
p.StartInfo.FileName="notepad.exe";//Tell it to open notepad... |