0
votes
1answer
21 views

Enumeration Type exception when attempting to filter a LINQ query

I'm trying to generate a grid that end-users can filter the data using several inputs. To do this I'm attempting to filter an initial LINQ to Entities object as follows: Dim servhist As ...
0
votes
1answer
57 views

Screen Capture program in VB.NET

I had created an application that captures the screenshot of desktop screen. It works very well with button I have used in form. But now I want to make that thing works automatically using timers but ...
0
votes
1answer
51 views

SEHException not caught by Try/Catch

In a background thread, my application regularly examines a network folder (UNC Path) for application updates. It reads out the assembly version of the file, like so: Try newVers = ...
1
vote
2answers
37 views

Unhandled exception not stopping execution

I have the following code in my application, which is handling the Load event in System.Windows.Forms.Form: Private Sub frmBillingPoller_Load(ByVal eventSender As System.Object, ByVal eventArgs As ...
2
votes
2answers
64 views

visual basic argument null exception

I am about to admit defeat on this, I'm fairly new to VB and I am sure there is something quite basic I've managed to miss, My problem with the following code is when the Button3_Click function is ...
0
votes
2answers
44 views

StackOverFlowException was Unhandled on For Loop

I just made my Card Selection Dynamic, instead of a sequence of 5 if/elseif statements. Private Sub PlayElse() Dim StartHeads As Integer Dim CardCheckBoxArray() As CheckBox = ...
0
votes
0answers
32 views

How to differentiate between different kinds of IOExceptions?

I'm trying to write a program which includes renaming of some files. I use My.Computer.FileSystem.RenameFile to do this. I'm getting one of these exceptions: IOException: Could not complete ...
0
votes
0answers
51 views

VB.NET - Problems with Sendkey

i have a problem with SendKeys. I made a Keybinder for an online multiplayer game. If a key e.g.: Numlock 1 is registred, my software sends the word or letters or whatever in textbox1. everything ...
1
vote
1answer
87 views

having trouble updating/edit database

I want to create an application where I can register person info. but I am having a problem updating/edit the data in my gridview. Below is the set of code which I've created. Imports ...
0
votes
1answer
43 views

What parameter name to use for ArgumentException in property setters

From MSDN: Every ArgumentException should carry the name of the parameter that causes this exception. My question: if a property setter should throw an ArgumentException, should I give it the ...
1
vote
0answers
28 views

Checking value of property of type UnauthorizedAccessException

I'm trying to figure out if a user has admin rights on a particular server by calling the following code: Dim serverContext As New PrincipalContext(ContextType.Machine, myServerName) If they don't, ...
0
votes
1answer
102 views

The connection property has not been set or is null

When I run this function For RepeatBooking = 1 To 51 dateConvertedDateToBook = dateDateToBook.Date dateDateToBook = dateDateToBook.AddDays(7) strDateToBook = ...
1
vote
2answers
218 views

How to catch/handle number format exception in vb.net?

I would like to add 'try catch' statement on the module that I'm creating. I want to specify the exception to be caught in number format. This is the sample code, Try interest = ...
3
votes
2answers
91 views

How to handle exceptions in Tasks with debugger?

I studied this article on MSDN, as well as some questions/answers on SO regarding this topic, but cannot figure why below code does not work (in a sample console app). AggregateException is expected ...
0
votes
1answer
142 views

Catch multiple exceptions at same time in VB.NET

There is sometimes that one want to do the same on two different types of Exception. I searched but I didn't find anything for VB.NET. Simple example: Try '... Catch ex As Net.WebException ...
-9
votes
2answers
160 views

Generic way of exception handling [duplicate]

catch(Exception ex) //code being sent to database table to log is - ex.ToString() The parameters are not being sent. private int GetAge (int ID) { } private string GetName (int ID) { } ...
0
votes
1answer
142 views

LDAP Authentication The specified domain either does not exist or could not be contacted

I got the following error {"The specified domain either does not exist or could not be contacted. "} at the line Dim adResults = adSearch.FindOne.Path Can anyone suggest why it is ? Seeing ...
0
votes
0answers
95 views

Getting Security Exception while running Asp.net application

I have taken a web application from VSS. While running this application i am getting the below error. Security ExceptionDescription: The application attempted to perform an operation not allowed by ...
0
votes
3answers
427 views

VB.NET Exception Handling for Something that Returns a Data Set instead of String

My program is throwing an error I should handle. But I cannot return a string message because the it is a function that returns a dataset. Public Function getUserInfo(ByValue testUserIdAs String) As ...
0
votes
2answers
95 views

Need For a TransactionScope Which Won't Rollback With An Exception

I have Some Command Like Insert, Update, Create and so on that i want to run them in some database in a SQL instance. i use transaction scope for this and i want to run all of the commands on all ...
18
votes
3answers
1k views

VB.NET Try Catch with multiple Catch blocks

This is a really odd issue. We have a Try Catch with multiple Catch blocks. The first Catch block has no code, just a comment. Try 'Some Code Catch ex As ThreadAbortException 'Do Nothing Catch ...
0
votes
1answer
58 views

Alternatives to using a Collection class

I have been looking through old code to get familiar with the system I use and found a piece of code that I feel can be used better. What goes on here is some data gets added to the collection(around ...
0
votes
0answers
144 views

HttpRequest Exception Header section VB.NET

I'm trying to upload a file with the following code, but when I upload a file raises an exception: Header section has more than 10240 bytes (maybe it is not properly terminated) I try with this but ...
2
votes
1answer
116 views

FormatException was unhandled vb.net

This Might be a long question but please do bear with me a little. I have a Datagridview1 on Form1 with the columns BranchCode("cells(2) ,FormCode("cells(3)")), Quantity("cells(5)") Now Let's ...
1
vote
1answer
329 views

How to access LDAP Server for authentication

I've written a code in VB to access LDAP server for authentication purpose. However, it is throwing an exception, probably nativeObject call is generating the exception. The motive is to authenticate ...
0
votes
1answer
1k views

How to fix this COMException - Class not registered (Exception from HRESULT: 0x80040154

I have a VB.Net project and it works fine on my deveelopment machine (naturally :-)), but on two different computers I tested on, I get the following error, when I attempt to open a specific form. ...
0
votes
0answers
124 views

Unable to cast object of type X to type X

Users randomly get "Unable to cast object of type "X" to type "X" exception error. Sometimes this issue will happen a few times a day. Sometime we can go a week+ w/o it coming up. I have an ...
1
vote
2answers
90 views

StackOverflowException when adding a row to a datatable

Using recursion to build up the hierarchy. This recursion works fine in windows server 2003 + IIS6 but throwing exception in windows server 2008 R2 and IIS 7.0 Here is the code snippet: Public Sub ...
0
votes
1answer
61 views

Format Exception in vb file

Thanks in advance to all... This is a piece of vb code which gives Format Exception. Suppose my hexValue is 424E0A78. The code works properly. The moment hexValue gets a value (say) 424EA78, the ...
0
votes
0answers
65 views

Kill(filepath) throws exception when no file exists

Kill(filePath) throws an exception when no file exists, but only when I install the compiled app in a separate XP environment. When I run the app out of the VS2005 IDE it doesn't throw an exception, ...
1
vote
1answer
216 views

Workarounds for VS2012 debug behaviour on Form.Load and Form.New

I've made some progress on this thanks to answers to my previous question. That turned out to be a duplicate manifestation of something already covered here. TLDR version: debugging in Win64 behaves ...
0
votes
0answers
167 views

Visual Basic - ArgumentOutOfRangeException: Trouble Indexing imageList?

I'm getting an ArgumentOutOfRangeException in my code. I'm trying to make a basic memory tile game. I'm currently working on this with a partner and we can't seem to figure out why we're hitting this ...
3
votes
1answer
158 views

.NET FileLoadException

NET, on the following line: Dim shellFile As ShellFile = shellFile.FromFilePath(tmpFile) I am getting the following error: Could not load file or assembly 'Microsoft.WindowsAPICodePack, ...
0
votes
2answers
226 views

A first chance exception of type 'System.InvalidCastException' occurred in Microsoft.VisualBasic.dll

I'm working on converting some console code in a Microsoft sample for Dynamics CRM SDK 2011 to an ASP.NET web application. It runs fine in console mode, but after converting to run in ASP.NET I get ...
1
vote
2answers
91 views

PDB file and error handling?

We have a windows form application running across different customers, when they get errors we log into a database & using that stack information that is logged, we correct the issue. However ...
-3
votes
1answer
2k views

How to raise exception in VB.NET?

How should an exception be raised in VB.NET?
2
votes
3answers
101 views

Setting value to a not-existing array item?

Please take a look at the following code: Try Dim Reader As New System.IO.StreamReader(PositionsFileName) Do While Reader.Peek() <> -1 Dim Positions() As String = ...
1
vote
1answer
455 views

UnauthorizedAccessException when programatically accessing mp3 file in WinRT XAML app

Problem accessing mp3 files in WinRT app. 'System.UnauthorizedAccessException' occurs when app tries to open a mp3 file by name in the same folder as a file returned by FileOpenPicker. Put another ...
0
votes
0answers
171 views

Vb.Net - How kill a specific process

I have a process that interacts with an Excel application in background, but sometimes the process has an error and the Excel Application doesn't finish correctly. Always, when this process starts ...
0
votes
0answers
266 views

An exception occurred during a WebClient request durring ftp upload

I am trying to upload file to my ftp server therfore I am getting this error messagge from try-exception... An exception occurred during a webclient request The code is simple as written below ...
0
votes
2answers
119 views

Adding Data items to exception but not calling throw ex

I have extended NLog to log all items in the Exception.Data collection. So, when I catch an SqlException, in my data access code, I like to add a few items to the Exception.Data dictionary to provide ...
1
vote
4answers
95 views

Is there any difference between ex vs ex.ToString? asp.net

I am talking about Try ... Catch ex as Exception .... End Try If I pass exception to Error Logger, shall I pass exception object (ex) or ex.ToString ? Would I lose any information by passing ...
0
votes
1answer
122 views

VB.NET exception issue

I am working on my homework. My assignment is to create an application that reads a file the user selects into memory. In this case it is reading in a structure of array objects that includes a ...
0
votes
2answers
156 views

Visual Basic If Not Issue

I am doing my homework for my visual basic class. I have most of the code written and everything seems to be working well except for my If Not statement that catches the exception when the loop does ...
4
votes
2answers
273 views

Double exception throwing in a try / finally block

Here's the code example : Try Throw New FirstException() Finally Throw New SecondException() End Try I figured out it only throws SecondException out and FirstException just vanishes. I ...
0
votes
1answer
131 views

ContextSwitchDeadlock error in scheduled console app

I'm working on a console app developed by a guy who doesn't work here any longer. While debugging, the ContextSwitchDeadlock exception was thrown (I found this question on the exception). If I ignore ...
1
vote
2answers
473 views

Get line number in exception [duplicate]

Possible Duplicate: C# Exceptions Not Giving Line Numbers In C# winform, inside a catch block i have Exception.ToString() -> to get exception information and line number of the code where ...
-4
votes
3answers
122 views

i am getting this exception when clicking on a cell of a datagridview in winform in C#?

I have a code in vb.net which i want to use in C#. can any one help? The code is.. Dim cell As DataGridViewImageCell = CType(tempGrid.Rows(e.RowIndex).Cells(e.ColumnIndex), DataGridViewImageCell) ...
0
votes
1answer
95 views

java.net.ServerTimeoutException in VB.Net web service

I make a VB.Net Web Service. And that will be called by Android Emulator from IIS 7.0. Simple method which return sum of 2 digit works fine but when i try to insert record in the database MY SQL ...
0
votes
2answers
45 views

CrossThreadMessageException

I've been trying to lower the load time on the main window my application uses(10k+ lines of code) and am trying to integrate threading into one method of the program. I'm trying to split the display ...

1 2 3 4