0
votes
2answers
14 views
VB.NET DataSet Update
Why my set of codes didn't update in DataSet? Then it goes to Error. Please anyone check this code and point me out where I am missing. Thanks in advance!
Private Sub btnUpdate_Cl …
0
votes
1answer
13 views
Handling events fired in constructors
Work = New ExampleWork()
Here the Work is a withevents variable and I've used the handles clause for handling various events fired by the ExampleWork object. However the event ha …
1
vote
1answer
12 views
Visual Studio 2008 - Jump to next error shortcut?
When a compile fails in VB.NET in Visual Studio 2008, an Error List pops up at the bottom of the screen. To jump to an error, I double click on an error in the error list.
Is ther …
1
vote
3answers
46 views
How to develop accumulator codes?
Hi everyone!
This is for vb.net I've been working to develop a system which involves computation.
I would just like to ask for any ideas or source code or a link perhaps that
c …
0
votes
1answer
20 views
Listview Serialization !
appreciate if anyone knows how to serialize a listview using vb.net
0
votes
5answers
25 views
Tab control to handle child windows in an MDI form (VB.NET)
My application uses an MDI form, and there are instances where the end user will need multiple child windows open at a time. I need an easy way for the user to switch between wind …
2
votes
5answers
78 views
Can Someone Explain MustOverride?
Hi there,
Can someone explain not what MustOverride does, but why use it? Is it to expose the function?
I have two classes, the first (RoomFactory);
Public MustInherit Class Roo …
0
votes
2answers
21 views
Data Manipulation (INSERT,UPDATE) using DataSet Object with VB.NET
I am newbie at using DataSet. I am writing a program with VB.NET, there I have to select data from one table. Then I have to update about 4 tables and insert to 2 Tables. Which app …
0
votes
4answers
78 views
Program display even while computer locked?
I have a program that occasionally pops up on the screen and displays a message, using vb.net. Is there a way to have it run and display even if the computer is locked or no one is …
2
votes
4answers
93 views
how to initialize a Singleton?
Hello.
Sometimes there is a need to initialize the singleton class with some helper values. But we can't "publish" a constructor for it. What is the walkaround for this?
For more …
0
votes
5answers
62 views
Let the user design a form and the fields in it
I am developing an application in which I would like to let the users design some forms and decide the fields that are in the form.
An example is better than a poor explanation, s …
0
votes
4answers
36 views
ASP.NET special character problem
I'm building an automated RSS feed in ASP.NET and occurrences of apostrophes and hyphens are rendering very strangely:
"Here's a test" is rendering as "Here’s a test"
I hav …
1
vote
1answer
37 views
Provide strongly typed access to the session object
What is the best way to provide strongly typed access to the session object? I am planning on turning on Option Strict, which is causing the compiler to complain about my lazy pro …
1
vote
3answers
23 views
Performance concerns of instantiating multiple classses in one Form
I would like to know how will performance go when I instantiate multiple classes in one form.
e.g
Public Class frmClass
Dim obja As New ClassA
Dim objb As New Cl …
2
votes
3answers
29 views
Active Directory Server with .Net
We are developing our application using MS Visual Studio 2008 VB .Net.
We have to use Active Directory Server for authenticating the user logging into the application.
Does any o …
