Tagged Questions

Microsoft's Visual Basic .Net for Visual Studio 2010

learn more… | top users | synonyms

11
votes
3answers
599 views

What is a practical usage of Code Contracts in .NET 4.0?

In order to fully understand and take advantage of the new features and enhancements provided with the coming of the new .NET Framework 4.0, I would like to get an example of real-world application of ...
8
votes
3answers
82 views

Missing records in SQL server tables

I have a database in place with a client that seems to lose data overnight. They enter records and exit the system, and then claim to not be able to find them again the next day. The ID numbers in ...
6
votes
3answers
428 views

Has Object in VB 2010 received the same optimalization as dynamic in C# 4.0?

Some people have argued that the C# 4.0 feature introduced with the dynamic keyword is the same as the "everything is an Object" feature of VB. However, any call on a dynamic variable will be ...
5
votes
4answers
379 views

Entity Framework 4.1 - Relationships between non-key columns

I have 2 entities that are related, but the legacy sql schema essentially has 2 key columns for the same table (not a 2-column key: see below). I need to create a relationship back to the 'faux key' ...
5
votes
4answers
359 views

Difference between ByVal and ByRef?

What is the difference? I always use ByVal, but, I don't really have a good idea of when should I and when not...
4
votes
1answer
122 views

Tool to validate naming style in VB.NET following Hungarian notation

I'm maintaining a legacy ASP.NET website written in VB.NET. Our customers force us to use Hungarian notation for declaring variables and such: E.g: Dim sSomeString as String Dim oSomeObject as ...
4
votes
3answers
78 views

what is the meaning of the dollar sign after a method name in vb.net

what is the meaning of the dollar sign after a method name in vb.net like this: Replace$("EG000000", "0", "")
4
votes
6answers
421 views

Can a Visual Basic (.NET / 2010) file be split up for readability?

I'm writing a program in Visual Basic 2010. It's a HMI (Human-Machine Interface) and therefore has a whole whack of buttons that just send commands to other devices. As a result, there are a huge pile ...
4
votes
3answers
747 views

Thread safe variable in VB.NET

Is this the right way of declaration dbreaders when mulitple users access the same page? public dbReader as system.Data.IDataReader at class level or Dim dbReader as System.Data.IDataReader in each ...
4
votes
1answer
184 views

What is a good practical application example of the Dynamic Language Runtime in .NET 4.0?

I wish to better understand the real-world application of this new feature that consists the Dynamic Language Runtime (DLR). I would like: Brief explanation of how it could be used; A brief sample ...
3
votes
2answers
154 views

How to calculate time between 2 date

Can someone please help me make this work? I want to do in vb.net calculate time between to date like this: startdate: 2011/12/30 enddate: 2011/12/31 Calculate: ? hour ? minute ? secends ...
3
votes
6answers
116 views

Finding path of application using VB.NET

In a VB application I am building, I need to launch Outlook. Obviously, on every computer the path to Outlook will not be the same. Thus, I need to know how to find the path of Outlook on the user's ...
2
votes
3answers
122 views

VB.net adding parent and child records to MySQL db

I was asked to create a program that inserts records into one parent table and multiple child tables. My question is, how do I know what the PK is for the parent table, so that I may add it as a FK ...
2
votes
3answers
77 views

What does “R”c mean when mapping a network drive using this function

I copied code to map a network drive from http://www.vbforums.com/showthread.php?t=616519 to map the drive and http://cjwdev.wordpress.com/2010/05/30/delete-network-drive/ to delete the drive. I want ...
2
votes
2answers
635 views

Free deployment for Visual Basic 2010 Express application that requires admin rights

I'm using VB.Net and Visual Basic Express 2010. I'm looking to create a single .exe install file to distribute my application. But in order for my application to work, I need to mark my app. as ...
2
votes
1answer
191 views

FileInfo.Length always show a files total size, not actual current size

I am trying to monitor the progress of a large file copy proceedure (without manually copying the bytes of data myself) using the File.Copy([FileName]) command. So what I am trying to do is get the ...
2
votes
2answers
81 views

