Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 2 online users. » 0 Member(s) | 1 Guest(s) Google
|
Latest Threads |
Womans from your city - V...
Forum: Random Discussion
Last Post: iHOMEz
02-27-2025, 12:59 PM
» Replies: 1
» Views: 1,981
|
Looking for Adventure? Fi...
Forum: Random Discussion
Last Post: iHOMEz
01-08-2025, 11:00 PM
» Replies: 1
» Views: 1,067
|
Find Local Women Looking ...
Forum: Random Discussion
Last Post: iHOMEz
12-27-2024, 12:11 AM
» Replies: 0
» Views: 495
|
Prettys Womans in your to...
Forum: Random Discussion
Last Post: iHOMEz
10-30-2024, 07:45 AM
» Replies: 0
» Views: 1,314
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-26-2024, 10:50 AM
» Replies: 0
» Views: 1,303
|
Beautiful Womans from you...
Forum: Random Discussion
Last Post: iHOMEz
10-19-2024, 02:48 PM
» Replies: 0
» Views: 1,402
|
Prettys Womans in your ci...
Forum: Random Discussion
Last Post: iHOMEz
10-06-2024, 05:00 PM
» Replies: 0
» Views: 1,545
|
Supreme Сasual Dating - A...
Forum: Random Discussion
Last Post: iHOMEz
06-14-2024, 11:28 AM
» Replies: 0
» Views: 2,358
|
Beautiful Womans in your ...
Forum: VB.NET
Last Post: iHOMEz
06-09-2024, 09:23 PM
» Replies: 0
» Views: 2,553
|
Hangman in Rust
Forum: Other
Last Post: brandonio21
02-04-2018, 11:14 AM
» Replies: 2
» Views: 21,460
|
|
|
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.
|
|
|
|