Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 3 online users. » 0 Member(s) | 1 Guest(s) Bing, Google
|
Latest Threads |
Looking for Adventure? Fi...
Forum: Random Discussion
Last Post: iHOMEz
11-16-2024, 09:18 PM
» Replies: 0
» Views: 498
|
Prettys Womans in your to...
Forum: Random Discussion
Last Post: iHOMEz
10-30-2024, 07:45 AM
» Replies: 0
» Views: 791
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-26-2024, 10:50 AM
» Replies: 0
» Views: 811
|
Beautiful Womans from you...
Forum: Random Discussion
Last Post: iHOMEz
10-19-2024, 02:48 PM
» Replies: 0
» Views: 913
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-06-2024, 05:00 PM
» Replies: 0
» Views: 1,072
|
Womans from your city - V...
Forum: Random Discussion
Last Post: iHOMEz
07-28-2024, 10:26 AM
» Replies: 0
» Views: 1,446
|
Supreme Сasual Dating - A...
Forum: Random Discussion
Last Post: iHOMEz
06-14-2024, 11:28 AM
» Replies: 0
» Views: 1,870
|
Beautiful Womans in your ...
Forum: VB.NET
Last Post: iHOMEz
06-09-2024, 09:23 PM
» Replies: 0
» Views: 1,681
|
Hangman in Rust
Forum: Other
Last Post: brandonio21
02-04-2018, 11:14 AM
» Replies: 2
» Views: 20,688
|
How to: Search files from...
Forum: VB.NET
Last Post: brandonio21
11-25-2017, 12:55 PM
» Replies: 1
» Views: 15,996
|
|
|
[SOLVED] Interation Not Working |
Posted by: kismetgerald - 01-18-2012, 01:08 PM - Forum: VB.NET (Visual Basic 2010/2008)
- Replies (9)
|
|
I'm using a DO interation to loop a function I'm using to test for internet connectivity. The code is working fine, except that when one of the tests is satisfied the loop stops. I want this to continue in the background while the program is running. How can I get this to work?
Here's the code:
Code: Private Sub checkInternet()
Dim InetChecker As Boolean
InetChecker = CheckForInternetConnection()
Do While LabelCount.Text <> ""
Thread.Sleep(10)
If InetChecker = True Then
Dim image = My.Resources.greenbar
PictureBox4.Image = image
Else
Thread.Sleep(10)
Dim image = My.Resources.redbar
PictureBox4.Image = image
'NoInetConnError.Show()
End If
Loop
End Sub
|
|
|
final back :D |
Posted by: lvlasked - 01-16-2012, 10:06 AM - Forum: Off-Topic
- Replies (4)
|
|
got my net back and im back here last time i was here i was making a pigeon loft orgainser so i think ill start work back on that
im looking for some one that could help me tho coz the actly coding side of things i ant got a clue about so any help would be greatful thanks
|
|
|
Help wanted |
Posted by: openeXpressions - 01-15-2012, 01:14 PM - Forum: Your Things
- Replies (2)
|
|
Hi everyone!
If anyone has some spare time, I'd love for help with my project. I need someone with some coding experience. It would also help to have a rudimentary knowledge of HTML and/or CSS. My project is located below. Thanks!
~Nick
|
|
|
Help Creating a WPF User Form |
Posted by: kismetgerald - 01-09-2012, 12:57 PM - Forum: VB.NET (Visual Basic 2010/2008)
- Replies (2)
|
|
Hi guys,
I've designed a Parts Inquiry software using WPF in VB.net 2010. I'm trying to create a user form to request my end user to enter information which will be sent to a database (haven't decided which one yet) and then an email notification sent to me. I will then retrieve the request, and process it. When I click a button (say "PROCESS QUOTE"), I want an email notification sent to the user. I want them to be able to retrieve the quote from within the application.
Basically, the functionality I'm seeking is that of a Quotes processing application.
I can't seem to figure out how to create the form. I'm using a TabControl to display this form. When I try to add the buttons, they either stack up vertically in the center of the TabControl Item or move to either end of the left or right. I can't get them to line up horizontally as they do in a Windows Form.
Please help, thanks.
|
|
|
Code within code |
Posted by: brandonio21 - 01-07-2012, 12:31 AM - Forum: Code Snippets
- No Replies
|
|
Here is just a little tip for you guys, if you ever want to store a snippet of code within a variable, you can use the following syntax.
So for example,
Code: Dim c = <code>
Messagebox.Show("Hello!")
</code>
This will actually store the code to display a messagebox with the text of 'Hello' within the c variable. This is very useful if you would like to develop some sort of plugin system for your application.
I am not too familiar on how executing that variable actually works, but here is a code snippet that shows the execution of code stored within a variable.
<!-- m --><a class="postlink" href="http://pastebin.com/CKfD7nRz">http://pastebin.com/CKfD7nRz</a><!-- m -->
|
|
|
VB2010 & MS Access Database |
Posted by: kismetgerald - 01-02-2012, 07:21 AM - Forum: VB.NET (Visual Basic 2010/2008)
- Replies (3)
|
|
Brandon,
Hi there! I'm new to programming completely, and I'm tinkering around with VB. Your videos are very instructive and clearly done.
Say, would you consider doing a couple of videos to show us how to connect to a Microsoft Access database?
I ask because I'm writing a program that will have a DB behind it. I want this to reside locally within the application folder (for performance sake). However, I will still use an online DB (such as MySQL) for user authentication.
Thanks.
Kismet
|
|
|
|