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

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 3,043
» Latest member: NefariusTriff
» Forum threads: 857
» Forum posts: 3,646

Full Statistics

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 boot screens ?
Posted by: Himansh - 03-15-2012, 01:29 AM - Forum: Computing - Replies (2)

Hey i used to have a software called "Tune up utilities "
and it contained many boot screens and with tune up we can change our boot screen
But can anybody tell me how to create boot screen manually or by using visual basic
and how to apply it

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

Print this item

  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