Search results for query: *

  1. skaryChinezeGuie

    music project

    I have been producing music for about 10 years. Though there are many music creation programs, none of them do exactly what is needed by my partner and I. Recently we can close with a combination of Sony acid, Mixman's DM2 hardware, and a third-party program called DM2Midi. If anyone is...
  2. skaryChinezeGuie

    loking for ideas or partners

    looking for ideas or partners Well, it's been 4 months since i graduated from my 1 year course in VB.NET programming. I wouldn't even call myself a beginner really and no one is hiring entry level programmers, that i've found. But i must press on. I'm looking for some ideas on some simple yet...
  3. skaryChinezeGuie

    writing a script for greasemonkey

    Long time no see! well, i'm back. And I finally made the switch from machining and got a computer job! I test the luminosity for refurbished Dell monitors! YEAY! hey it's a foot in the door. And correct me if i'm wrong but were there new sections added to the forum since i've been gone? I was...
  4. skaryChinezeGuie

    form load music

    i was looking at some of the other posts trying to figure out how to play music on the form load event. i can't figure out what to import.
  5. skaryChinezeGuie

    random number generator

    I need to generate a list of 1000 random numbers. and parse them out to a text document on the desktop. and the format must be XXXXXXXX, as in 12345678 or 00000001. Here's what I have so far. Form1.vb Private Sub BtnGenerate_Click If Rad1.Checked = True Then...
  6. skaryChinezeGuie

    Tab KeyPress in Form_Load Programmatically?

    how do i program a tab keypress in a form load? I have a web browser on my form and i need to hit tab twice so that the correct box is selected on the web page.:D
  7. skaryChinezeGuie

    Making a Myspace Friend adder

    I was thinking of making a myspace friend adder. Can I just add a web browser component to my web form, or do I need to make an ASP application?:D
  8. skaryChinezeGuie

    Can I ask a Java/HTML question?

    I am putting a flash player on my website. I was wondering if it was possible for the player to automaticly go to the next clip rather than have 50 players because photobucket only allows 5 minute clips. I have broken up the video into 5 minute clips and want to play one after the other. Here...
  9. skaryChinezeGuie

    copy to clipboard

    new problem! I want to add a "copy to clipboard" button so that you can just copy the text in textbox1 and then paste it on your web page. I imagine it would go something like Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click...
  10. skaryChinezeGuie

    strings

    I am making an HTML code generator and need to display text in a textbox that has quotations but when i tried it errored out. PrivateSub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click TextBox1.Text = "<marquee behavior="scroll" direction="down"...
  11. skaryChinezeGuie

    displaying animated gifs

    i made an animated gif that i want to display. A picturebox will only display the first frame. Changing formats isn't a problem so if anyone has an idea that requires a video format i could do that too.:D
  12. skaryChinezeGuie

    message box problems

    ok. i got it working, now i just need to add some code so that if you click yes to purchase the weapon it will check to see if "newWeapon1, 2, 3, 4 or 5" already equals the corresponding string and if so display a messagebox saying "you already have that." I tried a couple different things but...
  13. skaryChinezeGuie

    comboBox invisible items?

    i have put 5 weapons in the combobox and when the form loads i want the items to be invisible unless they have been purchased. I will handle the purchase stuff i just need to know how to make them invisible. I was also thinking about just adding the items to the comboBox at the time of purchase...
  14. skaryChinezeGuie

    case select

    can anyone explain how case select works? Public Sub Luck() Dim randomLuck As New Random Dim goodLuck As Integer Dim badLuck As Integer Dim luck As Integer luck = randomLuck.Next(1, 2) End Sub What i would like to do is if randomLuck = 1 then select case good luck else select case...
  15. skaryChinezeGuie

    string to integer conversion

    the problem is that option strict won't allow string to integer conversion. How can i work around this or fix it? thanks in advance.:D PrivateSub BtnDeposit_Click(ByVal sender As System.Object, ByVal e As Dim myMoney AsInteger = Money Dim myBank AsInteger = Bank Dim DepositAmount AsInteger...
  16. skaryChinezeGuie

    forms load on center of screen

    how do i make my forms load up in the center of the screen as opposed to the default cascade they are now?:D
  17. skaryChinezeGuie

    help making either a list or array

    i have 9 drugs that i want to make a list or array with and correspond each one to a number, that's why i was thinking array. but i don't know how to go about it. Here's what i have so far. Public Sub RandomLuck() Dim randomLuck As Random = New Random Dim GoodLuck As Integer Dim BadLuck As...
  18. skaryChinezeGuie

    random between certain ranges

    I was trying to make the prices change at random between certain ranges every time the location changes. here's what i did. public variables: Public NewLocation As String Public LocOkolona As String = "Okolona" Public LocBuechel As String = "Buechel" Public LocFernCreek As String = "Fern...
  19. skaryChinezeGuie

    help with my Bank form

    I got the deposit and the withdraw to work half right. It errors out when anything other than a number is entered though because it can't convert a string to an integer. How do i prevent anything other than numbers from being entered into the textboxes, including characters like "-" ? here's my...
  20. skaryChinezeGuie

    Setting a time limit

    I started a timer at the form load event using Public DiffZeit AsDate Public Timer1 As Timer (in the public variable module) Timer1.Enabled = True DiffZeit = DateTime.Now ( in the main form load event ) PrivateSub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs)...
Back
Top