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

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 2,805
» Latest member: RichardFeact
» Forum threads: 856
» Forum posts: 3,643

Full Statistics

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: 499
Prettys Womans in your to...
Forum: Random Discussion
Last Post: iHOMEz
10-30-2024, 07:45 AM
» Replies: 0
» Views: 792
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-26-2024, 10:50 AM
» Replies: 0
» Views: 815
Beautiful Womans from you...
Forum: Random Discussion
Last Post: iHOMEz
10-19-2024, 02:48 PM
» Replies: 0
» Views: 914
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-06-2024, 05:00 PM
» Replies: 0
» Views: 1,073
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,873
Beautiful Womans in your ...
Forum: VB.NET
Last Post: iHOMEz
06-09-2024, 09:23 PM
» Replies: 0
» Views: 1,683
Hangman in Rust
Forum: Other
Last Post: brandonio21
02-04-2018, 11:14 AM
» Replies: 2
» Views: 20,689
How to: Search files from...
Forum: VB.NET
Last Post: brandonio21
11-25-2017, 12:55 PM
» Replies: 1
» Views: 16,001

 
  Krypton Problem
Posted by: Vinwarez - 03-11-2012, 12:57 AM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (5)

Hello, BP community.
I watched Brandonio's video, yesterday, on how to make your application look really professional. So when I downloaded it, I extracted it and then installed it. The installation went totally smooth. No errors or anything like that. But, when I open VB10 and click 'New Project', I do not see Krypton window form like Brandonio has in his video. During the installation VB10 was closed. However, Krypton Explorer works just fine, but I cannot get it into the VB10. I would really appreciate if someone can help me with this.

By the way, I have Krypton 4.3.2 and there is no Krypton stuff in Toolbox as well.

Regards,
Vinwarez.

Print this item

  Disable Sizable Border
Posted by: Vinwarez - 03-11-2012, 12:38 AM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (2)

Hello, BP community.
Well, since I want to be active on the forum, I decided to share a little hint with you. There is that famous way to disable sizable border (FormBorderStyle -> FixedSingle/Fixed3D), but the border of the form changes a bit. Well, there is a way which does not change the form border, but makes the borders unsizable.

How? Here's the way:
1. Find "AutoSizeMode" in the Properties window.
2. The default value should be "GrowOnly", but you change it to "GrowAndShrink".
3. Test your application.
NOTICE: Your "FormBorderStyle" may be set to "Sizable".

I hope I helped someone who was looking how to fix it.

Regards,
Vinwarez.

Print this item

  How to remove these errors?
Posted by: Vinwarez - 03-10-2012, 12:49 PM - Forum: Programming Help - Replies (6)

Hello, BP community.
I guess I can call myself an intermediate VB10 user, therefore I started making more serious programs. First time I started debugging my web browser and went on YouTube (on my web browser) some scripting message boxes popped out. I looked up on the internet how to get rid of those scripting errors (or whatever that is) and the code worked. But, on some pages I still get the scripting error message boxes. If someone can help me with this, I would really appreciate.

The code I used to, partly, remove them was this:

Code:
Browser.ScriptErrorsSuppressed = True

Regards,
Vinwarez.

Print this item

  New Web Browser With tons of features
Posted by: zmanalpha - 03-06-2012, 07:05 PM - Forum: Share your programs! - Replies (3)

hello everyone, I am currently working on a new web browser that has a decent set of features. But i have an unusual request, which i hope is allowed. I am not the most creative person in the world and I wondered if anyone had An idea for a title/name.

I don't know if it will help anyone but here is the feature list

* Clean, beautiful interface
* Gecko Web Browser Component w/ Xulrunner 11
* Auto - Updater
* Auto - Bug Reporting system/error prevention
* Plugin/Add-On System(Hopefully)
* Optional Music player And Text editor
* Web-Developer Tools(Error Console, View Source, Html Editor, ect.)

Thanks for the help. If this is against any rule sorry...

Print this item

  Question about my laptop
Posted by: Gamester699 - 03-04-2012, 08:09 PM - Forum: Computing - Replies (1)

Hey, i was wondering if it was possible to take the memory from a usb flash drive and put on my hard drive. If this is possible please tell me how to do it. I have windows vista sp2.

Print this item

  Files in a listbox
Posted by: Hurricane - 02-26-2012, 08:45 AM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (4)

I would first like to say thanks for putting up a website like this! I have looked through and watched your tutorial on having files come up in a listbox. I'm still having problems getting them to show up though....I'm a newbie to all of this. This is the code I'm using below, but when I run the project I don't see any files in the listbox.....thanks for the help in advance!!


Public Class Form3

Private Sub Form3_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

End Sub
Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged
Dim directory = "C:\PIF"
Dim files() As System.IO.FileInfo
Dim dirinfo As New System.IO.DirectoryInfo(directory)
files = dirinfo.GetFiles("*", IO.SearchOption.AllDirectories)
For Each file In files
ListBox1.Items.Add(file)
Next
End Sub
End Class

Print this item

  I need help Programing a new program.
Posted by: Aaron Rogers118 - 02-23-2012, 11:51 AM - Forum: Programming Help - Replies (17)

I need to know how to make the icon, program a media player, and program a Web-browser. Any Ideas?

Print this item

  Sliding Animation
Posted by: zmanalpha - 02-19-2012, 04:40 PM - Forum: Programming Help - Replies (3)

Hi There, I Am Trying to make a control(Panel)slide down from the top of a window, but I can't get it to work for the life of me... Anyone have an idea?

Print this item

  Why dusn't this code Work?
Posted by: Aaron Rogers118 - 02-17-2012, 12:13 PM - Forum: Programming Help - Replies (3)

Code:
Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        If CheckBox1.Checked = True Then
            MessageBox.Show("TEST", "TEST", MessageBoxButtons.OK)
        Else
            MessageBox.Show("TEST", "TEST", MessageBoxButtons.OKCancel)
            If MessageBoxButtons.Cancel = Click Then
                MessageBox.Show("Are you shor you want to quit?", "TEST", MessageBoxButtons.YesNo, MesssageBoxIcon.Question)
                If MessageBoxButtons.Yes = Click Then
                    End
                End If
            End If
        End If

    End Sub
End Class

Print this item

  Familiar With Fl Studio
Posted by: Gamester699 - 02-16-2012, 06:26 PM - Forum: Computing - Replies (6)

Hey i was wondering if anyone here is familiar with Fl Studio if so please tell me

Print this item