User Profile

Collapse

Profile Sidebar

Collapse
Pragash
Pragash
Last Activity: Feb 3 '07, 05:38 PM
Joined: Feb 3 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Pragash
    replied to Time and combo box
    Try "format" function to change the formats of time,date or numbers

    combobox name is "cboTime"

    For i = 0 to 24
    cboTime.additem format(ctime(i) ,"hh:mm")
    Next

    may be it show the error in "ctime", if it is show the error remove the ctime and just put "i"
    See more | Go to post

    Leave a comment:


  • Pragash
    replied to VB6: Resizing Images
    in my computer don't have vb so i could check this code but u can check this.
    but if u understand the concept u can easly correct it.


    image box name is "img"
    picture box name is "pic"
    commond button name is "cmd"
    place the image control into picturebox and change the image control streach property to true.

    Private Sub cmd_Click()
    img.width = img.picture.wid th...
    See more | Go to post

    Leave a comment:


  • Pragash
    replied to Checkboxes
    Try this code
    I don't know much more knowledge about vb but try this code

    Code:
    Private Sub btnProcess_Click()
    txtResult.Text = "................."
    If Check1.Checked Then
       txtResult.Text = txtResult.Text & "Cinema"
    End If
    If Check2.Checked Then
       txtResult.Text = txtResult.Text & "Mobiles"
    End If
    If Check3.Checked Then
       txtResult.Text
    ...
    See more | Go to post
    Last edited by willakawill; Feb 3 '07, 09:46 PM. Reason: Please use code tags

    Leave a comment:

No activity results to display
Show More
Working...