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.
» 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: 500
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,074
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,877
Beautiful Womans in your ...
Forum: VB.NET
Last Post: iHOMEz
06-09-2024, 09:23 PM
» Replies: 0
» Views: 1,684
Hangman in Rust
Forum: Other
Last Post: brandonio21
02-04-2018, 11:14 AM
» Replies: 2
» Views: 20,694
How to: Search files from...
Forum: VB.NET
Last Post: brandonio21
11-25-2017, 12:55 PM
» Replies: 1
» Views: 16,003

 
  How to create large Softwares ?
Posted by: Himansh - 03-14-2012, 11:01 PM - Forum: Programming Help - Replies (5)

Hi everybody
Can anybody tell me how microsoft creates such large softwares like"Microsoft visual basic "
and how adobe create softwares like "dreamviewer and photoshop and fireworks"
please help

-Himansh

Print this item

  How is Notepad++ Created ?
Posted by: Himansh - 03-14-2012, 12:28 AM - Forum: Programming Help - Replies (1)

Can anybody tell me how to create
Notepad++ in visual basic
Please

Print this item

  Extended Euclid's Algorithm
Posted by: K_Mccormic - 03-13-2012, 06:08 AM - Forum: Programming Help - No Replies

Hi,

I got this problem about the Extended Euclid's Alg but everytime I try posting it on here it gives me a problem.

This is my problem that I posted on another site.

Thanks in advance

<!-- m --><a class="postlink" href="http://stackoverflow.com/questions/9670689/extended-euclids-algorithm-in-vb">http://stackoverflow.com/questions/9670 ... ithm-in-vb</a><!-- m -->

Print this item

  Opening a video automatically from a directory
Posted by: K_Mccormic - 03-13-2012, 06:01 AM - Forum: Programming Help - Replies (3)

Hi,

I have searched all over the web for some sort of simple code that would just open this video file. I have managed to create a media player but you have to choose the file yourself. Is there a simple way that would just load this single file when the form starts?

Print this item

  Possible or Not?
Posted by: Vinwarez - 03-13-2012, 04:09 AM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (3)

Hello, BP community.

I watched BP's tutorial on how to send emails using VB10 code and I got an idea. Is it possible to post on this forum using VB10 code? Cool, right? Hah!

Regards,
Vinwarez.

Print this item

  Text to Speech
Posted by: Vinwarez - 03-12-2012, 11:57 PM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (2)

Hello, BP community.

Recently I've found out how to turn text to speech using only Visual Basic. It is very easy and it is useful for some programs such as Speak ABCs program or similar.

Here is the code snippet:

Code:
Dim SAPI
SAPI = CreateObject("SAPI.spvoice")

SAPI.Speak("[message]")

If you want it to speak the text from textbox, change "[message]" to Textbox1.text. This is the easiest and the simplest way.

Regards,
Vinwarez.

Print this item

  Java and JavaScript
Posted by: Vinwarez - 03-12-2012, 12:16 PM - Forum: Java - Replies (2)

Hello, BP community.

I wanted to ask, what is the difference between Java and Javascript. I've heard that Java is more complex than JavaScript. Is it true? Should I learn JavaScript before learning Java? That is all I want to ask, at the moment. Thank you!

Regards,
Vinwarez.

Print this item

  Calculator Help
Posted by: Vinwarez - 03-12-2012, 12:02 PM - Forum: Programming Help - Replies (7)

Hello, BP community.

Well, I made a calculator in VB10, but there is a problem. The "." button shows the wrong results. For example, 12.5 + 12.5 = 24,5.

The code snippet I use for the dot button is this one:

Code:
x = x + 1
If x = 1 Then
   txtMain.AppendText(".")
Else
   'Do Nothing
End If

And the code snippet I use for calculating is this:
Code:
Try
  If Operation = "+" Then
      Answer = Number + Val(txtMain.Text)
      History.Items.Add(Number + " + " + txtMain.Text + " = " + Answer)

      txtMain.Clear()
      txtMain.Text = Answer
      x = 0
   ElseIf Operation = "-" Then
      Answer = Number - Val(txtMain.Text)
      History.Items.Add(Number + " - " + txtMain.Text + " = " + Answer)

      txtMain.Clear()
      txtMain.Text = Answer
      x = 0
  ElseIf Operation = "*" Then
      Answer = Number * Val(txtMain.Text)
      History.Items.Add(Number + " * " + txtMain.Text + " = " + Answer)

      txtMain.Clear()
      txtMain.Text = Answer
      x = 0
  ElseIf Operation = "/" Then
      Answer = Number / Val(txtMain.Text)
      History.Items.Add(Number + " / " + txtMain.Text + " = " + Answer)

      txtMain.Clear()
      txtMain.Text = Answer
      x = 0
  End If
Catch ex As Exception
  MsgBox(ex.Message)
End Try

I gave you those two codes because you maybe need the calculating code, as well, to edit it for me. Maybe you need an explanation with that "x" variable. It actually prevents "." to be in one text box twice.

I have no idea if you understood the x variable, but it is not actually so important (for you). I hope I get response soon. Thanks.

Regards,
Vinwarez.

Print this item

  How to delete all files in a specific folder using VB ?
Posted by: Himansh - 03-12-2012, 05:33 AM - Forum: VB.NET (Visual Basic 2010/2008) - Replies (4)

Hi can Anybody please create an video which tells that "how to delete all files in a specific folder using Visual basic"
because i usually hv to delete files in the folder "prefetch,recent,temp,%temp%" but it becomes very tedious to delete them by entering each folder

please make one video which deals with above problem pls

Print this item

  [QBasic] Advanced Calculator
Posted by: Vinwarez - 03-11-2012, 01:36 AM - Forum: Your Things - Replies (2)

Hello, BP community.
I feel like QBasic professional user, but I am not. I am just advanced user of QB. With that being said, I made an advanced QBasic calculator.

For those who want to try it out, click the link below.
http://www65.zippyshare.com/v/7603054/file.html
NOTICE: The .EXE file must be in the folder with all those .DLL files, otherwise it will not work.

Source Code:
<!-- m --><a class="postlink" href="http://pastebin.com/4vvC8Pdy">http://pastebin.com/4vvC8Pdy</a><!-- m -->

If you want to download QB64, click the link below.
http://www.qb64.net/

Regards,
Vinwarez.

Print this item