Actual Results
- Lieven
- Forum: Hardware
- Topic: Processors
- Subject: Processors
- Replies: 3
- Views: 935
- Subject: Processors
Posted: June 8th, 2004, 4:34 am
Check out dell...
http://www1.ap.dell.com/content/products/category.aspx?c=au&id=notebooks_au&l=en&s=dhs&~ck=mn
- Lieven
- Forum: Programming / Scripting / Coding Forum
- Topic: unexplicable "subscript out of range" (VB5)
- Subject: unexplicable "subscript out of range" (VB5)
- Replies: 1
- Views: 2936
Posted: May 26th, 2004, 5:09 am
Straight from MSDN: Only the upper bound of the last dimension in a multidimensional array can be changed when you use the Preserve keyword; if you change any of the other dimensions, or the lower bound of the last dimension, a run-time error occurs. Thus, you can use code like this: ReDim Preserve ...
- Lieven
- Forum: Microsoft Windows Forum
- Topic: Need IP help
- Subject: Need IP help
- Replies: 15
- Views: 2585
- Subject: Need IP help
Posted: February 25th, 2004, 6:18 am
Why would you want a static ip? to run a server?
If so, you can always use tzo.com or dyndns.org to assign a static hostname to your dynamic ip.
If so, you can always use tzo.com or dyndns.org to assign a static hostname to your dynamic ip.
- Lieven
- Forum: Programming / Scripting / Coding Forum
- Topic: Visual Basic Help
- Subject: Visual Basic Help
- Replies: 2
- Views: 1027
- Subject: Visual Basic Help
Posted: February 25th, 2004, 6:09 am
If you need microsoft development help -> MSDN
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vblr7/html/vafctinstr.asp
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vblr7/html/vafctinstr.asp
- Lieven
- Forum: General Discussion
- Topic: What automobile do you drive?
- Subject: What automobile do you drive?
- Replies: 68
- Views: 6289
- Subject: What automobile do you drive?
Posted: February 25th, 2004, 6:04 am
Just ordered the new Renault Mégane, don't have it yet
I was hesitating to buy a Miata, but i figured out I couldn't take two tennisbags with me
I was hesitating to buy a Miata, but i figured out I couldn't take two tennisbags with me
- Lieven
- Forum: General Discussion
- Topic: Best anti virus program?
- Subject: Best anti virus program?
- Replies: 60
- Views: 16093
- Subject: Best anti virus program?
Posted: February 24th, 2004, 2:56 am
I'd recommend AVG for home use since it's free.
I really hate the AVG interface, so I run Symantec/Norton Antivirus 2003... It's lightweight, has fast updates and is very stable!
I tried NAV 2004 beta (final RC) but it made my machine look like my c64
I really hate the AVG interface, so I run Symantec/Norton Antivirus 2003... It's lightweight, has fast updates and is very stable!
I tried NAV 2004 beta (final RC) but it made my machine look like my c64
- Lieven
- Forum: Programming / Scripting / Coding Forum
- Topic: unix authentication?
- Subject: unix authentication?
- Replies: 11
- Views: 3226
- Subject: unix authentication?
Posted: February 24th, 2004, 2:47 am
I've never done this before on unix so I don't know what security risk it causes, but my first idea would be to do a system "sudo" with the given username and password. You'll know directly if the credentials are correct without having to abuse /etc/shadow
- Lieven
- Forum: Website Design Forum
- Topic: track websites in other windows
- Subject: track websites in other windows
- Replies: 5
- Views: 1543
- Subject: track websites in other windows
Posted: February 24th, 2004, 2:40 am
You could do it with a windows API call from an ActiveX object browsing through the titles of all open applications, however I wouldn't recommend it for a regular website (although it could be useful for an intranet). With Javascript, you could check out the parent window, but you wouldn't be able t...
- Lieven
- Forum: General Discussion
- Topic: What screen resolution do you use on your personal computer?
- Subject: What screen resolution do you use on your personal computer?
- Replies: 53
- Views: 4474
Posted: February 24th, 2004, 2:33 am
I can't vote since I use 1400x1050 on my laptop 
- Lieven
- Forum: General Discussion
- Topic: What is your first name
- Subject: What is your first name
- Replies: 74
- Views: 4796
- Subject: What is your first name
Posted: February 4th, 2004, 3:10 am
Mine is "Lieven". It's pronounced as "leaving" but instead of "ing", it's more like "an" (as in an apple)
- Lieven
- Forum: Programming / Scripting / Coding Forum
- Topic: API Calls
- Subject: API Calls
- Replies: 2
- Views: 1338
- Subject: API Calls
Posted: February 2nd, 2004, 4:25 am
in your API call, you should use &ipbuffer since otherwiste the function can't save anything in it...
I'm not 100% sure since I've never used those from within C++, but at first sight, it should do the trick
I'm not 100% sure since I've never used those from within C++, but at first sight, it should do the trick
- Lieven
- Forum: Website Hosting Forum
- Topic: Best Choice
- Subject: Best Choice
- Replies: 6
- Views: 1732
- Subject: Best Choice
Posted: January 28th, 2004, 6:51 am
I'm with yrHost for the moment. They provide a lot of bandwidth and multiple domain support for just a few bucks. The speed isn't that great and the service is almost worthless, but who needs service on a cheap cPanel hosting?
- Lieven
- Forum: General Discussion
- Topic: Anyone watching the Australian Open?
- Subject: Anyone watching the Australian Open?
- Replies: 20
- Views: 1790
- Subject: Anyone watching the Australian Open?
Posted: January 28th, 2004, 6:30 am
Ofcourse I follow the AusOpen... With 2 Belgian girls doing very well, it would be a shame not to.
Go Kim Clijsters!
Go Kim Clijsters!
- Lieven
- Forum: General Discussion
- Topic: What do you do?
- Subject: What do you do?
- Replies: 36
- Views: 2465
- Subject: What do you do?
Posted: January 28th, 2004, 6:28 am
I'm working as an analyst/programmer in a top 3 bank in Belgium.
- Lieven
- Forum: Programming / Scripting / Coding Forum
- Topic: Separating a string into words
- Subject: Separating a string into words
- Replies: 1
- Views: 1829
- Subject: Separating a string into words
Posted: January 19th, 2004, 3:34 am
I don't know which string class you have to use, but if you can use the cstring class, the only methods you need are find, left and right... CString name( "John Foo Bar Doe" ); int spaceposition = name.Find( ' ' ); with name.Left(), you can grab the firstname. after that, you can loop with name.Find...
