Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 2,804
» Latest member: msontop6722
» Forum threads: 856
» Forum posts: 3,643

Full Statistics

Online Users
There are currently 3 online users.
» 1 Member(s) | 1 Guest(s)
Google, MorrissgoX

Latest Threads
Looking for Adventure? Fi...
Forum: Random Discussion
Last Post: iHOMEz
11-16-2024, 09:18 PM
» Replies: 0
» Views: 495
Prettys Womans in your to...
Forum: Random Discussion
Last Post: iHOMEz
10-30-2024, 07:45 AM
» Replies: 0
» Views: 790
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,444
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,687
How to: Search files from...
Forum: VB.NET
Last Post: brandonio21
11-25-2017, 12:55 PM
» Replies: 1
» Views: 15,995

 
  Winsock Control
Posted by: Covert2String - 11-25-2011, 05:12 PM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (7)

Hey, I need help (again) with the Winsock Control (v 6.0 , and VB 2010). First, it seems that VB does not recognize state method, like:

Code:
If sock.State = sckListening Then
, second I'd like to know how to execute a file or a command in the cmd (no, i'm not trying to make a RAT app).

Thank you <!-- sBig Grin --><img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt="Big Grin" title="Very Happy" /><!-- sBig Grin -->

Print this item

  New, personable blog
Posted by: brandonio21 - 11-24-2011, 01:05 AM - Forum: Your Sites! - No Replies

For anyone that is interested, I have just started a new blog where I will be posting changelogs for my applications.. and talking about my opinions. Yeah, I don't think it will ever become very popular, but if you could check it out, I would appreciate it!
<!-- m --><a class="postlink" href="http://devblog.brandonsoft.com/">http://devblog.brandonsoft.com/</a><!-- m -->

Print this item

  I have done it. I have purchased a smartphone.
Posted by: brandonio21 - 11-23-2011, 01:27 AM - Forum: Off-Topic - Replies (2)

Well, I have finally done it. I have purchased the Droid X2, and I am simply waiting for it to ship to my home! I am pretty excited!

Does anyone else have an Android?

[Image: motorola-droid-x-2-5176198.jpg]

Print this item

  Outputting a string with quotation marks in it.
Posted by: openeXpressions - 11-21-2011, 08:06 PM - Forum: Programming Help - Replies (15)

Hi all! I'd really like to know how to insert a string with double quotes. Example:

Code:
insert("And Dave said, "Look out!"")
VB interprets Look out! as not part of the string. How do I solve this issue? Thanks!

Print this item

  Awesome control and some help and ideas needed.
Posted by: openeXpressions - 11-21-2011, 07:32 PM - Forum: Programming Help - Replies (5)

<!-- m --><a class="postlink" href="http://www.codeproject.com/KB/edit/FastColoredTextBox_.aspx?msg=4072439#xx4072439xx">http://www.codeproject.com/KB/edit/Fast ... x4072439xx</a><!-- m -->
Here is an amazing control that Brandon and I were discussing today. Does anyone have an idea of how to use the AutoComplete feature in VB?

Print this item

  My New Setup!
Posted by: brandonio21 - 11-16-2011, 10:20 PM - Forum: Your Pictures! - Replies (9)

I recently rearranged my room, so I thought that you guys would like to see my new setup. Enjoy! <!-- sBig Grin --><img src="{SMILIES_PATH}/icon_e_biggrin.gif" alt="Big Grin" title="Very Happy" /><!-- sBig Grin -->


[attachment=0]<!-- ia0 -->setup.JPG<!-- ia0 -->[/attachment]



Attached Files Thumbnail(s)
   
Print this item

  MessageBox creator
Posted by: RabidLamb - 11-16-2011, 06:06 PM - Forum: Programming Help - Replies (6)

I need help with this.
i cant figure out how to make a radiobutton add an
icon to the msgbox when Checked and submited for the messagebox
Here is the code
_________________________________________________

Code:
MessageBox.Show((TextBox2.Text), (TextBox1.Text))
_________________________________________________

so i hope you can help me
textbox1 is for the title and textbox2 is for the text

Print this item

  Need some help...:P
Posted by: Jake - 11-10-2011, 01:46 PM - Forum: Java - Replies (3)

Hey Brandonio, started you're tutorials, finished them already, can't wait for you to come out with more, I tried developing an "applet" that uses JOptionPanes, but am failing, so do you think you can help me, if you know how?

D:


Here is what I have:

Code:
import javax.swing.*;
import java.util.*;
public class TriangleArea {

    static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) {
        
        double base;
        double height;
        double preArea1 = Double.parseDouble(JOptionPane.showInputDialog("Please enter the base of your triangle:"));
        base = sc.nextDouble();
        double preArea2 = Double.parseDouble(JOptionPane.showInputDialog("Please enter the height of your triangle:"));
        height = sc.nextDouble();
        double PreArea3 = base * height;
        double Area = PreArea3 / 2;
        JOptionPane.showMessageDialog(null, "The area of your triangle is" + Area + " Units.");
    
    }

}

What this does is open up and ask for the base, I enter it and it just disappears and does nothing, so I suspect I did something wrong. You can't use a scanner with JOptionPanes, can you? I'm so confused <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->

Can you help me out man?

Print this item

  External Settings File
Posted by: brco900033 - 11-04-2011, 07:37 AM - Forum: Programming Help - Replies (1)

I need some help with a code, how can I save the text from a RichTextBox to a TXT document? I have tried the following code but when I open the TXT Document there comes a strange code!

Code:
My.Forms.main.txt_text.SaveFile("C:\Program Files\info\Text.txt", RichTextBoxStreamType.RichText)


And then I have a second question:
How can I make a code so that for example the setting 'Text' contains the text from the saved TXT Document above?

Print this item

  Bookmarking in Webbrowser
Posted by: Gamester699 - 11-03-2011, 12:28 PM - Forum: Programming Help - No Replies

Hey everyone does anyone know a simple way to make a webbrowser bookmark capable?. If you do just post the code. Thanks <!-- sWink --><img src="{SMILIES_PATH}/icon_e_wink.gif" alt="Wink" title="Wink" /><!-- sWink -->

Print this item