I have hear from really good developers that is a best practice to remove the VB6 reference from your .NET projects, with this you are not using the old VB6 tools as vbNewLine or InStr() etc.....
I am working on a windows forms application where i am populating a datagridview control from an Access database. I am able to populate the datagridview but am having a problem saving the cha...
Hi, I'm using VB 2005 Windows Forms and have a "Best Practices" type of question regarding the "Showing" of Forms. In my application, I have different Users with three different security acce...
I have upgraded a vs2003 application to vs2005. I am having trouble in the .config file. The <settings> element is not declared. Any suggestions please.
I have been googling for a right click popup for a richtextbox and have only found samples which use a contextmenu whereas my toolbox only has the contextmenustrip.
Any and all help on this...
hi,
how set form1 to be child window.
thanks
Hi all - I have a panel which contains some controls. I want to allow the user to zoom in and out of the panel and the scale method seems to be able to do the trick for me.
ie: to zoom to 50%...
Hi!
I need some help with how to handle exceptions in a client/server model.
If I do this in the client
Public Sub CreateList()
Dim Names as Arraylist =GetNames()
Dim Cars as ...
I have a class that I am writing that has a property called Variables, the property is a dictionary. At some point in the application certain keys are searched in the dictionary and there is ...
OK,I don't even know if his is possible, but I will ty to explain.
I have an app which uses a script to print a letter (in a mailmerge) but it can be printing between 1 to 20 different types ...
I am working in VB2003 and this will be really easy to anyone who uses VB2003 alot. I still do most work in VB6 and am working on learning .net basics.
I have 2 forms, Form1, Form2
Each f...
Hi, I have an application that is run from a shared drive. Different users connect to it and run independent sessions on their workstations at their desks. I've built in some error reporting i...
I've dynamically created 25 textboxes in the codebehind like so:
For i As Integer = 1 To 25
Dim ItemBox, QtyBox, PriceBox As New TextBox
ItemBox.ID = "I" & ...
I have a PictureBox that it has backgroudImage
I try to rotate left or right
what I have to do.
PhotoPictureBox.BackgroundImage.RotateFlip(RotateFlipType.Rotate90FlipX)
does not work
I have a text box , I want it to accept both numbers and point just to enter amount like this 2.75 .
Private Sub thiscontrol_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Fo...
I have created a menu in VB.Net and I want when I click the MenuItem, the MenuItem should move up to the top of the list.
I'm upgrading an old VB6 app into VB .Net, and would like to use some of the existing AS400 stored procedures. Can someone please give me a little guidance on what to do? I'm guessing a lot ...
hi guys
I just need a simple suggestion
what is the best way to use gdi + ? is it to print a panel or to inherit from another .net control like the panel itself?
thanks
What's the difference?
I'm trying to automate a combo selection by reading a record.
I tried:
cbo1.SelectedIndex = cbo1.FindStringExact(strData) ' drop down is blank, unless I arror up...
I am working on a really simple vb.net Windows Form, using Visual Studio 2008, with the .NET 2.0 framework selected.
The form starts another application on load, then shows a button - and w...
Hi Experts,
On the Start Page of VB express 2008 the recent projects box (top left) only displays seven projects. Is there any way to increase this as there is plenty of room on this page f...
In VB.NET you could move the Yellow Arrow up, when a breakpoint is hit, after you make
a code change, and the program would continue to run.
In ASP.NET there must be a way to do this. ...
What options do I have for creating a collection class that is bindable.
For example, something similiar to creating a class like this that inherits
from CollectionBase
Public Class Cu...
I have tried to implement Thread pooling as i call the same function multiple times in the process of the GUI update. i would just like the gui to continue to respond while the function contin...
Good Day:
I am creating a WinForms application using VB.NET 2005 with SQL Server 2000. How do I convert all lower case to upper case while the user is entering text? Currently I am doing ...