Is there a kind of "open source explorer" (not for net, for files!) like the Windows-Explorer or old-school filemanager? I tried customizing the explorer eith shell extensions, but it didn't work! Any suggests? mfg HintiFlo
HintiFlo
Posts
-
Open-Source-Explorer? -
File-ExplorerIs there a kind of "open source explorer" (not for net, for files!) like the Windows-Explorer or old-school filemanager? I tried customizing the explorer eith shell extensions, but it didn't work! Any suggests? mfg HintiFlo
-
My PicHey whose that girl in the left-top-corner? (OK, just the tits are of interest) hintiflo
-
Grrrr!!! Help in VC 7Bernhard wrote: btw.. i told you where i am from and what i am programming.. so what do you? i just know that you're interested in multitasking.. and that you like joseph newcomer I'm from Dambach, a tiny little in OÖ. I attended the HTL Steyr für Informatik (Hahaha..... ), recently I'm developing an app that programs aand reads data from a datalogger for temp-measurements. These measurements are done on cooling systems of semi-big engines (truck/generators/pumps). It needs (actually it should have, it gets, someday, maybe, no, it never gets any..) kinda realtime-capability for displaying data on the fly and the CDC (MFC-drawing context) already pi**es me off! I'm surfing CP for better draw-class. My full name is Florian Hinterleitner. On Monday I start at the FireDepartment in Linz. I#m afraid I'll get at least 2 mails/calls per day from the office (Engeneering Center Steyr): That feature would be nice, this operation could be faster, the diagramm flickers, what about a tiny animation here (aaaaahm, its a kernel-driver!),.... and so on. after I wanna study electronics in Vienna. your turn! mfg HintiFlo
-
Grrrr!!! Help in VC 7Bernhard wrote: what happened yesterday? sleeping? I can't afford beeing online all the time, still got the blu... still got a slow phone-modem-connection. Bernhard wrote: annoyed by talking - foreign - languages I wouldn't say annoyed (wos imma des a hast) but it's sometimes difficult to encrypt all the different slangs. I'm just glad CP exists! What do you think about the VC7. Neva saw it till yet, but it seems funny when you read the whole thread! mfg HintiFlo
-
We have a new euphemism for 'patch'What about a forum or sth. else where you post e**erience with SPs, bug fixes, apps, libraries, bla, bla, bla and everybody checks tehere before attempting to download sth. new? (Or am I just to blind to see it already existing?) mfg HintiFlo
-
Grrrr!!! Help in VC 7I'm kweel now with VC6, any reason to switch to VC7 (I don't do .NET)? mfg HintiFlo
-
Two question about window's timer??hemouse wrote: It seem that the program's interface can't updated until this long task has finished, what shoud I do in such case? As I posted, I suggest, updating not via timer, but polling data from a queue in another thread. Maybe it helps if you read my code, I have troubles with painting, so we could exchange our projs. But only if you sware not to laugh about me and my coding "style" :) :) :) :) ! Forget the email I sent yesterday, I'm on track about your question again!
-
timerHi Jerome there you find the article, source and demo: http://www.codeproject.com/cpp/duration.asp what is your app made for? mfg HintiFlo
-
How I know CD-ROM's door is Opened or Closed?Try (file-)reading-routines on the CD, if it fails drive is open, if it doesn't fail, drive is closed
-
Intel's secret weapon.Oh my godness!!!!!!!! I killed my monitor when I tried to shoot the Mircosoft-logo in your message! Don't post f**k like this anymore! (I mean the logo, not the info) mfg HintiFlo
-
And the winner of the 21st century award for horrendous UI's goes to...What is TrueSpace? (please don't shoot me for not knowing, hail me!) mfg HintiFlo
-
Edit box behaving strangelyRead Joseph M. Newcomers excellent article "Surviving the release" mfg HintiFlo
-
Creating Excel filesSee the COMEXCEL-sample in MSDN. OK, it still uses Excel, but you can "hide" the excel-window (see the tlh/tli-files after compiling the sample). If you really want to do it without an excel-instance, I would suggest .csv-format, where every value ending with " ; " is placed in another filed of an .xls could you submit (HintiFlo@gmx.at) pascal-codes you mentioned? I currently use the way COMEXCEL goes, but I also try to avoid excel running! I would try to recreate it for C++. mfg HintiFlo
-
Missile-tit for tatThe title "Missile-tit for tat" made me believe, it's about Tiffany Amber Thiessens (T-a-t) blown-up tits! mfg HintiFlo
-
what about dll applicationthere's an MSDN sample called COMEXCEL, which controls an Excel-programm out of a c++-app. Maybe youcan make it go in the other direction! good luck!
-
DlgBar using dlgtemplateCan I build a CDialogBAR from an in memory resource, a dlgtemplate? I prefer memorybased Dialogs then .rc-based one for several reasons and I wanna do so with DialogBars, too. Is it possible? What do you think about dlgtemplATE-Dialogs at all, any pros or contras? mfg HintiFlo
-
CNet Vision Serieskönntest ja R(est)österreich schreiben! Naja, klingt a net gscheiter. Bei was für einer Firma abeitest denn (bzw. wo tust Du so als würdest Du arbeiten, wie ich)? Wous für Richtung programmierst denn, Web, DataB, Hardware? I bin jetzt a bisserl lästig, wann i schon mal an Ösner auf CP find! Hast Du da no andere Erdäpfler troffn? mfg HintiFlo > hardcore gsiberger P.S.: A geh, über eich pseudo-schweizer wird bei uns ned bled gret, unsere deppn san d'Müviatla!
-
variable loading using XMLTake a look at CPs XML/Soap-corner! mfg HintiFlo
-
timerHi Jerome. Here's a simple class, it's not my idea, unfortunately I don't know whose copyright it is, I think it's from somwhere at CP: #pragma once class CDuration { protected: LARGE_INTEGER m_liStart; LARGE_INTEGER m_liStop; LONGLONG m_llFrequency; LONGLONG m_llCorrection; public: CDuration(void); void Start(void); void Stop(void); long GetDuration(void) const; }; inline CDuration::CDuration(void) { LARGE_INTEGER liFrequency; QueryPerformanceFrequency(&liFrequency); m_llFrequency = liFrequency.QuadPart; // Calibration Start(); Stop(); m_llCorrection = m_liStop.QuadPart-m_liStart.QuadPart; } inline void CDuration::Start(void) { // Ensure we will not be interrupted by any other thread for a while Sleep(0); QueryPerformanceCounter(&m_liStart);} inline void CDuration::Stop(void) {QueryPerformanceCounter(&m_liStop);} inline long CDuration::GetDuration(void) const { return (long)(m_liStop.QuadPart-m_liStart.QuadPart-m_llCorrection)*1000000.0 / m_llFrequency;} usage e.g.: CDuration durat; durat.Start(); FunctionCallToMeasure(); durat.Stop(); long ms_needed = durat.GetDuration(); I think the GetDuration return gives the time in milliseconds. I try to find the docu, then I can tell you more! Good Luck, Flo