
- Home
- Activity Stream
Activity Stream
New Activity ()
Please reload this page to view the 200+ new activity items that have been created.
-
Older Activity
-
Today, 02:03 PM
If you want to get the answer when you click on the cards then it belongs in your card's Click event.
Now you may want to add additional business...
3 replies | 19 view(s)
-
Today, 02:02 PM
Also part of the problem is this, "The problem is that it's possible for a user to abort and restart the process while the display thread is part way...
8 replies | 122 view(s)
-
Today, 02:00 PM
Where do I call it ? Do I need to make a sub for it ? Because when I call it in main I get the answer before I click on the cards
3 replies | 19 view(s)
-
Today, 01:56 PM
You can hardly write any program in VB6 without "OOP." I think you have been wildly mislead by those with a very weak grasp on the subject. Almost...
8 replies | 217 view(s)
-
Today, 01:46 PM
The issue I have with thread safe collections, and the like, is that I'm not sure that it applies. Thread safety should be about adding, deleting,...
8 replies | 122 view(s)
-
Today, 01:38 PM
I second what passel just said. The blink part doesn't make sense in a thread, but this part:
Comm.Preoperational(PcanDevice.Usb, ClientHandle,...
14 replies | 237 view(s)
-
Today, 01:37 PM
I know I'm in the wrong forum but I couldn't find a good match.
I type fast and I transpose characters a lot. You used to be able to hit ctrl-T...
0 replies | 12 view(s)
-
Today, 01:35 PM
I thought about that but I wasn't sure whether the overhead of taking the deep copy would be much less than using it directly. The operation the UI...
8 replies | 122 view(s)
-
Today, 01:30 PM
You are never calling your comparison method.
3 replies | 19 view(s)
-
Today, 01:26 PM
Hi, I am trying to make this card memory game where I have to match 2 pictures, if they are the same a message appears saying something, else...
3 replies | 19 view(s)
-
Today, 01:10 PM
As I said prior - I am looking for universal solution that can be configured with parameters - separators, length. So basically replace space with ...
7 replies | 287 view(s)
-
Today, 01:03 PM
Yeah, it triggered Windows Defender on my machine. But after creating the bin folders, when I ran the exe it popped up instantly.
10 replies | 150 view(s)
-
Today, 12:53 PM
Thank you
7 replies | 98 view(s)
-
Today, 12:42 PM
This will be more correct:
Private Sub Text1_Change()
Text2.Text = ""
Select Case Val(Text1.Text)
Case 40 To 60
Text2.Text = Val(Text1.Text) -...
7 replies | 98 view(s)
-
Today, 12:37 PM
Thank you very much
7 replies | 98 view(s)
-
Today, 12:16 PM
Thank you.
So I will revise the question I asked at the end of #11.
What I could do is set my Projects location to my local drive (formerly I said...
13 replies | 885 view(s)
-
Today, 12:16 PM
True... That's a better setup. It leaves the original arrays intact, which is probably the ideal way to go.
-tg
8 replies | 217 view(s)
-
Today, 12:15 PM
In the previous case, you set BlinkFSG = True, and then you set it to False.
In this code, you don't set it to False.
So in the previous code when...
14 replies | 237 view(s)
-
Today, 12:11 PM
Private Sub Text1_Change()
Text2.Text = ""
Select Case Text1.Text
Case 40 To 60
Text2.Text = Val(Text1.Text) - 40
End Select
End Sub
7 replies | 98 view(s)
-
Today, 12:06 PM
yes sir
I mean each time a number go up (increment) in textbox 1 ( 40 , 41, 42 ......60) same thing happens in textbox 2 ( 1, 2, 3, ......20)...
7 replies | 98 view(s)
-
Today, 12:03 PM
I'm thinking I would declare the Union Function like this.
Public Function union(Set_In As CIntegerSet) As CIntegerSet
'I'll let you figure...
8 replies | 217 view(s)
-
Today, 12:01 PM
Thanks for your reply. I give it a try. I have a lot to learn :blush:
2 replies | 92 view(s)
-
Today, 11:57 AM
Explain what final result you are after (instead of what would you do).
7 replies | 98 view(s)
-
Today, 11:56 AM
You want to get numbers from 10 to 20 in Text2 ?
7 replies | 98 view(s)
-
Today, 11:26 AM
Hello,
I am also not sure why is this code not working as expected. I also did debugging and as I said the program enters in the Subfunction and...
14 replies | 237 view(s)
-
Today, 11:24 AM
@NeedSoneAnswers - thanks. I’ll see what I can do with that...
4 replies | 117 view(s)
-
Today, 11:20 AM
Thread-Safe Collections
8 replies | 122 view(s)
-
Today, 11:09 AM
It works! Many thanks EDUARDO!
8 replies | 226 view(s)
-
Today, 11:07 AM
Hello
Private Sub Text1_Change()
Case 40
Text2.Text = 1
Case 41
Text.Text = 2
Text 42
Text2.Text = 3
.
.
7 replies | 98 view(s)
-
Today, 10:43 AM
I would be inclined to make a copy of the list for use in the display thread, but that assumes that iterating over that thread takes some noticeable...
8 replies | 122 view(s)
|
Click Here to Expand Forum to Full Width
|