Results 1 to 39 of 39

Thread: Flikering

  1. #1

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Exclamation Flikering

    Am using api to make the vbframe control transparent.

    But it flickers when i hover the mouse it.

    How ca i stop this.

    Any ideas?

  2. #2
    Only Slightly Obsessive jemidiah's Avatar
    Join Date
    Apr 2002
    Posts
    2,431

    Re: Flikering

    You might be able to use the LockWindowUpdate API call along with some well-timed manual redraws to work around it.
    The time you enjoy wasting is not wasted time.
    Bertrand Russell

    <- Remember to rate posts you find helpful.

  3. #3
    PowerPoster jcis's Avatar
    Join Date
    Jan 2003
    Location
    Argentina
    Posts
    4,430

    Re: Flikering

    Could you post your code? I have code that uses API to redraw anything that's under the frame into the frame DC, as background, this simulates transparency. But i would like to see your code, there is a way to draw to a backbuffer when subclassing, doing this you can avoid flickering.

  4. #4

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    vb Code:
    1. Option Explicit
    2.  
    3. Public Declare Function GetDC Lib "user32" (ByVal hwnd As Long) _
    4.       As Long
    5.  
    6. Public Declare Function DeleteObject Lib "gdi32" (ByVal hObject _
    7.       As Long) As Long
    8.  
    9. Public Declare Function CreateRectRgn Lib "gdi32" (ByVal X1 _
    10.       As Long, ByVal Y1 As Long, ByVal X2 As Long, ByVal Y2 _
    11.       As Long) As Long
    12.  
    13. Public Declare Function CombineRgn Lib "gdi32" (ByVal hDestRgn _
    14.       As Long, ByVal hSrcRgn1 As Long, ByVal hSrcRgn2 As Long, _
    15.       ByVal nCombineMode As Long) As Long
    16.  
    17. Public Declare Function GetPixel Lib "gdi32" (ByVal hDC As Long, _
    18.       ByVal x As Long, ByVal y As Long) As Long
    19.  
    20. Public Declare Function SetWindowRgn Lib "user32" (ByVal hwnd _
    21.       As Long, ByVal hRgn As Long, ByVal bRedraw As Long) As Long
    22.  
    23. Public CtrlDc As Long
    24.  
    25. Public Function GetTransparentFrame(Ctrl As Frame) As Long
    26.     Dim lHeight As Long
    27.     Dim lWidth As Long
    28.     Dim lTemp As Long
    29.     Dim lSkin As Long
    30.     Dim lStart As Long
    31.     Dim lLine As Long
    32.     Dim lColumn As Long
    33.     Dim lBackColor As Long
    34.      
    35.     lSkin = CreateRectRgn(0, 0, 0, 0)
    36.  
    37.     With Ctrl
    38.     'Form.ScaleMode = vbTwips
    39.     lHeight = .Height / Screen.TwipsPerPixelY
    40.     lWidth = .Width / Screen.TwipsPerPixelX
    41.    
    42.     'Form.ScaleMode = vbPixels
    43.     'lHeight = .Height
    44.     'lWidth = .Width
    45.    
    46.     CtrlDc = GetDC(.hwnd)
    47.     lBackColor = Ctrl.BackColor
    48.  
    49.     For lLine = 0 To lHeight - 1
    50.         lColumn = 0
    51.         Do While lColumn < lWidth
    52.             Do While lColumn < lWidth And GetPixel(CtrlDc, lColumn, lLine) = lBackColor
    53.                 lColumn = lColumn + 1
    54.             Loop
    55.    
    56.             If lColumn < lWidth Then
    57.                 lStart = lColumn
    58.                 Do While lColumn < lWidth And GetPixel(CtrlDc, lColumn, lLine) <> lBackColor
    59.                   lColumn = lColumn + 1
    60.                 Loop
    61.        
    62.                 If lColumn > lWidth Then lColumn = lWidth
    63.                 lTemp = CreateRectRgn(lStart, lLine, lColumn, lLine + 1)
    64.                 Call CombineRgn(lSkin, lSkin, lTemp, 2)
    65.                 Call DeleteObject(lTemp)
    66.             End If
    67.         Loop
    68.     Next lLine
    69. End With
    70.  
    71. GetTransparentFrame = lSkin
    72. End Function
    73.  
    74. Public Sub MakeFrameTransparent(Ctrl As Frame)
    75.     Dim lSkin As Long
    76.     Ctrl.Visible = True
    77.     'Set the background colour.
    78.  
    79.     lSkin = GetTransparentFrame(Ctrl)
    80.     Call SetWindowRgn(Ctrl.hwnd, lSkin, True)
    81. End Sub
    82.  
    83.  
    84.  
    85. Public Sub Main()
    86. XPStyle
    87.     Form1.Frame1.BackColor = &HFF&
    88.     Form1.Show
    89.     Form1.Refresh
    90.     MakeFrameTransparent Form1.Frame1
    91. End Sub

  5. #5

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    I have just posted the code that makes a frame transparent. This solution is not mine

  6. #6
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Re: Flikering

    Does it flicker if you disable the XPstyle?

    I ran into the same problem with the VB Frame control in a project that was using XPstyle, so I just ended up creating my own owner drawn frames, I posted one of them here.

  7. #7
    PowerPoster jcis's Avatar
    Join Date
    Jan 2003
    Location
    Argentina
    Posts
    4,430

    Re: Flikering

    I used that code but the Frame doesn't flicker when i hover the mouse, it does take a while until its transparent but no flickering after that.

    EDIT: Yes, it must be the combination with XPStyle thats causing the flickering.

  8. #8
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Re: Flikering

    Ya its' slow, tried it with 4 frames and it takes what seems like forever, and the form has to be in view in the desktop area.

  9. #9

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    is there any way to make the code faster
    Last edited by coolcurrent4u; May 17th, 2009 at 03:51 AM. Reason: typo

  10. #10
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Re: Flikering

    ode ?

  11. #11
    Hyperactive Member deathfxu's Avatar
    Join Date
    Mar 2009
    Location
    USA
    Posts
    279

    Re: Flikering

    I'm sure OP means "code". Sadly I can't contribute, just noting the clarification.

  12. #12
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Re: Flikering

    code, oh ok! should of got that!

    Heres one I found on PSC that is much faster.

    I tried that one before but it had a side effect, I think the caption turned magenta color on me or something under a certain condition, plus like the code posted above the form has to be shown (in the desktop area) before the transparency effect can be added and take effect.

  13. #13

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    I have tried that solution before.i think the algorithm that makes it work is what needs to be reimplemented
    Last edited by coolcurrent4u; May 17th, 2009 at 04:34 AM. Reason: typo

  14. #14

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    it dosent work with the frame placed on a tabstrip control that has xp style. any help

  15. #15
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: Flikering

    For issues like that, put the control (in this case the frame) inside a Picturebox, and put that in the container (the tabstrip).

  16. #16

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Exclamation Re: Flikering

    how can i make the frame transparent then. I was only succesfu to make the frame control transparent. if i put the picturebox on tabstrip it does no become transparent

  17. #17
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,974

    Re: Flikering

    Well in that case you are probably stuck I'm afraid, I doubt there is anything you can do about it.

  18. #18

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    does that means that there is no solution. icant take that for an answer. maybe i'll do research onmy own.

    but any help will be appreciated

  19. #19

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    guys any help still?

  20. #20
    PowerPoster ThEiMp's Avatar
    Join Date
    Dec 2007
    Location
    Take The PCI Bus Across To The CPU!!
    Posts
    3,948

    Re: Flikering

    On the Microsoft Office Packages, it includes a Form 2.0 Frame control, which you can package with your compiled project when you compile it. This frame control is able to use AutoRedraw and also I guess that you can make it transparent, by using Alpha channels, in the Frame control itself.

    Also note: That this Frame control is named, frm20.dll, try searching for it on your Office enabled computer system. This version of the control appears in anything Office 95 or better.
    I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...

    |Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |

    Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...

  21. #21
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Re: Flikering

    Quote Originally Posted by ThEiMp View Post
    On the Microsoft Office Packages, it includes a Form 2.0 Frame control, which you can package with your compiled project when you compile it.

    Actually you are not allowed to redistribute Microsoft Forms 2.0 Frame, so you can not package it with your compiled project! Your users must have the Fm20.dll on their system. Read Here!
    Last edited by Edgemeal; Jun 1st, 2009 at 02:44 AM.

  22. #22

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Exclamation Re: Flikering

    but why would microsoft want to put their developers or customers into so much trouble making the frame control transparent


    what if i write microsoft?


    this fearture is found in windos system property dialoge


    how do i subclass this window and catch all the messages sent from and to it using spy++


    maybe i might find a solution there

  23. #23

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Question Re: Flikering

    Quote Originally Posted by ThEiMp View Post
    On the Microsoft Office Packages, it includes a Form 2.0 Frame control, which you can package with your compiled project when you compile it. This frame control is able to use AutoRedraw and also I guess that you can make it transparent, by using Alpha channels, in the Frame control itself.

    Also note: That this Frame control is named, frm20.dll, try searching for it on your Office enabled computer system. This version of the control appears in anything Office 95 or better.
    can you pls help me with some code for this

  24. #24
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: Flikering

    Quote Originally Posted by coolcurrent4u View Post
    can you pls help me with some code for this
    Read Post #21 just up the page...you can use the Form 2.0 frame, but you can't redistribute it, so what would be the point?
    Quote Originally Posted by coolcurrent4u View Post
    what if i write microsoft?
    Be my guest...all that will do, however, is to provide you with written response about why you can't redistribute them. It won't give you permission to do so.

    If all you are looking for is a transparent container, what about using picturebox control?

  25. #25
    PowerPoster ThEiMp's Avatar
    Join Date
    Dec 2007
    Location
    Take The PCI Bus Across To The CPU!!
    Posts
    3,948

    Re: Flikering

    Quote Originally Posted by coolcurrent4u View Post
    can you pls help me with some code for this
    Its not source code, that you need. Its key strokes and mouse clicking that will deliver what you want to know.
    I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...

    |Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |

    Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...

  26. #26

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    Re: Flikering
    Quote:Originally Posted by coolcurrent4u
    can you pls help me with some code for this

    Its not source code, that you need. Its key strokes and mouse clicking that will deliver what you want to know.
    __________________
    How to change a light bulb?
    Ahh yes, I know that?

    Light_Bulb1 = Light_Bulb1 + Ladder
    am confused, please put me through

  27. #27
    PowerPoster ThEiMp's Avatar
    Join Date
    Dec 2007
    Location
    Take The PCI Bus Across To The CPU!!
    Posts
    3,948

    Re: Flikering

    Do a search from with in the VB6's Control Dialog Box. Then select it, and click on the tick on the Control Dialog Box. Finally you can then drag the control to the Form, just like any other control that you have loaded into the Project.
    I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...

    |Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |

    Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...

  28. #28
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Re: Flikering

    I don't see how that helps, I just tried the Form 2.0 Frame for the first time, here's what I get,

    1) It is not a container, it can't hold controls.
    2) It doesn't support XP styles.
    3) I don't see any Transparent property for it.
    4) MS recommends you do not use this control for VC/VB.

    Besides not doing what the OP wants his/her users would need to have Office installed or an alternative (see link in post 21).

  29. #29
    PowerPoster ThEiMp's Avatar
    Join Date
    Dec 2007
    Location
    Take The PCI Bus Across To The CPU!!
    Posts
    3,948

    Re: Flikering

    You have to program in the container into it, as code.
    I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...

    |Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |

    Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...

  30. #30
    VB For Fun Edgemeal's Avatar
    Join Date
    Sep 2006
    Location
    WindowFromPoint
    Posts
    4,255

    Re: Flikering

    Quote Originally Posted by ThEiMp View Post
    You have to program in the container into it, as code.
    Please share your great knowledge with the rest of us and attach a working project!

    Waiting.....

  31. #31
    PowerPoster ThEiMp's Avatar
    Join Date
    Dec 2007
    Location
    Take The PCI Bus Across To The CPU!!
    Posts
    3,948

    Re: Flikering

    I can't remember the code for the Frame container, because I had worked on one many years ago. When I was a young lad programmer at HP. It was one of my working projects, but not work as such. Also its quite fiddley, and quite a head banger as well.

    Well that is what I remember, anyway.

    I think that you should use a HTML scrolling document, instead anyway that is somewhat better, and still the same in fact.
    I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...

    |Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |

    Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...

  32. #32

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    pls post some code to help others

  33. #33
    PowerPoster ThEiMp's Avatar
    Join Date
    Dec 2007
    Location
    Take The PCI Bus Across To The CPU!!
    Posts
    3,948

    Re: Flikering

    I don't know about the code for the HTML controls. But I know that Microsoft uses this to scroll ActiveX controls on their Windows Update website. It has been about ten years, since I had left HP from programming, so I cannot remember any code.

    So then here is the ocx file to do that. But the methods, I don't remember.

    Enjoy!!
    Last edited by ThEiMp; Jun 27th, 2009 at 09:41 PM.
    I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...

    |Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |

    Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...

  34. #34

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    this does not help? i don;t understand

  35. #35
    PowerPoster ThEiMp's Avatar
    Join Date
    Dec 2007
    Location
    Take The PCI Bus Across To The CPU!!
    Posts
    3,948

    Re: Flikering

    Then try reading a manual, whitepaper or something like that on the subject. I suggest try using the Internet as well.
    I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...

    |Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |

    Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...

  36. #36

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    ok if this is all i ca get thanks anyways i have stopped looking for a way to even make the frame control transparent.
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  37. #37
    PowerPoster ThEiMp's Avatar
    Join Date
    Dec 2007
    Location
    Take The PCI Bus Across To The CPU!!
    Posts
    3,948

    Re: Flikering

    Or actually you could use the shape tools or even the image control to draw up one that you can use as transparent. Also the Microsoft Forms 2.0 one does allow this, but you aren't allowed to disturibute it anyway.
    I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...

    |Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |

    Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...

  38. #38

    Thread Starter
    Fanatic Member coolcurrent4u's Avatar
    Join Date
    Apr 2008
    Location
    *****
    Posts
    993

    Re: Flikering

    i just wanted to make a dialoge box that look like the xp themed version. i have searched every where. the thing is not just doing it , but making sure it works with orther os or the end user. so i decided to go for a more simple interface. thanks anyways
    Programming is all about good logic. Spend more time here


    (Generate pronounceable password) (Generate random number c#) (Filter array with another array)

  39. #39
    PowerPoster ThEiMp's Avatar
    Join Date
    Dec 2007
    Location
    Take The PCI Bus Across To The CPU!!
    Posts
    3,948

    Re: Flikering

    Then use an XP theme with the project. You can use Windows to do this, but I am not quite sure how to do it, and only for one project.
    I have a huge free products range, of computer software in which you can download using any kind of 64-Bit Web Browser. Also there is coming a Social Networking section that I am making on my Website...

    |Ambra Productions Inc. | The Black Sun Society | The Black Shield | Ambra College | Church of the Black Sun | Ambra Productions Inc's Homepage | Boomtick Venues: Ambar Nightclub, Jack Rabbit Slim's, Villa Nightclub and Lucy's Love Shack | Pasta Ambra | Fish Feast Company | Wallet Wizard | Ambrose Liquor | Ambar Tavern | Ambra University | Ambra Cheese |

    Do you wish to do unpaid work for me??? If so, the PM me on this Forum, and then we can get to work, programming for the future of computers go by the name of ThEiMp. This is my ghost writers name. Also my nickname, means that I am: The Imperial of the Technology Industry, so then to make it really short, I just then wrote: The Imp, which is where I get the nickname from...

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width