|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
Using Color.FromArgb values with Convert.ToInt32color values from Flash that look like this: 0x-f9fff6 And, on the script side, it uses a conversion algorithm to convert them into Color.FromArgb values: Color.FromArgb(&H78 + Convert.ToInt32(aPixels(k))) K is the loop index. I added &H78 because I read somewhere that it should be in front of the hex value in order for the Color.FromArgb to read it properly. But then again Convert.ToInt32() might be doing the same thing. FYI, I also tried running it without &H78 and it didn't work. Whatever is happening in that convert statement is screwing up the program. This should work under normal circumstances. But it doesn't work and this brings me here. Please help. > Being in-front means being in the most significant bits of the 32 bit > K is the loop index. I added &H78 because I read somewhere that it > should be in front of the hex value in order for the Color.FromArgb to > read it properly. But then again Convert.ToInt32() might be doing the > same thing. FYI, I also tried running it without &H78 and it didn't > work. Whatever is happening in that convert statement is screwing up > the program. > > This should work under normal circumstances. But it doesn't work and > this brings me here. Please help. > number. Try this: Color.FromArgb(&H78 << 24 Or Convert.ToInt32(aPixels(k)))
Howto Identify an Exception?
Can a base class implement a method on an interface for me? vb 2005 standard question how mutch memory aspnet_wp.exe must use Class.New and DB mapping Thread synchronization. SECURITY PROBLEMS IN VB.NET Using Visual Studio .NET 2005 to compile to ASP.NET 1.1 VS2005 SP1 beta one more thing |
|||||||||||||||||||||||