|
|
|
|
|
|
|
|
|
| |
|
|
|
ILDASM and Obfuscation
ILDASM and Obfuscation, these two things are not very familiar to most .NET developers. This article http://aspalliance.com/1108 provides a way to begin the journey by discussing what they actually mean.
Thanks
Sandeep
|
|
| | |
|
|
|
|
|
|
|
| |
|
|
|
How to save the image files directly into the database without storing them physically
See how to save the image files directly into the database without storing them physically. In this article sandeep discussed how to do so using VB.Net and MS Acess (Can make use of any database.). One can find few such article but based on stored procedures, but this article uses inline queries.
Just find it out at :
http://aspalliance.com/1083
Thanks
Sandeep
|
|
| | |
|
|
|
|
|
|
|
| |
|
|
|
CodeSnip: How to add data/values for corresponding entries in a Combo Box using Visual Basic .NET
While using Visual Basic .NET it has been experienced by many developers that it has a drawback in maintaining data or value for corresponding entries in a combo box. In this article, Sandeep provides a solution for the issue with the help of code samples.......
Please Visit http://aspalliance.com/1059 for details
Thanks Sandeep Acharya
|
|
| | |
|
|
|
|
|
|
|
| |
|
|
|
Multithreading in .Net
Threads are also known as lightweight processes. But if we go into the depth then we can know that a thread is not actually a process rather than it provides ways for executing different parts of a program. Now lets discuss what actually means by multithreading. Multithreading (as name suggests multi+threading) is nothing but efficient execution of multiple threads at a time to enhance the performance of the application. For example : We are doing a file copy operation with a status bar on UI indicating the completion percentage. Here we need to keep track of how much file size is copied and at the same time we also need to advance the progress bar accordingly. This thing one can’t do efficiently in a single thread and you have to go for multiple threads. The above one is just an example where we are forced for multithreading but when we are not forced also we can go for this choice for the betterment of the application performance. And of course that all depends on how effectively the thread is implemented in an application. Most of the developers don’t use to write multithreaded applications and continue with a single thread. But the efficient use of threads can give birth to a highly powerful application.
Want to know more on Multithreading? Please go through the following link. http://aspalliance.com/1028_Multithreading_with_an_Example_of_NET_Application
Thanks
Sandeep Acharya
|
|
| | |
|
|
|
|
|
|
|
| |
|
|
|
Boxing and Unboxing in .Net
Converting of a value type to a reference type is known as Boxing. And similarly the reverse (reference to value type) is know as Unboxing.
Please look at the following link if you want to know more. http://aspalliance.com/986
Thanks
Sandeep Acharya
|
|
| | |
|
|
|
|
|