Brian
|
Registered User
|
|
|
Nov 30 |
comment |
Controlling Shortcut order in wix In truth, I suspect it isn't even possible. But my QA department was unhappy and so I figured I'd at least ask. |
|
Nov 30 |
asked | Controlling Shortcut order in wix |
|
Nov 30 |
answered | Binary encoding for low bandwidth connections? |
|
Nov 26 |
awarded | ● Popular Question |
|
Nov 25 |
answered | Dynamically create WIX files without having to edit the wix files manually |
|
Nov 25 |
revised |
Code Golf: Fractran Corrected output strings (108 is 2**2*3**2, 72 is 2**3*3**3) |
|
Nov 25 |
answered | EQATEC Profiler - The remote server returned an error: (404) Not Found |
|
Nov 25 |
comment |
Some cookies not sent to server @Josh: Actually, I was testing with multiple browsers. I mentioned Opera because of that setting. |
|
Nov 24 |
comment |
Some cookies not sent to server I typed something wrong when I tried to set the path in hopes of fixing it. :/ |
|
Nov 24 |
asked | Some cookies not sent to server |
|
Nov 23 |
comment |
Alternative to Content-Disposition in HTTP Header (c#) Note: If you omit the content-type header, some browsers (e.g. Opera) will give the file the wrong filename extension, regardless of what you chose for it. |
|
Nov 23 |
comment |
g++ error: ‘stricmp’ was not declared in this scope (but OK for ‘strcmp’) Considering that stricmp and strcmp are not the same (the latter is case sensitive), you might want to hesistate before changing them anyhow. |
|
Nov 19 |
comment |
Code Golf: Fractran Proof that 2^x3^y with (3,2) yields 3^(x+y): Clearly it will run through x times, because the 3^y part will never become divisible by 2 regardless of the value of y, but 2^x is divisible by 2 x times. 2^x*1.5^x = 3^x. 2^x*1.5^x*3^y=3^(x+y). |
|
Nov 19 |
comment |
Is there an algorithm to find unique combinations of 2 lists? 5 lists? @jellybean: There's nothing stopping him from calling itertools on set([a]) instead of calling it on [a]. |
|
Nov 19 |
comment |
Prevent windows from queuing shellexecute requests Well, I tried createprocess and it did not help. |
|
Nov 19 |
comment |
Prevent windows from queuing shellexecute requests GIving my test application a form had no effect. |
|
Nov 19 |
comment |
Prevent windows from queuing shellexecute requests @tyranid: I changed my test program to have a GUI, and passed its hwnd to shellexecute. This made no difference. |
|
Nov 19 |
revised |
Prevent windows from queuing shellexecute requests added 275 characters in body |
|
Nov 19 |
comment |
Prevent windows from queuing shellexecute requests Well, I tried createprocess and it did not help. |
|
Nov 19 |
comment |
Prevent windows from queuing shellexecute requests Good idea. I tried using both a shell32.shell object and calling the shell function. The former behaves the same and the latter, your suggestion, blocks completely until the program exits, which is even worse. |
|
Nov 19 |
comment |
Prevent windows from queuing shellexecute requests @Markj: The "real" app does have a form. And the ideal is to fix it without changing program.exe. |
|
Nov 18 |
comment |
Prevent windows from queuing shellexecute requests @tyranid: True. However, the only way that relates to the problem is that if program.exe used a UI, it would end up giving its message pump a chance to handle events (which would solve the problem in the same way manually calling doevents solves it). However, your discussion misses the point: I want to solve the problem by not having program.exe handling the events from the google.com shellexecute at all, not by making sure program.exe actually handles the events. The latter solution I already know how to do, as I mentioned. |
|
Nov 18 |
comment |
Prevent windows from queuing shellexecute requests @tyranid: The test application doesn't even use forms. |
|
Nov 18 |
comment |
Prevent windows from queuing shellexecute requests Actually, my problem is that I don't want to wait until it is done, rather than that I do. |
|
Nov 18 |
revised |
Prevent windows from queuing shellexecute requests added 142 characters in body |
|
Nov 18 |
asked | Prevent windows from queuing shellexecute requests |
|
Nov 18 |
comment |
How to Identify that IIS Restarted? I suspect (but verifying this would be smart) that he could put something in the Application_End event instead. |
|
Nov 18 |
revised |
Simplest, efficient ways to read binary and ascii files to string or similar in various languages. added 9 characters in body; edited tags |
|
Nov 16 |
comment |
How do you migrate a large app from VB6 to VB .net ? I played with doing this from VB6 to C# to see what it would take, in part due to conversations with coworkers about what it took to do such conversions. However, I've never actual done this for a production application. |
|
Nov 13 |
comment |
Display message in windows dialogue box using “cout” - C++ @Cheese: I would suggest having the students use a mix of messagebox (because it works) and stringstream (because it's a stream akin to cout) would be a better solution. See Stephen Newell's answer. Console programs and messagebox programs are rather different, and trying to force students to treat them similarly strikes me as a bad way to teach. |
|
Nov 13 |
comment |
Display message in windows dialogue box using “cout” - C++ Using this technique combined with Jerry COffin's technique will probably yield a program which, without changes to anything but the initialization, successfully turns cout into a messagebox. Also, it will suck (but might make this person happy). |
|
Nov 13 |
comment |
Why is it considered a bad practice to omit curly braces? I agree that curly braces may be faster to read, but when you want to see more stuff at once, it increases reading speed of the individual stuff but decreases comprehension speed and requires more re-reads. And things become plain painful when you have curly braces for serial errorchecking code with many lines like, if (badCondition) return; It is not always practical to refactor such code into an or conditional. |
|
Nov 12 |
comment |
Url format for internationalized web app? I think you'd be more apt to query with page/el?par1=x&par2=y . That is much easier to work with. |
|
Nov 12 |
comment |
Convert language abbreviation to full name, e.g. en to English? Why didn't you just use CultureInfo the same way you used RegionInfo (see my answer)? Your version is overcomplicated. |
|
Nov 12 |
comment |
Convert language abbreviation to full name, e.g. en to English? And code did follow :) |
|
Nov 12 |
answered | Convert language abbreviation to full name, e.g. en to English? |
|
Nov 11 |
comment |
How to use our custom font on our website Please don't do this. |
|
Nov 11 |
comment |
How to use our custom font on our website If all you're using it for is headlines, I'd just use images :) |
|
Nov 11 |
comment |
Hidden Features of Xpath+Xslt Apparently Xpath and Xslt don't have hidden features :( |
|
Nov 11 |
comment |
Prevent user keeping browsing information from my website What problem are you trying to solve? |
|
Nov 11 |
comment |
Best way to stress test a website support.microsoft.com/kb/231282 might be the same. |
|
Nov 11 |
answered | Prevent user keeping browsing information from my website |
|
Nov 10 |
comment |
Python __str__: Magic Console Yep, that's what I was thinking of. |
|
Nov 10 |
asked | Python __str__: Magic Console |
|
Nov 9 |
asked | Substitute User Controls on Failure |
|
Nov 9 |
answered | Finding and removing orphaned web pages, images, and other related files. |
|
Nov 6 |
answered | How can I tell that a directory is the Recycling bin in VB6? |
|
Nov 4 |
asked | How can I tell that a directory is the Recycling bin in VB6? |
|
Nov 4 |
asked | Why is Select distinct from function returning duplicates? |
|
Nov 3 |
answered | Desktop Namespace Extension in Windows 7: Unable to drag and drop |
