titansrealm 0 Newbie Poster

theres a php parsing that, but i solved the problem myself, i went into it and just copied all the code from the model side , renamed it to the user side, and deleted all the code in it that the model has and just gave the user the ability to see user name and post in the chat, and not being able to see the other users money amount on their account. i just had to look at it for awhile

titansrealm 0 Newbie Poster

ok have a problem in a chat i have made, everything is working but the user list , in my assets file in swf i have the following under a config xml

<?xml version="1.0"?><config
     musicPlayer="true"      
     multipleCamBroadcast="true"
     webcamToWebcam="true"   
     userHasList="true"
     userListDefaultOpened="true"
     autoAcceptPrivateInvitations="false"
     showTipInChat="true"
     showTipToViewersInPopUp="true"
     topicEnabled = "true"
>

then in the same assets folder i have a uselist xml and a userlist php which look like these

<?xml version="1.0" encoding="utf-8"?>
<list>
    <user>
        <userName>UserName1</userName>
        <userId>v1</userId>
        <color>0xFF0000</color>
    </user>

    <user>
        <userName>UserName2</userName>
        <userId>v2</userId>
        <color>0x654399</color>
    </user>
    </list>

and the php code is

<list>
    <viewer
        username ="UserName1"
        userid="v1"
        color="#FF0000"
    />

    <viewer
        username ="UserName2"
        userid="v2"
        color="#654399"
    />
    </list>

i shortened those because its the same code over and over just userid diff.
i have the user list showing up in the page on the chat, but it is not populating the user list from known users in the room, is there a simpler way to echo the userlist to the page

titansrealm 0 Newbie Poster

Hi,
I am Anupam and I am looking for a Network/Web Engineer, who can tell me these things:
1) What hardware do I need to establish my own Network that will act as a Wireless Internet/Intranet Service Provider.
2) What short/Medium and Long Range Solutions can I use?
For Short to Medium Range I have currently looked at Sector antennas/Strix Wireless solutions as well as Motorola NLOS System, all seem to be viable solutions but I need expert advice.

For Long Range Solutions I have looked at Aprisa XE/SE for sending the signal to a remote location from the Network Operating Center, at 100km distances, but I need more than that, and not VSATs...

We are looking to set up a Wireless Internet Service Porvider all over the Country and are looking for experts in the field of this technology to help us find apporpriate solutions.

We are looking at setting up the Network for that we need to know what all Hardware we need, then we need our Short/Medium and Long Range Wireless Solutions and how they can be combined.

If interested mail me at <EMAIL SNIPPED>
Let me know what you can! Thank You!

have you looked into EV-DO (cell) or wimax

titansrealm 0 Newbie Poster

Is there any software in the market providing proxy ids. I want a
couple of them. Please help

well yourfreedom proxys do it but only for afew hrs aday unless u subscribe to it

titansrealm 0 Newbie Poster

well i would make it smaller to add a 4 loop to take over all the copy and pasted but thats how the proff was wanting it and we are going to add more things to it today in class that starts in 3 mins

titansrealm 0 Newbie Poster

mixing ram is not a good thing.diff ram has diff voltage it uses.
plus here is a thing diffrent os see diffrent amounts of ram vista 32 sees around 3.4/3.6 vista 64 see god who knows how much when done tweaking it
xp around 4
but mixing old and new ram will not result in hat you are thinking it will.you will have a bottle neck effect with speeds being dummyed down on the new to match the old.
plus diff voltages will have a performance effect on it.best case is to get more new ram like you bought thats new.
matching ram is your friend

titansrealm 0 Newbie Poster

are you meaning a server when u say a networking box/machine ??

titansrealm 0 Newbie Poster

have u dual forwarded the ports and settings from the first to the second to make a clean follow trough onto both routers.

titansrealm 0 Newbie Poster

Hi,

I live in Mauritius and there is only one ISP here. Every month I pay $100 for a pathetic 512K connection. They also use fair usage policy. So, I was wondering if there is a way I could provide myself with internet. Without having to rely on an ISP.

Thanx.

well u can get a t1/t3 connection (in europe its a e1/e3 connection) very expansive but you will be renting dedicated channels from your isp.
a T1 has 64-channel at a speed of 1.544 cost of 250$-400$ a month
a t3 will access 672 channels speed of 45 mbs which is 28 t1 connections cost of service will normally be priced between $3,000 and $12,000 monthly.

but these are more expansive then what u have now,plus special equip to buy.
then there is the satilite route.which has a fair use policy along with it and is more expensive and equip to buy.
then we get into the cell internet.dont go this route you wont like it


but renting a dedicated t1/t3 u could make your own isp setup as an independent isp provider,
but as a normal home user stick with what u have now

titansrealm 0 Newbie Poster

ok heres how far iv gotten on the script

