User Profile

Collapse

Profile Sidebar

Collapse
bIGMOS
bIGMOS
Last Activity: Jan 16 '08, 07:22 PM
Joined: Dec 19 '07
Location: In a House
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Need a simple Server Prog to listen to ping request

    I made a GUI ping program, now Im lost on how to do the server end of it

    Need a simple VB 2005 express program that will listen to ping request and display something like YOU ARE BE PINGED like in a lable.
    Do i use AXwiscox ???

    If pingReply.Statu s = IPStatus.Succes s Then
    Label1.Text = "Ping Received"
    See more | Go to post

  • bIGMOS
    started a topic Printing Multiple TextBoxs
    in .NET

    Printing Multiple TextBoxs

    Hey Guys,
    I have a random nnumber generator, with puts the results in 4 Textbox's
    I need to save them to file so I can print them, but they need to be in order from Textbox1.Text - Texbox4.Text.
    I used Printform ,but it prints the whole form, wich dosent look good
    Here is an Idea I had ,but only works for 1 textbox
    [code=vbnet]
    Imports System.IO
    Public Class Form1

    Private Sub...
    See more | Go to post
    Last edited by debasisdas; Jan 9 '08, 12:12 PM. Reason: Formatted using code=vbnet tags

  • bIGMOS
    replied to Need Help with Leading Zeros
    Yep that did it Thanks for your help . I was overcomplicatin g it....
    See more | Go to post

    Leave a comment:


  • bIGMOS
    started a topic Need Help with Leading Zeros

    Need Help with Leading Zeros

    I need to generate a random number from 0100, 0999, Im stuck on the how to..

    iRand1 = oRand.Next(1000 , 2500)
    iRand2 = oRand.Next(1000 , 9999)
    iRand3 = oRand.Next(1000 , 2500)
    iRand4 = oRand.Next(9000 , 9999)

    TextBox1.Text = (iRand1)
    TextBox2.Text = (iRand2)
    TextBox3.Text = (iRand3)
    TextBox4.Text = (iRand4)
    ...
    See more | Go to post

  • bIGMOS
    replied to Random Numbers Generator
    Hi. I am trying to generate random numbers between 1000 and 9999.

    [CODE=vbnet]Private Sub Button1_Click(B yVal sender As System.Object, ByVal e As System.EventArg s) Handles Button1.Click
    Randomize()
    Dim iRand As Integer
    iRand = oRand.Next(1000 , 9999)

    ' This is where I want 4 DIFFRENT RANDOM NUMBERS BUT THEY'RE RANDOMLY THE SAME AHHH''''
    'TextBox1.Text = (iRand)
    'TextBox2.Text = (iRand)...
    See more | Go to post
    Last edited by Killer42; Dec 19 '07, 08:32 PM. Reason: Added CODE=vbnet tag

    Leave a comment:

No activity results to display
Show More
Working...