Franci Penov
|
Registered User
|
|
1h |
comment |
how to submit a form from one application to otherHttpWebRequest class can be used from ASP.NET app to make outgoing requests to other servers. |
|
1h |
comment |
how to submit a form from one application to other that works only if he controls both applications |
|
1h |
answered | how to submit a form from one application to other |
|
1h |
comment |
Free unmanaged memory allocation from managed code That is incorrect. The CLR knows how to free certain types of memory blocks allocated from unmanaged code, for example memory allocated using SysAllocString or CoTaskMemAlloc. |
|
1h |
answered | Free unmanaged memory allocation from managed code |
|
1h |
comment |
Is it good practice to NULL a pointer after deleting it? @Neil if people always agreed with each other, there would never be a discussion, right? :-) but back to the topic - take the following code: char a[10]; char b[5]; int i = 7; a[i] = 'x'; int j = i; i = 0; b[j] = 'z';. Should we not set i to 0, because there's a copy of its value and using that copy can lead to a bug? how are i and j here different from a pointer? the semantic of their values is a memory address; the only difference is it's a relative memory address, not an absolute memory address. but that does not make it necessarily a valid memory address... |
|
4h |
awarded | ● Nice Answer |
|
7h |
answered | Why is it important to do Email verification upon sign up and is it “mandatory”? |
|
8h |
comment |
Is it good practice to NULL a pointer after deleting it? @gma by that logig a pointer variable should be associated with the first value it is assigned and never be used for other values since it violates the principles of the defensive programming. But a pointer variable is no different than an int variables - it's just a memory storage for a value. if you want to be consistent you should not reuse other variables either and have them associated with the first value assigned to them. why are you feeling ok to set a counter to zero after you exit a loop, but you don't apply same to pointers? |
|
10h |
comment |
Is it good practice to NULL a pointer after deleting it? @Gman so I can't reuse a pointer variable? I allocate memory to that variable once and I never touch it after I delete that value? |
|
11h |
comment |
Is it good practice to NULL a pointer after deleting it? Whether there s a copy of the pointer is irrelevant to the question whether the pointer variable should be set to NULL. Setting it to NULL is a good practice on the same grounds cleaning the dishes after you're done with dinner is a good practice - while it's not a safeguard against all bugs a code can have, it does promote good code health. |
|
11h |
comment |
C++ delete - It deletes my objects but I can still access the data? @Neil when would setting the pointer to NULL after deleting hide an error? |
|
11h |
answered | Is it good practice to NULL a pointer after deleting it? |
|
11h |
comment |
Pranks involving writing a program Have you considered what material and reputation damage your actions could have brought to the company you worked for? |
|
12h |
answered | Writing a Programming Book: How Lucrative? |
|
16h |
accepted | Creating small setups to deploy dll? |
|
18h |
answered | Creating small setups to deploy dll? |
|
18h |
answered | Make form active after returning from cmd.exe in c#? |
|
18h |
revised |
Graphics in papers edited tags |
|
18h |
answered | The good way to display or not an image using MVC.net |
|
18h |
comment |
Who am I? How to use Microsoft Office Permission/UserPermission Ah, the age-old question "Who am I?". Always followed by "What am I doing here?" and other important philosophical questions, all coming down to "Life, Universe and Everything". You know it's only downfall from there into an endless search for the best ultimate architecture that will answer it. Alas, it'll be all for naught, for we all know the answer, yet cannot fathom its importance. (It's 42, since you had to ask...) |
|
19h |
comment |
.NET Frustration - Process.GetProcessById Returns New Reference Since these properties will not work if the process has already exited, you need to create a small wrapper class where you can store the values of these properties, as well as a reference to the Process class itself when you launch the process. And in the dictionary you use this wrapper as a key instead of the Process instance. |
|
19h |
comment |
.NET Frustration - Process.GetProcessById Returns New Reference if your app runs long enough, it is possible taht two of your Process instances to have the same PID. This is not a problem for the framework, since internally they still differ by the handle. However, for your code this will pose an interesting situation. So, to alleviate this, you can also use the time the process was started as an additional piece of info. Thus, the code that compares the Process instance you get when enumerating should check the Process Id and StartTime property. |
|
19h |
revised |
I just don’t know what it is, tried everything, IE 7 bug added 368 characters in body |
|
20h |
accepted | Which is the new recommended standard of HTML & Javascript? |
|
1d |
revised |
I just don’t know what it is, tried everything, IE 7 bug added 101 characters in body |
|
1d |
answered | I just don’t know what it is, tried everything, IE 7 bug |
|
1d |
accepted | WPF: New Window in a TabItem? |
|
1d |
revised |
I just don’t know what it is, tried everything, IE 7 bug added 1079 characters in body |
|
1d |
revised |
I just don’t know what it is, tried everything, IE 7 bug added 991 characters in body; edited tags; added 1081 characters in body |
|
1d |
comment |
Which is the new recommended standard of HTML & Javascript? @Boblet - your point being? there's quite big difference between level of support for HTML4 and HTML5 across the different browser. |
|
1d |
answered | WPF: New Window in a TabItem? |
|
1d |
revised |
How do I change this color in Visual Studio? (see screenshot) edited tags |
|
1d |
answered | Face Book Connect and Sign in with Twitter |
|
1d |
answered | Silverlight opensource projet Codeplex |
|
1d |
comment |
Why should I use WPF over Winforms? Any examples of WPF outperforming Winforms? @Cory - if you want to see something that can't be done in WinForms - chriscavanagh.wordpress.com/2009/08/… (and the rest of the samples on the same blog) |
|
1d |
comment |
Why should I use WPF over Winforms? Any examples of WPF outperforming Winforms? The multi-threaded talk is in reference to the fact that the visual-tree rendering pass happens on a separate thread. And yes, this is one of the big perf things in WPF that enables all the smooth fancy graphics that can't be done in WinForms. |
|
1d |
comment |
my class has 30 properties, unit testing is a pain no? yes, unit testing is real work. :-) |
|
1d |
comment |
Can’t draw on Internet Explorer WS_CLIPCHILDREN is not the problem with IE8. |
|
1d |
answered | Can’t draw on Internet Explorer |
|
1d |
comment |
.NET Frustration - Process.GetProcessById Returns New Reference @Matt - yes, you are correct, the OS can reuse the PID. I should've mentioned that the PID is representation of the identity of the process for as long as the process is alive. To represent the identity of a process after t's dead you need the PID and the time at which the process was alive. |
|
1d |
comment |
.NET Frustration - Process.GetProcessById Returns New Reference the process ID is the representation of the identity f the process. :-) so, your key should be the process ID. of course, you obviously want to keep the Process object associated with it plus some additional data that you keep in your current dictionary. You have to options - either expand the data you keep in the dictionary with the Process object and key it by the ID, or add second dictionary where you keep the Process objects keyed by ID. |
|
1d |
comment |
Completely halt application when showing a “you have crashed, we are sorry …” popup I just want to note (again) that showing a message on one thread is not a guarantee that other threads will not continue running. |
|
1d |
comment |
Completely halt application when showing a “you have crashed, we are sorry …” popup I agree that showing the popup is a good thing to do. However, a message box is pumping messages, and causing the app to continue running. What you want is to "freeze" the app at the moment of crash. Btw, if you want to enable hooking a debugger, you might want to look into using the Watson APIs which will enable JIT debugging. |
|
1d |
accepted | How do you organize your Software Development Infrastructure? |
|
2d |
comment |
MSAA COM-based ? I am not aware of a way to access MSAA through VBScript. As far as the CAccPropServices coclass, even if a class is exposed in the type library, that does not mean there is a class factory that can create it for you. Btw, as far as I am aware, this class is not intended for direct use by applications. |
|
2d |
answered | Completely halt application when showing a “you have crashed, we are sorry …” popup |
|
2d |
revised |
Kill JQuery AJAX overlapping requests added 14 characters in body; edited tags; edited title |
|
2d |
answered | How do you organize your Software Development Infrastructure? |
|
2d |
answered | Changed debug enviroment from VB6 to Visual Studio |