VB.NET, Classes & Modules Vs Functions

I have started learning VB.NET lately and have read 1 Step-By-Step beginners book and am now moving onto an Advanced book and both have failed to really explain what the point in modules and classes ...
2
votes
2answers
685 views

Convert mm/dd/yyyy to yyyymmdd (VB.NET)

Is there any way I can convert a date of format: dd/mm/yyyy to yyyymmdd format? For example from : 25/07/2011 to 20110725? in VB.NET?
2
votes
3answers
99 views

Querying SQL Server repeatedly (loop) is taking up memory that doesn't release back into the system

I have a VB web application that reads from a CSV file which contains about 300,000++ lines. The application will read line-by-line and for each line, it will query a table in a sql server database ...
2
votes
3answers
2k views

How to use temp table in Stored Procedure with LINQ to SQL

I use a temp table in a Stored Procedure with LINQ to SQL. I add the stored procedure to Linq to SQL dbml file then project occur error message "Unknown Return Type - The return types for the ...
2
votes
0answers
578 views

Use Webkit as browser control in VB.NET 2010

I'm developing an application where I want to use WebKit browser engine instead IE browser control, and I'm looking for latest version of WebKit which is currently behind Google Chrome 10, so far, I ...
2
votes
1answer
215 views

Visual Basic 2010: How do I reference one of many objects through an additional object? (Pointer-like behaviour?)

I am writing an application in Visual Basic 2010 Express. I have two objects of a class from a driver DLL that is provided to me. They have some of their own subroutines that I'd like to call, and ...
2
votes
1answer
427 views

VB.net application crashes without specific error

I developed one application in VB.Net 2010. It worked fine on my laptop. Now when I run this on another PC, it just crashes and give windows error as below. Application: CallinkMig.exe Framework ...
2
votes
1answer
244 views

wsdl.exe : how to generate proxy code when having same element name in operation?

I have a single WSDL file with many operation. But each of the operation soap body has the same element name , but in different namespaces. e.g operation1 has soap.body.op1:Service and operation 2 has ...
2
votes
1answer
758 views

How to change gridview font?

How change gridview font?in windows form
2
votes
1answer
191 views

What Does a double assignment in a VB.NET assignment accomplish?

I (new to VB.NET) am doing some code maintenance on a function that sometimes throws an exception "error converting string "False" (or "True") to type Integer." What I found was something equivalent ...
2
votes
4answers
182 views

What is the benefit and a common real-world practical application of using Tuples in .NET 4.0?

I have read about the Tuples provided with the coming-out of the new .NET Framework features, and still am I wondering about how it could be useful in real-world enterprise applications. Can one give ...
2
votes
1answer
975 views

Strong Naming an assembly using command line compile

I am trying to use NAnt in order to compile and sign an assembly using the vbc compiler. I have a project set up and am able to successfully sign the assembly compiling with VS2010. When I try to ...
1
vote
0answers
21 views

How to read data from an external hardware device using vb.net?

I have developed a simple software using VB.net, now i want to receive some data from an external device, i want to know if any way to learn "**How to read a hardware transmitted data using VB.net, ...
1
vote
4answers
225 views

Nullable object must have a value - vb date fields

Okay, none of the previous questions I have seen with this error seem to apply in this situation. tEmp is a class that contains (among other things) two nullable date fields. Public Property ...
1
vote
1answer
19 views

DebugPackage is a type and can not be used as exception

I have a VB.net application and I have a function with this signature: Public Function DeSerializeAnObject(XmlOfAnObject As String, ObjectType As Type) As [Object] but following call is giving ...
1
vote
1answer
25 views

Parallel.For Termination vb.net

I have a service that scans network folders using a parallel.for method. However recently I am finding if I stop the service then while windows says the service is stopped the process is still ...
1
vote
2answers
34 views

Editing database with dropdown list in asp.net

I am using asp.net with vb.net code behind. I have a database that contains a list of names. I use an asp:dropdownlist databound with SqlDataSourceID and it works fine to get the list from the ...
1
vote
1answer
86 views