Public Class student
   Private _studentName As String

   Private _grade1 As Integer
   Private _grade2 As Integer
   Private _grade3 As Integer
   Private _grade4 As Integer
   Private _grade5 As Integer
   Private _grade6 As Integer
   Private _grade7 As Integer
   Private _grade8 As Integer
   Private _grade9 As Integer
   Private _grade10 As Integer
   Public Sub New()
      _grade1 = 100
      _grade2 = 100
      _grade3 = 100
      _grade4 = 100
      _grade5 = 100
      _grade6 = 100
      _grade7 = 100
      _grade8 = 100
      _grade9 = 100
      _grade10 = 100
      _studentName = "pupil"

   End Sub
   Public Sub New(ByVal name As String)
      _grade1 = 100
      _grade2 = 100
      _grade3 = 100
      _grade4 = 100
      _grade5 = 100
      _grade6 = 100
      _grade7 = 100
      _grade8 = 100
      _grade9 = 100
      _grade10 = 100
      _studentName = name
   End Sub
   Public Property studentName() As String
      Get
         Return _grade1

      End Get
      Set(ByVal value As String)
         _studentName = value
      End Set
   End Property
   Public Property Grade1() As Integer

      Get
         Return _grade1

      End Get
      Set(ByVal value As Integer)
         If (value < 0) Then
            _grade1 = 0
         Else
            _grade1 = value
         End If
      End Set
   End Property
   Public Property Grade2() As Integer

      Get
         Return _grade2

      End Get
      Set(ByVal value As Integer)
         If (value < 0) Then
            _grade2 = 0
         Else
            _grade2 = value
         End If
      End Set
   End Property
   Public Property Grade3() As Integer

      Get
         Return _grade3

      End Get
      Set(ByVal value As Integer)
         If (value < 0) Then
            _grade3 = 0
         Else
            _grade3 = value
         End If
      End …
titansrealm 0 Newbie Poster

Not that I am going to go to the trouble of a class but...
'10 names..
Dim Student(1 to 10) As String
'with 10 grades each
Dim Grades(1 to 10, 1 to 10) As Integer
'For identifying student no in array
Dim StudentID As Integer
'for looping through grades and capturing total and result
Dim LoopCnt As Integer, Total As Integer, Result As Double

From the looks of it you have the basics of the user interface down so I will skip to the calculaton loop for a single student...

Total = 0
For LoopCnt = 1 To 10
  Total = Total + Grades(StudentID, LoopCnt)
Next LoopCnt
Result = Total \ 10

Good Luck

as in something like this

Public Class student5
   Dim Student(0 To 10) As String
   Dim Grades(0 To 10, 0 To 10) As Integer

   Dim StudentID As Integer
   Dim average(0 To 10 = total)

   Dim LoopCnt As Integer, Total As Integer, Result As Double



   Private _grade1 As Decimal

   Private _grade2 As Decimal

   Private _grade3 As Decimal

   Private _grade4 As Decimal

   Private _grade5 As Decimal

   Private _grade6 As Decimal

   Private _grade7 As Decimal

   Private _grade8 As Decimal

   Private _grade9 As Decimal

   Private _grade10 As Decimal
   Public ReadOnly Property grade() As Decimal

      Get

         Return _grade1

         Console.ReadLine()
         Console.WriteLine()

      End Get




   End Property

   Public ReadOnly Property grade2() As Decimal

      Get

         Return _grade2

         Console.ReadLine()
         Console.WriteLine()

      End Get

   End Property

   Public ReadOnly Property grade3() As Decimal

      Get

         Return _grade3
         Console.ReadLine()
         Console.WriteLine()


      End Get

   End Property …
titansrealm 0 Newbie Poster

Hi Guys,

I live in a house where we have 8 laptops connecting to a single wireless router . I want to check how much of data each laptop is using everyday . We have Netgear router at home . Can any one help me in fixxing this .

well you can always try webgauge see if that works for tracking your dat usage from each pc connected

titansrealm 0 Newbie Poster

u will need a cross over cable.
then u will need to go in and click go on the mac,then connect to server.
the xp computer should be in there if not u will have to enter the ipv4 addy of the xp computer in samba or something else compatable.


click connect button.
then in authentication field enter the workgroup name (most workgroup names are named workgroup)
you will get to a mount screen,select the share u are wanting.
click ok.
if this doesnt work just means its only my 8th month in networking in college.

titansrealm 0 Newbie Poster

ok prof in college asked us to write a program for a simple gradebook.
iv wrote it 3 times and still cant get it right.
he wants it to be able to put in 10 names/ids and 10 grades,and get a listing of those grades getting an average.
im butchering this thing and getting no where.
this is how far iv gotten on this version of it iv written.

Public Class student

   Private namevalue As String
   Private maximumgrade As Integer


   Public Sub New(ByVal namevalue As String, ByVal gradesArray As Integer)

      maximumgrade = 0
   End Sub

   Private _grade1 As Decimal
   Private _grade2 As Decimal
   Private _grade3 As Decimal
   Private _grade4 As Decimal
   Private _grade5 As Decimal
   Private _grade6 As Decimal
   Private _grade7 As Decimal
   Private _grade8 As Decimal
   Private _grade9 As Decimal
   Private _grade10 As Decimal

   Public ReadOnly Property grade() As Decimal
      Get
         Return _grade1

      End Get

   End Property
   Public ReadOnly Property grade2() As Decimal
      Get
         Return _grade2

      End Get
   End Property
   Public ReadOnly Property grade3() As Decimal
      Get
         Return _grade3

      End Get
   End Property
   Public ReadOnly Property grade4() As Decimal
      Get
         Return _grade4

      End Get
   End Property
   Public ReadOnly Property grade5() As Decimal
      Get
         Return _grade5

      End Get
   End Property
   Public ReadOnly Property grade6() As Decimal
      Get
         Return _grade6

      End Get
   End Property
   Public ReadOnly Property grade7() As Decimal
      Get
         Return _grade7

      End Get
   End Property
   Public ReadOnly Property grade8() As Decimal
      Get
         Return _grade8

      End Get
   End Property
   Public ReadOnly Property grade9() As Decimal …