| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8
Comments:
<0> sorry? <0> the log shows that someone is catching the exception and doing a TerminateProcess <0> instead of letting a JIT debugger get it <0> otherwise, the attached debugger would have seen a second chance AV and dumped the process <1> well, sometimes catching an exception and going away is the "right" thing to do (not often) <0> i don't think it's ever the right thing to do, not in windows <0> let the kernel32 unhandled exception filter fire <0> let watson dump so we can figure out what's wrong <0> otherwise, i get nothing in my top level exception handler to log, nor do i get a watson dump <0> my guess is it's a third party control we're using that's the culprit <2> morning <0> hmm, maybe i'll use reflector to look at their code <0> i wonder if they've obfuscated it <3> vawjr: if the result of a/b is 0.45345, shouldn't the float value take on 0.45345 and not 0 ? <2> yes picky_ <2> should
<1> picky_ NO <2> why not vawjr? <1> a/b is integer <2> if a,b are float <1> just because you do static_cast<float>(a/b) doesn't change a/b <0> reflector really is a fantastic tool <1> which is calculated as integer <3> vawjr: I get it now, thanks for the info. <2> if he will declare float a,b; <2> and cout<<a/b; <2> the result will be 0.34... <2> no ? <1> but a and b are already declared unsigned something <2> k <4> Off to office <5> hi <5> office? <5> [playing] Susperia - Situation Awareness [==== ]52%, 312 kbps, 44 kHz, pos: 2983/3295 [Stereo] <6> in visual studio, is it possible to have all TODO's (from all sources in project) to show up in the task list? <7> Can u help me with C cause i got bbaned on #c? <7> i need help with writing to binary file.. <7> Somebody...? <8> ummm /j #c so <7> i cant <8> if they banned you its for a reason <7> Can u help me with C cause i got bbaned on #c? <8> no <7> so what to do..? <7> where to go to? <8> cry? <7> talk with the, <7> talk with them for me <9> /join C main <9> Ah <8> he says he's banned <9> Yeh just noticed. <10> they kicked you for a reason <8> whining perhaps? <10> writng a binary file perhaps?? <8> you can try pasting your "code" somewhere and maybe somebody will help <11> Hi, I need a hint about getting the user group list (windows nt/xp) from an SID or the security token... <11> Meaby I could use the NetUserGetGroups function but it will retrieve all the group and then all the user related to each group. I'll need to filter all these data to retrieve the group list of a specific user... It will take to much time in our 20k+ users international domain. Anyone have an idea? <0> are you using ADSI? <0> sorry, lunch time, bbl <11> Actualy, I'm using the LogonUser function to retrieve the token.. but I'm stock there <12> I'm in window1, if i call window2.DoModal() will window1 still receive paint messages? <12> like, if window1 is blocked somewhere, is it repainting anyway? <13> depends on your framework <13> generally, if code is running syncronously in response to message loop events, then the paint messages will be blocked until the syncronous action finishes <13> recent versions of windows can "fake" the repaint message when your loop is blocked, just by repainting the last thing the window contained itself <12> ok, thats why it seem to repaint sometimes <12> but most of the time, the background gets grey and looks hanged <14> hi,i have a thread & a boolean varible both defined insaid a cl***,the thread call a callback function and the callback function call a callback procedure which is defined in the cl*** too,the thread,boolean varible & callback procedure are all <14> defined as static,but when i trying to read the boolean varible from insaid of the callback procedure msvc generate linker error : error LNK2001: unresolved external symbol ,therefor i cant compile my application,how to solve it ? <13> post the code at the site in the topic <14> too big <14> its just that i cant read a varible from insaid of callback procedure <14> :/ <8> is the callback static ? <14> yes
<13> as long as both the callback and variable are static instance functions, you should be fine <8> there you go <14> i have like: <14> static DWORD WINAPI th_ListWindows(LPVOID pwl); <14> static BOOL CALLBACK EnumWindowsProc(HWND hwnd,LPARAM lParam); <14> static BOOL KeepListingWindows; <13> remember to initialise it in global scope <14> thats what i defined insaid the cl*** <13> i.e. BOOL Cl***Name::KeepLIstingWindows = false; <14> i did in the constractor <8> you'll need to p*** the this pointer (somehow) to the static <11> anyone ever used AuthzComputeGroupsCallback? <13> none the less, humour me. add that line to the global namespace <8> sure why not... <15> damn ADSL max <16> hi, can anyone tell me what the deal is with mfc? does one need to download it and install/compile it? where would one obtain such a thing?, thanks <8> mfc come with your compiler <17> not express <16> okay if it's not in express (and i have express) is there anything i can do about it? <8> no <17> did you download the SDK ? <0> it doesn't come in the SDK <17> thanks <0> it's only Visual Studio SKUs or higher <17> I'll try to remember that this time <8> ATL does ? <0> ATL shouldn't either <16> that's irritating <16> so it's not freely available? <17> also peculiar <0> no <17> you'd think MS would try to be locking people in w/ MFC and ATL <16> that's what i would have thought <8> express is aimed at .net <0> most people would find using MFC to be quite fustrating (moreso, i mean) without Visual Studio <0> so there was never a reason to release it without Visual Studio <16> even express? <0> Express is aimed at hobbiests and students <8> you could look to alternatives <0> like qt, wx, win32gui, .NET <8> win32gui is ome that springs to mind <16> well actually i'm trying to run some source code i downloaded <16> it inherits cobject <16> could i get around that? <8> well you are sol <8> or write a simplified CObject :) <8> hardly worth it <16> i was thinking that but it's a mission <16> i'll just find something else <8> whats so specail about the code? <8> special <16> i'm just trying to work out how wav files work and just some little annoying details when reading from the files <8> you dont need mfc for that <16> like for example, what do you do if you're supposed to read a 4 byte number from a file in little endian, what does that mean? <16> i know i don't need it for that <16> but for the source i downloaded i do <16> do you get a 4 byte array <16> and convert it? <17> I use my toy bfstream code (toy in the sense that it doesn't to exhaustive (hell, any) error checking). it's posted at noidea username vawjr bfstream stands for binary fstream <16> cool , i'll check it out, thanks <17> if you need to swap the bytes (endian problems) there's always the ntohl and ntohs macros <18> it's been so long since i last used vb.. i think i forgot the syntax <17> that sounds like a blessing <18> lol <8> is there a syntax? <11> is there a VC6 equivalent to System.DirectoryServices (.net)? <8> I hear the Guantanamo prisoners are revolting <18> instead of writing "dim p as POINTAPI", i wrote "POINTAPI p" <18> lol <11> #pragma comment(lib, "DirectoryServices.lib") ? <0> CMind: ADSI (COM), and why in gods name are you using VC6? <18> i can't remember how to use their Collection object.. since i used to use ArrayList in C#, and std::list in C++, it's all mixed up now <11> heh, Pharmaceutical Analytic application written in vc6 (about 290mb of source code) <8> which bit of DirectoryServices?
Return to
#c++ or Go to some related
logs:
mini minor sabiha LCD dumb terminal
#london #c++ #linuxhelp #php famele msn adres Repair nrg-files #london #chatzone
|
|