User Profile

Collapse

Profile Sidebar

Collapse
Seith
Seith
Last Activity: May 9 '07, 05:12 PM
Joined: Oct 5 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Seith
    replied to VB.NET: How do I randomize Words?
    in .NET
    Code:
    'Required to tell the script to make a random number
    Public Function Rand(ByVal Low As Long, ByVal High As Long) As Long
      Rand = Int((High - Low + 1) * Rnd) + Low
    End Function
    
    Private Sub Command1_Click()
    
    Dim random_number As Integer
    Randomize 'Declair Random
    random_number = Rand(1, 6) 'Generates random number from (Lowest, Highest)
    
    Select Case random_number 'Sets the
    ...
    See more | Go to post

    Leave a comment:


  • Code:
    Label1.Caption = Check1.Caption
    You need to give more information about your program, ie, what you want it to do more specificly... this will do what you're asking.

    Seith
    See more | Go to post

    Leave a comment:


  • Seith
    started a topic HTML Directly from wintin the EXE...

    HTML Directly from wintin the EXE...

    Just as in this topic made by a guest: http://www.thescripts. com/forum/thread439633.ht ml

    I need a line of HTML to be loaded directly into the WebBrowser from within the EXE itself to eliminate linking outwith to a HTML file.

    Note: I tired using WebBrowser1.Nav igate "about:" but as soon as you type a " " (space) it turns it into the HTML code %20 and stops it from loading... HOWEVER it does -fit- in...
    See more | Go to post

  • Seith
    replied to How do I display Multiple images??
    I don't get it?

    So you're using PHP to call on fields from a databse, then display them in a table, why don't you add another cell in your DB and call it img then call on <img src=" <?PHP for pulling info from DB?>" /> for each table row...
    See more | Go to post

    Leave a comment:


  • Seith
    replied to Remove the space before a paragraph
    Just like in a book, a paragraph is given a new line

    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Praesent luctus. Sed eget nulla. Proin erat velit, porttitor vitae, laoreet vel, facilisis et, nisi. Fusce id neque eu est lacinia venenatis. Vivamus nec dolor nec purus placerat tincidunt. Fusce erat. Nunc imperdiet suscipit risus. Pellentesque mauris. Vivamus ligula. Morbi bibendum convallis lacus. Etiam mi. Morbi eget pede...
    See more | Go to post

    Leave a comment:


  • Seith
    replied to display input from form
    Um, I don't know how to do it with JS

    Would you be willing to learn how to use PHP becuase ECHO would be better in my opinion =)
    See more | Go to post

    Leave a comment:


  • Seith
    replied to Accept this challenge
    Try being less demanding and ask for help...

    What I'd do is put the variable into a hidden text box then get the data from the text box to be called on from another project:

    Code:
    Private sub cmdDisplayMessage_click()
    MSGBOX = project1.form1.hidden_txt.text
    End Sub
    See more | Go to post

    Leave a comment:


  • Ummm well you're code and idea is totally wrong, for that you'd need:

    Code:
    Private Sub FormName_activate()
    Dim Name As String
    Name = InputBox("What is your name?")
    Print Name
    End Sub
    Private Sub THING_ACTION() - This would be like "command_bu tton click" or "text_field mouseover"

    Dim Name As String - This is right, you set your variable as String...
    See more | Go to post

    Leave a comment:


  • Seith
    replied to Creating a report
    Okay, I re-read the message

    Access has a report wizard built in

    Visual Basic and Access don't really get used at the same time as Access has a VB editor built in for making forms in use with a Access database...
    See more | Go to post

    Leave a comment:


  • Seith
    replied to Please help
    Stupid 5 Minute Edit thing!

    Okay, I fixed your program for you if you're interested:

    Code:
    Private Sub cmdEnter_Click()
        Dim intFileNumber As Integer
        Dim strFileName As String
        Dim strName As String * 30
        Dim strAddress As String * 35
        Dim strCity As String * 25
        Dim strState As String * 2
        Dim strZip As String * 5
        Dim strAccount As String *
    ...
    See more | Go to post

    Leave a comment:


  • Seith
    replied to Notepad URGENT PLEASE
    Try google-ing!

    http://www.cespage.com/vb/vbtut5.html

    Create a simple TEXT opener and save program


    ENJOIIIII!!!! hope you pass :D
    See more | Go to post

    Leave a comment:


  • Seith
    replied to Please help
    No edits snarl

    Okay, so I loaded up your application - but it doesn't acutally write to something.txt? Just in case you didn't know?...
    See more | Go to post

    Leave a comment:


  • Seith
    replied to Please help
    Yeh, he's right although you don't need .text becuase it assumes that's what you mean:


    text_box_name = ""

    This will replace the textbox with [ ]

    And so far your program looks great :}
    See more | Go to post

    Leave a comment:


  • Seith
    replied to Creating a report
    That's not a very good site >_> kind of hard to navigate and find things... and even after looking in it, I couldn't see what he was needing =[...
    See more | Go to post

    Leave a comment:


  • Seith
    replied to How to disable a taskbar
    Wouldn't that mean having the program run before the login screen shows?

    To disable the taskbar, you already need to be logged in - try explaining it so I understand?...
    See more | Go to post

    Leave a comment:


  • Seith
    replied to About Boxes
    What?

    You're wanting a form to popup on top of a form:

    Private Sub commandbutton_C lick() 'Button or Menu to click
    frmAbout.show 'Form to show
    End Sub

    This will make frmAbout pop up on top of the other form.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...