Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 4 online users. » 2 Member(s) | 1 Guest(s) Google, MorrissgoX, msontop6722
|
Latest Threads |
Looking for Adventure? Fi...
Forum: Random Discussion
Last Post: iHOMEz
11-16-2024, 09:18 PM
» Replies: 0
» Views: 497
|
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,868
|
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
|
|
|
Aggelo Web Creator |
Posted by: AnchoredFTW - 12-19-2011, 12:42 PM - Forum: Share your programs!
- Replies (2)
|
|
I'm currently working on it, it's similar to HTML-IDEx, but more features than design.
With the ability to publish to my site Reagous.com
Note!
The new version of Aggelo creates the C:/ directory for you if you don't already have it.
Make sure you save your sites in there (C:/aggelo/sites), and that they are saved as your website name .agg for publishing to work..
Alpha v0.7_d
Download at
http://reagous.com/Aggelo.exe
(Because I can't add .exe files as an attatchment)
|
|
|
Plugin System? |
Posted by: zmanalpha - 12-18-2011, 04:22 PM - Forum: Programming Help
- Replies (2)
|
|
Hi, I Watched Brandonio's Videos On making a plugin for twit control. I Was Curious On How you programmed the Twit Control Half of the Plugin/ Add-on Thing. Thanks for the Help.
|
|
|
i need help on making a launcher with auto updating function |
Posted by: jamietjeh - 12-13-2011, 10:58 PM - Forum: Programming Help
- Replies (2)
|
|
okay well i need help to make an launcher with an auto updater
what it basicly needs to do is
1. check in the version.ini in the root\data\share folder and display it
2. it has to read the version.php listed on the web server and if thay do not match it will download the patch to the root folder
3. if the patch is downloaded it will run the .exe that will install the patch to its directory wich will be the root\data folder or the root\data\share folder wich i put in the exe..
4. it needs to show me the server status cus if it isnt on there is no point on checking for updates since it wont find anything.
if any one can and will help me with this thnx
P.S. i know some of you guys will think WTF are you an ideot???
well let me put it this way (i build servers never worked with VB befor so)
and ive searched all over the web and i cant actualy find anything that can help me...
you guys dont have to give me an complete script but just tell me what and how i can use lines that will help me create my launcher.
thnx
|
|
|
Looking for developers to help in free and opensource projec |
Posted by: consc198 - 12-11-2011, 02:17 AM - Forum: VB.NET (Visual Basic 2010/2008)
- Replies (9)
|
|
Hello,
I am not sure if this is allowed or not - if this post is against any Rules i apologize in advance and this post can be removed.
I am in the process of creating a open-source project to track the Psychological Mood of a person, this application will be used by people visiting psychologists.
Target Audience
People that are currently in therapy or want to keep track of mood changes. The program is based on CBT.
Aim
To provide to the end-user the tools for him to be able to monitor his mood.
To provide to the therapist additional information for the client through the automatic generation of graphs.
I am looking for some volunteers to help me with Coding of the Project. I am doing the coding in Visual Basic 2010 and currently using MS Access 2007 as the Database. I have many plans to make this is a feature-rich application with the aim to help the end-user.
The Project is hosted on CodePlex; <!-- m --><a class="postlink" href="http://moodtracker.codeplex.com">http://moodtracker.codeplex.com</a><!-- m -->
If anyone is interested please feel post here.
|
|
|
Forum hosted blogs? |
Posted by: brandonio21 - 11-27-2011, 03:38 PM - Forum: Computing
- Replies (3)
|
|
Hello Guys!
I was browsing the various mods that we could install to the forum, and one of them caught my attention: It was the ability to install blogs that each user could host. So this would allow each user to have their very own blogs, where they could host their applications, and have them hosted by BP Forums.
What do you guys think about that?
|
|
|
Keeping Track of Multiple Things (Alternative to an Array) |
Posted by: brandonio21 - 11-27-2011, 03:02 PM - Forum: Code Snippets
- No Replies
|
|
I thought that some of you may find this useful, It is the List object in VB.NET, which allows you to hold several things in one object. For example, if you have several strings.
[code2=vbnet]Dim str1 As String = "Hello"
Dim str2 As String = "My"
Dim str3 As String = "Name"
Dim str4 As String = "Is"
Dim str5 As String = "Brandon"
Dim strList As List(Of String)
strList.Add(str1)
strList.Add(str2)
strList.Add(str3)
strList.Add(str4)
strList.Add(str5)
Dim total As String = ""
For Each item In strList
total = total + " " + item
Next
Msgbox(total)[/code2]
This code will print out a MessageBox with the text of "Hello My Name Is Brandon "
Obviously this is not the best use for Lists, but they may come in handy when doing something else, so be sure to play around with them!
|
|
|
|