Jump to content

dman

Member
  • Posts

    708
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by dman

  1. Man, that's a story I would like to hear more often!
  2. You have stories mixed. Vice pres. of Sudan died in helicopter crash, King of Saudi Arabia died of old age. Condolences on the loss of your King and great leader.
  3. Just run the SQL file in the SQL window or console. Either browse to the file and run it or paste the text into window and run.
  4. Also, "crappy error" is not very helpful. Please try to be more specific.
  5. I'm afraid it's just javascript until MS fixes CSS in IE7 and a good few more years to get IE6 out of circulation. I have been working with some code I got Here.
  6. Mozilla Sunbird is in early stages, but is nice basic calendar. Also has version that integrates into FF or Tbird.
  7. AFAIK LUA-MODE is a package to add LUA syntax support to various code editors like EMACS.
  8. Nice Egon, But I think this is ootsoo's homework from school. You TOO helpful.
  9. well, look at example above. you need to write a loop to test n iterations of variable according to summary logic above. ie. for or 2^3... loop three times and test variable each time. as soon as you find a true the truth table entry is true. do same for other logic gates. or are you just trying to fill in the conditions? first get loop count 2^n -1 then fill in first row of all 0's then start loop read from left. if it is 0 make it 1 and exit loop If it is 1 make it zero and repeat test on next from left. etc.
  10. That's not enough info. Truth table for what logic? eg. Truth table for 2^2 OR: 0 or 0 = 0 0 or 1 = 1 1 or 0 = 1 1 or 1 = 1 Pseudocode summary: if any true then true for AND: 0 and 0 = 0 0 and 1 = 0 1 and 0 = 0 1 and 1 = 1 if all true then true for XOR: 0 xor 0 = 0 0 xor 1 = 1 1 xor 0 = 1 1 xor 1 = 0 if one and only one true then true etc.
  11. They work OK, but squeeze slowly and don't refill over your wifes (or moms) carpet. Learned that one the hard way Ouch
  12. Uhh..just a crazy thought, but maybe they want to make sure it is actually YOU who is taking the test.
  13. My Apologies. Sorry I have no Idea where. Why DO you need to take this test?
  14. Am I understanding this right? You are in a TECH FORUM asking on advice where you can take a test to prove that you are too dumb to work? Sorry if I am reading this wrong, but thats how it sounds.
  15. Imports system Dim Req As WebRequest = WebRequest.Create("http://www.yoursite.com/thefile.txt") Dim Resp As WebResponse Try Resp = Req.GetResponse Catch exc As Exception MsgBox(exc.Message) Exit Sub End Try Dim netStream As StreamReader netStream = New StreamReader(Resp.GetResponseStream) TextBox1.Text = netStream.ReadToEnd
  16. Well, I have seen your scripts, so I know you are far from clueless. But read the original post in this thread and click the link to try Maxthon (IE) against some W3C Compliant CSS
  17. find desk.cp_ on install disk and use "Expand" command to expand it into system32 folder.
  18. Welcome Dr. You came to the right forum.
  19. The icon in iexplore.exe doesn't look like the print preview icon. If you notice the magnifier tips to the left, while PP on toolbar tips to the right. I believe the one you are looking for is in system32/shell32.dll Icon group 134
  20. short answer to question 1 is use carriage return + linefeed (vbcrlf) Msgbox "Line one" & vbcrlf & "Another line" & vbcrlf & "One more",,"Title" nice timer GSM
  21. Not like everyone just has one of these lying around.
  22. @mattYou are sooo right. WTF cares? And you are correct that browser is only as safe as the person using it. Q.) If your favorite browser was erased from every hard drive in the world while you were sleeping, could you not just pick up where you left off with another one without skipping a beat? It's just a tool to view web pages, not something to get all passionate about like a game or programming language.
  23. No wonder he knows so much. He has been around since the Abacus was a hot computer. Happy Bday Martin!
×
×
  • Create New...