Login Register






[console]Threading problem filter_list
Author
Message
[console]Threading problem #1
Hi,

well, I'm making a console app, and my console doesn't want to work with this code:
Code:
Dim t As New Threading.Thread(AddressOf check) t.IsBackground = True t.Start()

Every time it comes to this line, the console closes. Can anybody please help me to fix this?

Thanks a lot Smile

Have a great day Smile
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

[console]Threading problem #2
Hi,

well, I'm making a console app, and my console doesn't want to work with this code:
Code:
Dim t As New Threading.Thread(AddressOf check) t.IsBackground = True t.Start()

Every time it comes to this line, the console closes. Can anybody please help me to fix this?

Thanks a lot Smile

Have a great day Smile
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

RE: [console]Threading problem #3
I'm not sure if you can do Multi-threading in a console App. In Project options, change the project to a Forms Project. There will be no Forms added, but life would get easier. Smile
[Image: rytwG00.png]
Redcat Revolution!

Reply

RE: [console]Threading problem #4
I'm not sure if you can do Multi-threading in a console App. In Project options, change the project to a Forms Project. There will be no Forms added, but life would get easier. Smile
[Image: rytwG00.png]
Redcat Revolution!

Reply

RE: [console]Threading problem #5
(03-18-2011, 06:00 AM)Coder-san Wrote: I'm not sure if you can do Multi-threading in a console App. In Project options, change the project to a Forms Project. There will be no Forms added, but life would get easier. Smile

well, I wanna try to learn console, since it seems cool for me Biggrin But didn't think of switching
thanks Smile

Anyway, solved the problem by doing a simple loop Smile
Also, I use the console, since I can just c/p the code from there to my CodeDom compiler and test it Biggrin
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply

RE: [console]Threading problem #6
(03-18-2011, 06:00 AM)Coder-san Wrote: I'm not sure if you can do Multi-threading in a console App. In Project options, change the project to a Forms Project. There will be no Forms added, but life would get easier. Smile

well, I wanna try to learn console, since it seems cool for me Biggrin But didn't think of switching
thanks Smile

Anyway, solved the problem by doing a simple loop Smile
Also, I use the console, since I can just c/p the code from there to my CodeDom compiler and test it Biggrin
Staff will never ever ask you for your personal information.
We know everything about you anyway.

Reply