Validating Users
Fri, 29 Aug 2008 11:56:01 -0700
Some of our apps need passwords to access parts that should only be available
to management.
We could develop our own and require management to remember yet another
password that we would have to take care of resetting whenever they forget,
lock themselves out, or whatever...
But, what if we could tap in ...
|
Smart solution for abort/retry/ignore error handling
Fri, 29 Aug 2008 18:42:48 +0200
Hi folks,
is there a smart way to develop efficiently that helps me in the
following situation: a sub calls a subsub, which calls a subsubsub,
and so on.
Within a subsubsub an error occurs which I handle, either using on
error goto / err.number, or a try... catch block. I display a msgbox
(abort,retry,ign ...
|
USB device on serial port locks program when disconnected
Fri, 29 Aug 2008 08:17:04 -0700 (PDT)
I have an application that interfaces with a USB device using the .Net
serial port. The code works fine, displaying live data on the screen;
that is until the USB lead is pulled out from the PC when the program
hangs.
The obvious answer is not to pull the lead out, but unfortunately the
application is one in ...
|
Convert integer to bit
Fri, 29 Aug 2008 06:21:07 -0700 (PDT)
I have the following created in vb 2003:
Public Bitvalue as byte()
Public Sub Upload ()
dim i as integer =0
for i = 0 to 4095
bitvalue=bitconverted.getbytes(i)
bitvalue(0)
bitvalue(1)
next
end Sub
When i look at my bitvalue (0) and bitvalue (1) if my i = 152 then
my bitvalue (0) should ...
|
Nouveaut?s de VB2008
Fri, 29 Aug 2008 15:19:45 +0200
Bonjour.
N'y aurait-il pas depuis la VB8 un moyen d'assigner en une seule instruction
l'ensemble des propriétés d'un objet aux propriétés de mêmes noms d'un autre
objet, plutôt que d'écrire la liste fastidieuse :
O2.P1 = O1.P1
O2.P2 = O1.P2
O3.P2 = O1.P3
etc.
Une sorte de MOVE CORRESPONDING en COBOL ...
|
Newbie Question: Will my old VB6 app run under Vista?
Thu, 28 Aug 2008 22:03:24 -0700 (PDT)
Hi,
I am an amateur software developer, and would like to know if some
freeware I developed a few years ago using VB6 and XP will work under
Vista. If so, what must I do to create a Vista version, and would it
run under XP?
Dan
Download at www.dcproof.com ...
|
Concatenating Chars in an Array
Thu, 28 Aug 2008 23:56:10 -0400
I know it wouldn't be hard to write, but I have been unable to find a method
which will take elements of a character array and concatenate them into a
string. I've looked at both String members and Char members and haven't
found any such method. But it seems so obvious. So I figure I just haven't
hit upon ...
|
|
|
Intellisense
Thu, 28 Aug 2008 18:51:23 -0400
Hi, I was a user of Visual C# for a while and have gotten used to the
Intellisense for that program. I went to try Visual Basic, and the
intellisense is so much different. I'll try to make an example:
Say I want to write: MessageBox.Show("Hi there")
In C#, once I type just a single "M," everything (objects, ...
|
Storing Data Locally
Thu, 28 Aug 2008 13:41:41 -0600
I am developing a program that keeps track of manufacturing defects and
deviances. When a product is being developed, if there is a deviance from
the standard, we have to put the part on hold and create a deviation notice
(EPN). I am going to use sharepoint for the EPN notification workflow and
store the E ...
|
C# to VB Translation problem (Is this a singleton?)
Thu, 28 Aug 2008 11:17:01 -0700
I'm getting a little confused here. I have a C# class that I'm trying to
translate to VB.
The C# class is essentially:
public static class Class1
{
.... some private static variables and public static properties.
}
The translation (from several different translation programs) is:
Public NonIneritable C ...
|