Panel flicker
I migrated a VB6.0 application to VB.NET. This app has a drawing area, which is a panel. The user can drag and drop several objects on this drawing area and can also draw lines, boxes etc. The app is sufferring from the problem of flicker. On reading several posts on this forum and others I decided to enable ... 20 Sep 2005 08:06
Rounding, are we MAD????
Howcome: Dim D as decimal = .5D msgbox d.Round(D, 0) this returns "0" Now when I went to school .5 rounds UP to 1 not DOWN to zero?????!!! Documentation says this, but what the heck are they thinking??? I just don't get it. This is insane!?!?!?!! (or maybe I am) "When d is exactly halfway between tw... 15 Sep 2005 20:08
SendKeys.Send("^A")
All SendKeys.Send like ^C, ^V, ^X work in my form with textboxes but SendKeys.Send("^A") doesn't work ! ?? i have a bip error windows ! ? ... 12 Sep 2005 04:48
VB.NET and VoIP>
Hi there guys; I need information about vb.net and VoIP? Can we do something whit it in VB.NET? I have to develop an IVR system. Thanks Marcelo marcelo(a)hitnext.com ... 9 Sep 2005 09:11
FileListBox
I'm an experienced VB6 programmer, but using VB.net for the first time. I'm trying to set up a FileListBox, and having trouble getting the control to display the files that are in the directory that is selected in the DirListBox control. I've done the following: Private Sub DirListBox1_SelectedIndexChanged(B... 8 Sep 2005 06:55
Hex Color to RGB
Hi Visual Basic 6 uses for the color format something like &H0000000& How can I convert a color of this format to RGB for use in the .NET I need this because the data I use are already stored in a database for use in a Visual Basic 6 Application. Thanks in advance ... 7 Sep 2005 07:43
NotifyIcon Problem
Is it possible to display two separate lists on a ContextMenu with a right or left click on the tray icon. It appears that the default function of NotifyIcon is to show the context menu on right click only. Is there a way around this or am I missing something. Thanks, Norm ... 7 Sep 2005 00:34
What msg from Win+D ?
Dear all, I have made an Always-On-Top toolbar, with no icon in the taskbar. Works great, but it does not minimize when I press Win+D (show desktop) or Win+M (minimize all). Does anybody know what (system?) message my app should react to? Thanks in advance. ... 3 Sep 2005 21:07
Object array to string
I'm making a csv file from a datatable. Here's my code 'Copy Headers Dim obj(8) As Object Dim txt As String obj = dt.DefaultView.Item(0).Row.ItemArray txt = Join(obj, ",") filedata = txt 'Copy Data For x = 0 To dt.DefaultView.Count - 1 filedata &= vbCrLf obj = dt.DefaultView.Item(x).Row.ItemArray txt = ... 2 Sep 2005 14:34
MSI vs EXE
What's the difference between the .msi setup installation file and the .exe setup file for my project? Both were building to the same thing, but after playing around with things (I don't know which setting I hit) the msi file builds, but the .exe does not. Thanks! ... 3 Sep 2005 13:27