How to I search for files recursively while updating a progress bar and returning the file List to the application from BackgroundWorker

Thanks for reading! I am currently trying to develop an application which will backup large folders to a specified destination. To find all the files in the specified 'backup' directory I am using ...
1
vote
3answers
87 views

vb.net - how to set today as a default date for time picker?

As the properties Value of the date/time picker does not allow to enter the DateTime.Now default value, I have tried to set it in the code: Private Sub DataFrom_ValueChanged(sender As System.Object, ...
1
vote
1answer
105 views

Unable to run batch file located on mapped network drive

I am unable to run batch file that is located in mapped network drive using System.Diagnostics.Process in VB.Net. I get: '<batchfilename>.bat' is not recognized as an internal or external ...
1
vote
2answers
400 views

Attempted to read or write protected memory. This is often an indication that other memory is corrupt

I am using the following code This error occurs : Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Attempted to read or write protected memory. ...
1
vote
1answer
42 views

For cycle causes unwanted “exit sub” event

really weird behavior in Vb.net 2010 Express. Here is the code: Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim a As Integer '... Other ...
1
vote
1answer
97 views

Shortcut in startup folder does not load the right settings for Visual Basic Application

Just recently I've started with Microsoft Visual Basic 2010 Express and I am creating an application which loads a URL into the browser component. One of the settings that the user is able to ...
1
vote
1answer
171 views

2010 VB.Net MAster Detail form not saving record

I am new to VB.net and have created a simple master detail windows form. I created a two table data set and then dropped the master table on the form as a continues form or a detail form with several ...
1
vote
1answer
66 views

Nested List of Custom Object. VB.NET

I'm new to VB.net and requires your help. I've two vb.net Structures, Quotation and FareAsPerVehicleType, Quotation is dependent on FareAsPerVehicleType. I am trying to add VehicleType in Quotation by ...
1
vote
2answers
96 views

how to put search funtionality in dataGridView in vb.NET

How i can select a single cell from selected row in datagridView and after selecting that i want to put simple search functionality(like we have in our windows folders-typing any characters and search ...
1
vote
3answers
175 views

String.IsNullOrWhiteSpace in vb.net throw error if value is dbnull.value

String.IsNullOrWhiteSpace(valuefromDB) throws error if valuefromDB is dbnull.value Is that correct?? I thought of this function will also handles the dbnull.value
1
vote
3answers
299 views

Why doesn't this multithreaded VB.NET (2010 Express Edition) program work properly?

I'm trying to make a program of mine into a multithreaded application, but I've hit a pair of snags that I documented in the following code. Any help that I can get with this to make it behave ...
1
vote
2answers
68 views

Assigning result of If operator to System.Nullable type

When using the If operator (http://msdn.microsoft.com/en-us/library/bb513985(v=VS.100).aspx) to assign a value to a System.Nullable object, if the result is Nothing (null), then 0 is assigned to the ...
1
vote
2answers
48 views

Getting errors with Parameterized Update Sub

No idea why this isn't working. I have a simple form with some text boxes and drop down lists. It displays the profile of an employee. Users should be able to manually edit the fields and click ...
1
vote
3answers
101 views

Can I Programatically Modify the IDE's Context Menu's?

I am trying to create an additional menu item for the "Project and Solutions Context Menus>Solution" menu. However, I wanted this context menu to appear ONLY when a certain solution was opened, ...
1
vote
1answer
47 views

Manipulating the calendar in vb.net

I'm currently creating an auction website using asp and vb.net. I want to manipulate the calendar so that only dates after the current date are selectable. How can I go about this? Thanks
1
vote
5answers
220 views

Split a string into 2 different substrings vb.net

I'm trying to split a string into 2 subs. The first contains the first 236 (0 to 235) chars and the second one from 237 to the end of the string. firststr = str.Substring(0, 235) secondstr = ...
1
vote
2answers
187 views

Making Textbox in VB Inputbox Larger

How can I make the textbox in a VB Inputbox larger?

1 2 3 4