Jump to content
Xtreme .Net Talk

Acid Cool

Members
  • Posts

    6
  • Joined

  • Last visited

About Acid Cool

  • Birthday 09/24/1986

Personal Information

  • Visual Studio .NET Version
    2003 Professional
  • .NET Preferred Language
    Visual Basic

Acid Cool's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. don't think so...i don't see you defining the name...
  2. OK, I solwed this problem all ready, but thanks the getComplement function must be defined as I wrot, because the exercise told this.... THNX again
  3. I have a paroblem with this function in RGBColor class: Public Class RGBColor Public Function getComplement(ByVal rgb As Integer()) As Integer() 'some code End Function End Class ----------------------------------------------------------------- ByVal rgb As Integer() --> I guess this is an array... How do I insert values in it when I call getComplement function. I must provide this function with 3 integers (r, g, b)? How do I do this? Please help me....
  4. It doesn't shift the values...The values remain always the same except the first one changes but that is because of the code I have aftre this one... After this code I change only the value of 0 (the first field in this array)... This code should shift every value right for 1 field
  5. I have a problem whit this part of the code: For blur = 1 To maxBlur boat.xP(maxBlur - blur) = boat.xP(maxBlur - blur + 1) boat.yP(maxBlur - blur) = boat.yP(maxBlur - blur + 1) Next I know I can write it like this too: For blur = maxBlur To 1 Step -1 boat.xP(blur) = boat.xP(blur - 1) boat.yP(blur) = boat.yP(blur - 1) Next But it doesn'z work one way or another.... I want this code to copy array of for example 5 (dim boat.xp(5)) one step backwareds Example: (0, 1, 2, 3, 4, 5) --> (0, 0, 1, 2, 3, 4) the first value (0) will be changed later on in the code... How do i doo this???? What is worng with my code????
  6. I would like to create a program that would save what ever I type what this program is running...it doesn't matter if this programm is focused or not...it would probably be located in system tray when finishe... I don't know how to get input form a keyboard when this program si not selected (examlpe When I'm working with word...)... I heard that I could use Windows API...but I don't kown which .lib to use for it... Can u help me with this? I'm quite new at Windows API, so i would like if you could explain this as simple as possible, or give me as many code related to this as you can...thnx
×
×
  • Create New...