|
|
Stories recently tagged with 'VB.NET'
|
|
published 20 hours, 30 minutes ago, submitted by
whoisvaibhav
1 day ago
blog.gadodia.net — This is the first time I have envied VB over C#. Here's a thing that is useful and you can do in Vb.Net, but not in C#. read more...
1 comment
|
category: C# | Views: 349
|
|
tags:
VB.NET, ExtensionMethods, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
scorpion53061
2 days ago
kellychronicles.spaces.live.com — For an application, it became necessary to find all handles (hWND) associated with that process and not just the main window. read more...
add a comment
|
category: VB.NET | Views: 2
|
|
tags:
VB.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
scorpion53061
2 days ago
kellychronicles.spaces.live.com — There are times when working with network drives it becomes necessary in an application to create or remove a network share. We don't want an unhanded exception if the path is not mapped correctly or if it does not exist. read more...
add a comment
|
category: VB.NET | Views: 1
|
|
tags:
VB.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
scorpion53061
2 days ago
kellychronicles.spaces.live.com — Basically it is in a memory stream and we are trying to get a specific value of a node in the response. read more...
add a comment
|
category: VB.NET | Views: 0
|
|
tags:
VB.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
scorpion53061
2 days, 3 hours ago
kellychronicles.spaces.live.com — implement a check digit sum number for this address correction service. When a alpha+number is given, it should convert to this check digit algorithm Eg if I input ID1234, the check digit sum would be : ID12343 read more...
add a comment
|
category: VB.NET | Views: 1
|
|
tags:
VB.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
scorpion53061
2 days, 3 hours ago
kellychronicles.spaces.live.com — The example for writing the data to an array and sending it to a spreadsheet at http://support.microsoft.com/default.aspx?scid=kb;EN-US;306022 is great and where my thinking on this began. It was inadequate however to deal with datasets and the problems encountered in dynamic data. read more...
add a comment
|
category: VB.NET | Views: 3
|
|
tags:
DataSet, Excel, VB.NET, array | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
scorpion53061
2 days, 3 hours ago
kellychronicles.spaces.live.com — we need to save data (i.e. a dataset) to the local machine but not necessarily expose the data within to the end user outside of the application. read more...
add a comment
|
category: VB.NET | Views: 2
|
|
tags:
encryption, VB.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
published 2 days, 18 hours ago, submitted by
chrissie1
4 days, 4 hours ago
blogs.lessthandot.com — Extending the System.Drawing.Image clas to make a thumbnail easy way. Instead of using getThumbnail you just use Tothumbnail and a maximumsize, optional parameter is if you want to keep the aspect ratio. read more...
4 comments
|
category: VB.NET | Views: 176
|
|
tags:
Image, System.Drawing, VB.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
docluv
5 days, 9 hours ago
professionalaspnet.com — Dealing with Null values (nothing in VB.NET) is a common problem for programmers of any stripe. Null dates stored in the database seem to be a common issue developers experience when they start dealing with null values. Null values in the database for a value type poses a problem in the application. The .NET framework provides Nullable Types, a Coalesce operator in C# and If in VB.NET that can help the situation. read more...
add a comment
|
category: C# | Views: 5
|
|
tags:
VB.NET, nothing, C# | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
hanto
29 days, 2 hours ago
en.blog.hiddenbyte.com — In some remoting scenario, you will need to detect client’s IP address. The client’s IP address can be obtain by creating a custom sink and link the custom sink to the server channel. Here are the samples for detecting the IP address. read more...
add a comment
|
category: VB.NET | Views: 26
|
|
tags:
VB.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
crpietschmann
29 days, 22 hours ago
codeproject.com — This code snippet illustrates how to capture desktop or any window to bmp file with minimum coding programmatically. It also demonstrates a neat way to save device context (DC) to file. For one of my application, there was need to take screenshot of active window, I searched net but couldn’t find any simple and easy code to do same. There were few ones but were too easy to understand, hence thought of writing my own code and here is the outcome. read more...
add a comment
|
category: VB.NET | Views: 17
|
|
tags:
Win32, VB.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
johnrudy
1 month, 8 days ago
codeheaven.info — Interesting piece on how the CLR handles Visual Basic's Static keyword for statically-defined local variables. read more...
add a comment
|
category: VB.NET | Views: 7
|
|
tags:
VB.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
bigtoe
1 month, 10 days ago
lysaghtn.weebly.com — It is useful in lots of places to be able to capture and display the output from an application that was launched and base decisions on that output or else display progress to the user based upon that output. Here is a fully working example of such a class. There are a number of threading issues covered in this example. This is currently used in our build environment and in subversion hooks to analyze the output in pre-commit hooks to determine if the changes are allowed to the repository.
read more...
1 comment
|
category: VB.NET | Views: 11
|
|
tags:
VB.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|
|
submitted by
bigtoe
1 month, 10 days ago
lysaghtn.weebly.com — Using SyncLock (or lock in C#) to block all threads accessing a block of code can be overkill. SyncLock requires that all CPU instructions be cleared from the registers so that thread synchronization can be performed safely and it also requires a lot of management by the .NET threading libraries.
In certain situation where multiple threads are running, you may require that just a single thread execute a piece of code at any one time. I've used this in situations where multiple threads are there for performance reasons but only 1 thread at a time should say clear down/refresh cache entries, but any of those threads could do the work.
read more...
1 comment
|
category: VB.NET | Views: 11
|
|
tags:
VB.NET | tag it
Everyones tags: | Your tags: | |
|
|
|
|

Sponsored Link: www.carlist.ie
Ads via The Lounge
|