[Service] Taking requests menu

User Tag List

Results 1 to 8 of 8
  1. #1
    iruleatants's Avatar Active Member
    Reputation
    16
    Join Date
    Apr 2008
    Posts
    73
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Service] Taking requests

    All I need is a simple description of the program, in complete sentences and proper grammar. If this is not met, I will IGNORE your post.

    I program in vb.net

    [Service] Taking requests
  2. #2
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I don't need a program DONE, just a code..
    Im making a GC program, its like put in your gc and this program will give u 5
    So my question is, how do I make the program make 5 random 25-digit numbers?

  3. #3
    Murdok's Avatar Member
    Reputation
    34
    Join Date
    Oct 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    for vb6

    Code:
    dim i as Integer
    dim GameCard(4) as interger
    
    For i = 0 to 24
    GameCard(0) = Int((9 - 1 + 1) * Rnd) + 1
    GameCard(1) = Int((9 - 1 + 1) * Rnd) + 1
    GameCard(2) = Int((9 - 1 + 1) * Rnd) + 1
    GameCard(3) = Int((9 - 1 + 1) * Rnd) + 1
    GameCard(4) = Int((9 - 1 + 1) * Rnd) + 1
    
    txtGameCard1.text = txtGameCard1.text & GameCard(0) 
    txtGameCard2.text = txtGameCard2.text & GameCard(1)
    txtGameCard3.text = txtGameCard3.text & GameCard(2)
    txtGameCard4.text = txtGameCard4.text & GameCard(3)
    txtGameCard5.text = txtGameCard5.text & GameCard(4)
    Next i
    Last edited by Murdok; 11-06-2008 at 04:00 PM.

  4. #4
    Zeroi9's Avatar Banned
    Reputation
    286
    Join Date
    Aug 2008
    Posts
    911
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Murdok View Post
    for vb6

    Code:
    dim i as Integer
    dim GameCard(4) as interger
    
    For i = 0 to 24
    GameCard(0) = Int((9 - 1 + 1) * Rnd) + 1
    GameCard(1) = Int((9 - 1 + 1) * Rnd) + 1
    GameCard(2) = Int((9 - 1 + 1) * Rnd) + 1
    GameCard(3) = Int((9 - 1 + 1) * Rnd) + 1
    GameCard(4) = Int((9 - 1 + 1) * Rnd) + 1
    
    txtGameCard1.txt = txtGameCard1.text & GameCard(0) 
    txtGameCard2.txt = txtGameCard2.text & GameCard(0)
    txtGameCard3.txt = txtGameCard3.text & GameCard(0)
    txtGameCard4.txt = txtGameCard4.text & GameCard(0)
    txtGameCard5.txt = txtGameCard5.text & GameCard(0)
    
    Next i
    or use getrandomizefunction? Much easier. like
    Button1_click
    Textbox1.text = (getrandomizefunction,1234567890,5))
    this will randomize 5 numbers b etween 1234567890 in the textbox1.text

  5. #5
    Murdok's Avatar Member
    Reputation
    34
    Join Date
    Oct 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Do you mean something like ?

    Code:
    Text1.Text = Rnd(1234567890)

    There are 10 kinds of people in the world. Those who understand binary and those who don't.

  6. #6
    1337person's Avatar Active Member
    Reputation
    21
    Join Date
    Aug 2007
    Posts
    119
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i could also use a code if u don't mind or some help, im making a rick roll virus and i need a code that Adds it to the Reg, Note: not just my computer then

    Would be appreciate if u could make this been looking for days

    i use VB.net Express 2008

    If u got Msn and got time for a little person like me with my small programs PM Me
    Last edited by 1337person; 11-06-2008 at 05:12 PM.

  7. #7
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    ''' <summary>
    ''' Creates a registry key with the specified name and value.
    ''' </summary>
    ''' <param name="keyPath">The path to the registry key in the HKLM registry node. E.G: Software\\Microsoft\\Windows\\CurrentVersion\\Run</param>
    ''' <param name="name">The name of the registry key to add.</param>
    ''' <param name="value">The value of the key.</param>
    '''<exception cref="NullReferenceException">Thrown when the key does not exist. You must handle this yourself.</exception>
    Public Shared Sub SetRegKey(ByVal keyPath As String, ByVal name As String, ByVal value As Object)
        Using lm As RegistryKey = Registry.LocalMachine
            Using k As RegistryKey = lm.OpenSubKey(keyPath, True)
                If k.OpenSubKey(name) Is Nothing Then
                    k.CreateSubKey(name).SetValue(name, value)
                Else
                    k.OpenSubKey(name).SetValue(name, value)
                End If
            End Using
        End Using
    End Sub
    Might need some syntax fixing (took this straight out of one of my C# projects, and just converted it).

  8. #8
    Neth'zul's Avatar Banned
    Reputation
    204
    Join Date
    Nov 2007
    Posts
    887
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks man +rep

Similar Threads

  1. [DBC Edit] [Spell Swaps][Service] Taking requests
    By Classicclean in forum World of Warcraft Model Editing
    Replies: 89
    Last Post: 09-27-2011, 03:47 PM
  2. [DBC Edit] [Spell Swaps][Service][enUS] Taking requests
    By linlong416 in forum World of Warcraft Model Editing
    Replies: 4
    Last Post: 04-08-2011, 03:02 AM
  3. [Service] Taking program requests.
    By Clain in forum Programming
    Replies: 11
    Last Post: 10-06-2008, 04:05 PM
  4. [Service] Taking Model Editing Requests
    By Wind in forum WoW ME Questions and Requests
    Replies: 8
    Last Post: 02-21-2008, 04:19 AM
All times are GMT -5. The time now is 02:22 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search