Ah, I just realised its codeproject MVP's :)
Eddie_NG
Posts
-
MVP Icon -
Don't you just love it ...Yeah, Did it again the other day :/
-
MVP IconExcuse my ignorance, but how do you become an MVP?
-
BSTR ConversionYou could add the result from this to your string buffer: _com_util::ConvertBSTRToString( yourBstr )
-
read an excel filehttp://www.codeproject.com/database/cspreadsheet.asp Thats just one I found in a quick search.
-
LED connected to parallel port and flashes Morse CodeCool :) I've always wanted to try something like this...
-
Live Messenger issues anyone?Same here, I can see my contacts status. But not send/recv messages.
-
A simple {} questionCurly brackets or braces should do :P
-
A simple {} questionParentheses I believe. Edit: Oh, Read the topic wrong, Parentheses are ().
-
AtlAxWin & IE 7When you run a javascript / html document in ie from your hard drive, it displays that "Allow blocked content". I think that's whats stopping it. Any other info on how to get around this?
-
AtlAxWin & IE 7Hello there, I have recently updated to internet explorer 7 from firefox. I have Internet explorer 6 beforehand. When I called, CreateWindow with "AtlAxWin" as the class, and the location of my flash file as the title, I can load flash movies from the hard drive.. but when I try and access them from the web, I cannot anymore... I get script errors obviously from the browser component it uses. Dos anyone know why its doing this since I updated? Is it flash 9 that came with the browser that's doing it? or what? Many thanks, Eddie
-
Open Explorer from VC++ application....Try: m_explorerctrl.Navigate("http://www.yahoo.com",0,NULL,NULL,NULL);
-
get txt file sizeOnce you have opened your file: long size; fseek(file,0,SEEK_END); size = ftell(file); rewind(file);