tagged [vb.net]

another way to publish besides clickonce?

another way to publish besides clickonce? does vb.net have a different way to build an application without using clickonce?

26 Mar at 22:39

What is the best way to clear an array of strings?

What is the best way to clear an array of strings? What is the best way to clear an array of strings?

3 Apr at 13:29

Convert to UCS2

Convert to UCS2 Is there any function in Vb.net (or C#) that encodes a string in UCS2? Thanks

9 Aug at 08:15

How to make String.Contains case insensitive?

How to make String.Contains case insensitive? How can I make the following case insensitive?

10 Jul at 06:35

AES 256 Encryption: public and private key how can I generate and use it .net

AES 256 Encryption: public and private key how can I generate and use it .net Regarding AES 256 Encryption: - - - -

17 Sep at 17:26

Is C# code faster than Visual Basic.NET code?

Is C# code faster than Visual Basic.NET code? Is C# code faster than Visual Basic.NET code, or that is a myth?

3 Aug at 17:49

IntPtr vs UIntPtr

IntPtr vs UIntPtr This should be simple: I see everywhere people use `IntPtr`, is there any reason I should use `UIntPtr` instead?

1 Nov at 03:36

center MessageBox in parent form

center MessageBox in parent form Is there a easy way to center MessageBox in parent form in .net 2.0

13 Nov at 23:15

How to enable assembly bind failure logging (Fusion) in .NET

How to enable assembly bind failure logging (Fusion) in .NET How do I enable assembly bind failure logging (Fusion) in .NET?

13 May at 17:50

What's the difference between XElement and XDocument?

What's the difference between XElement and XDocument? What is the difference between `XElement` and `XDocument` and when do you use each?

16 May at 20:33

What is the equivalent of |= in Visual Basic?

What is the equivalent of |= in Visual Basic? What is the equivalent of the |= operator in Visual Basic? For example (C#): `flags |= MyEnum.SomeFlag`

25 Oct at 01:32

Create a new txt file using VB.NET

Create a new txt file using VB.NET How do I create an empty `.txt` file in the location `C:\my files\2010` using VB.NET?

13 May at 11:30

How do I get my C# program to sleep for 50 milliseconds?

How do I get my C# program to sleep for 50 milliseconds? How do I get my C# program to sleep (pause execution) for 50 milliseconds?

31 Aug at 21:29

vb.net - Functions and Arbitrary typed Generics

vb.net - Functions and Arbitrary typed Generics Is there a way to create a function/sub signature that accepts an arbitrary typed generic in vb.net.

13 Nov at 12:56

Why is Dictionary preferred over Hashtable in C#?

Why is Dictionary preferred over Hashtable in C#? In most programming languages, dictionaries are preferred over hashtables. What are the reasons behind that?

6 Mar at 00:56

Difference between BackgroundWorker and System.Threading.Thread

Difference between BackgroundWorker and System.Threading.Thread What is the difference between creating a thead using BackgroundWorker and creating a thread using System.Threading.Thread?

24 Oct at 19:41

Print to DotNetNuke Event Log/Viewer

Print to DotNetNuke Event Log/Viewer For debugging purposes, how can I print to the event log/viewer in DotNetNuke, using VB.NET or C#?

11 Jan at 14:19

Examples of Immutable Types in .Net

Examples of Immutable Types in .Net We know the concept of immutability but need to know few immutable types other than - - Are there more?

10 Feb at 03:49

With block equivalent in C#?

With block equivalent in C#? I know VB.Net and am trying to brush up on my C#. Is there a `With` block equivalent in C#?

21 Oct at 23:28

Get MAC Address when network adapter is disabled?

Get MAC Address when network adapter is disabled? Is there any way i can retrieve MAC Address when Network Adapter is disabled in .net? Thanks in advance,

30 Jun at 05:36

How can I get the current local hostname using C# or VB.NET?

How can I get the current local hostname using C# or VB.NET? I need to get the host name currently running the application. Any idea?

27 Dec at 16:32

ASP.NET How to get List of Groups in Active Directory

ASP.NET How to get List of Groups in Active Directory How can I get a full list of Groups in my Active Directory?

10 Mar at 03:25

What is a IRepository and what is it used for?

What is a IRepository and what is it used for? What is a IRepository? Why is it used, brief and simple examples won't hurt.

24 Dec at 23:28

Import CSV file to strongly typed data structure in .Net

Import CSV file to strongly typed data structure in .Net What's the best way to import a CSV file into a strongly-typed data structure?

21 Nov at 21:56

web.config batch="false"

web.config batch="false" What is the purpose of adding the batch="false" in the compilation tag in ASP.NET 1.1?