Welcome, Guest |
You have to register before you can post on our site.
|
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
|
|
|
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 -->
|
|
|
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?
|
|
|
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.
|
|
|
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.
|
|
|
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.
|
|
|
[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.
|
|
|
|