Register
Help
Remember Me?
Forum
What's New?
Activity Stream
New Posts
New Events
Mark Forums Read
Advertiser Disclosure
Advanced Search
Home
Activity Stream
If this is your first visit, be sure to check out the
FAQ
by clicking the link above. You may have to
register
before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.
Activity Stream
Filter
Sort By
Time
Show
Recent
Recent
Popular
Popular
Anytime
Anytime
Last 7 Days
Last 7 Days
Last 30 Days
Last 30 Days
All
All
Photos
Photos
VBForums
Forums
New Activity (
)
Please reload this page to view the 200+ new activity items that have been created.
Older Activity
Today,
08:14 PM
SpookyAwol
replied to a thread
SQL Query to eliminate duplicates
in
Database Development
Decided on a simple hack for now, added a column with a '0.5' decimal per Client when in same room, and '1' when they are single
see more
10 replies | 159 view(s)
Today,
08:06 PM
Eduardo-
replied to a thread
[RESOLVED] Prevent Form_Activate
in
Visual Basic 6 and Earlier
That variable is not needed to be at form level, just a static in the procedure is enough. Since it is not used anywhere else. PS: or perhaps you...
see more
33 replies | 414 view(s)
Today,
07:40 PM
Bobbles
replied to a thread
[RESOLVED] Prevent Form_Activate
in
Visual Basic 6 and Earlier
Thanks for the praises, Rob PS I declare my Boolean flag at form level (not a global)
see more
33 replies | 414 view(s)
Today,
07:28 PM
Rolo90
started a thread
Help with Shell
in
Visual Basic 6 and Earlier
Hello. I need to be able to receive the commands that another application sends me when I open the other .exe. For example. Update.exe ...
see more
0 replies | 11 view(s)
Today,
07:03 PM
7edm
replied to a thread
Icon loaded from resource DLL gets blurred, but fine if loaded in IDE
in
Visual Basic 6 and Earlier
No, it's not. Actually, this is not an issue but how I currently assign the program icon to my forms. This works i.e. the icon is displayed without...
see more
8 replies | 180 view(s)
Today,
07:01 PM
.paul.
replied to a thread
VS 2013
Error
in
Visual Basic .NET
Without the cast, the object is type Control. I cast it as type TextBox. It’s strange that it was just brackets that caused the error...
see more
6 replies | 95 view(s)
Today,
06:26 PM
wes4dbt
replied to a thread
VS 2013
Error
in
Visual Basic .NET
I believe that changed in VS 2010. .Paul As I said, my example works, don't know why you would need to use DirectCast. Maybe it depends on...
see more
6 replies | 95 view(s)
Today,
06:07 PM
.paul.
replied to a thread
reset a temp alarm
in
Visual Basic .NET
In the end, you'll do what you'll do, But a String is not a number, and an Integer is a whole number and not a String. Turn Option Strict on, and VS...
see more
9 replies | 125 view(s)
Today,
06:05 PM
.paul.
replied to a thread
reset a temp alarm
in
Visual Basic .NET
If you want to allow numeric input from your user, use a NumericUpDown control...
see more
9 replies | 125 view(s)
Today,
06:03 PM
.paul.
replied to a thread
reset a temp alarm
in
Visual Basic .NET
If your controls are just for display and not input, use a display control... That's what Labels are for. No possibility of someone crashing your...
see more
9 replies | 125 view(s)
Today,
06:03 PM
dee-u
replied to a thread
SQL Query to eliminate duplicates
in
Database Development
That was what I was asking in post #4, having a unique RoomID should help.
see more
10 replies | 159 view(s)
Today,
05:59 PM
.paul.
replied to a thread
VS 2013
Error
in
Visual Basic .NET
Dim _i As Integer = 1 DirectCast(Controls("TextBox" & _i), TextBox).Text = ListBox1.Items(_i).ToString
see more
6 replies | 95 view(s)
Today,
05:58 PM
koskap
replied to a thread
reset a temp alarm
in
Visual Basic .NET
Normally it will give an error BUT in the app im building the input is always numbers. The app takes readings from temperature and pressure sensors...
see more
9 replies | 125 view(s)
Today,
05:53 PM
agua
replied to a thread
[RESOLVED] AppActivate issue
in
Visual Basic 6 and Earlier
I guess you got it solved since such a long time. I got the same problem and discovered the problem disappeared when the window referred to has no...
see more
21 replies | 9844 view(s)
Today,
05:46 PM
DataMiser
replied to a thread
Help With Error: Subscript out of range
in
Visual Basic 6 and Earlier
The error message is giving you a line number so your first step should be to go to that line and see what the code is doing there. The error...
see more
1 replies | 42 view(s)
Today,
05:45 PM
.paul.
replied to a thread
reset a temp alarm
in
Visual Basic .NET
What happens when the user types 'hello' in TextBox2??? :D
see more
9 replies | 125 view(s)
Today,
05:33 PM
Poppa Mintin
replied to a thread
VS 2013
Error
in
Visual Basic .NET
Copy and paste it, then check the pasted string... yes there is a space. I don't understand why just removing those parenthesises would resolve...
see more
6 replies | 95 view(s)
Today,
05:26 PM
koskap
replied to a thread
reset a temp alarm
in
Visual Basic .NET
Found the answer, i rearranged the IF statements. Now when the temp is above normal, Timer2 will kick in and the blinking begins. When i press the...
see more
9 replies | 125 view(s)
Today,
05:23 PM
Arnoutdv
replied to a thread
VS 2013
Error
in
Visual Basic .NET
Are you allowed to start a variable name with a _ ?? Don't you have to cast the integer value to a string before concatenating it with the string?
see more
6 replies | 95 view(s)
Today,
05:10 PM
wes4dbt
replied to a thread
VS 2013
Error
in
Visual Basic .NET
You need to tell us what the error is. But this works, Dim _i As Integer = 1 Controls("TextBox" & _i).Text =...
see more
6 replies | 95 view(s)
Today,
04:53 PM
Lieven
started a thread
VS 2013
Error
in
Visual Basic .NET
Hi, I have a problem with syntax.... Dim _i As Integer = 1 Controls("TextBox" & _i).Text = (ListBox1.Items(_i).ToString) ' this will not...
see more
6 replies | 95 view(s)
Today,
04:31 PM
dday9
replied to a thread
Insert To Excel Starting From Column E
in
Visual Basic .NET
This is how your business logic should probably work: Starting at row 1, loop until cell A is empty Change your SQL command to be an update...
see more
7 replies | 155 view(s)
Today,
04:05 PM
Jimboat
replied to a thread
[RESOLVED] Prevent Form_Activate
in
Visual Basic 6 and Earlier
Got it! Works fine. Thx again.
see more
33 replies | 414 view(s)
Today,
03:57 PM
xiaoyao
replied to a thread
how to Get Sha512 Fast by vb6 use api CryptCreateHash
in
Visual Basic 6 and Earlier
SHA256 CODE: Function HMACSHA256(strToSign As String, strKey() As Byte) Dim lngLoop As Long Dim oUTF, oEnc Dim HMAC() As Byte Dim lastrow As...
see more
8 replies | 379 view(s)
Today,
03:56 PM
xiaoyao
replied to a thread
VS 2017
How to connect to a REST-API from bitso.com
in
Visual Basic .NET
VB6 CODE Function HMACSHA256(strToSign As String, strKey() As Byte) Dim lngLoop As Long Dim oUTF, oEnc Dim HMAC() As Byte Dim lastrow As Long ...
see more
1 replies | 455 view(s)
Today,
03:54 PM
Eduardo-
replied to a thread
[RESOLVED] Prevent Form_Activate
in
Visual Basic 6 and Earlier
It is desired by you or by someone else? What code is the one that needs to run from there? Anyway it is extremely simple the solution, put a...
see more
33 replies | 414 view(s)
Today,
03:49 PM
Jimboat
replied to a thread
[RESOLVED] Prevent Form_Activate
in
Visual Basic 6 and Earlier
YES. In these cases it is either desired or OK for Form_Activate event to run. Eduardo - thanks again for your help.
see more
33 replies | 414 view(s)
Today,
03:42 PM
westconn1
replied to a thread
Copy Paste (Capture) an action word into empty cell
in
Office Development
that is what it is supposed to do, it worked with a sample i tried, i will look at it further of course with vba it would be much simpler to code...
see more
4 replies | 80 view(s)
Today,
03:40 PM
Eduardo-
replied to a thread
[RESOLVED] Prevent Form_Activate
in
Visual Basic 6 and Earlier
Also worth to mention that if it is a SetFocus, the proper way to handle it is to set that control with TabIndex = 0 (no SetFocus needed).
see more
33 replies | 414 view(s)
More Activity
No More Results
No Recent Activity
Click Here to Expand Forum to Full Width