Search results for query: *

  1. A

    Trying to reference a dll - Error 80040154

    Hi, I have only fairly recently started using .net and now have a Windows CE application to develop. So, sorry if I am asking dumb questions. I am using VB on VS2005 to develop the Windows CE application and I want to re-use some VB6 dlls that I have been using for years. The dll is called...
  2. A

    How do I eliminate graph flicker?

    So, I have been doing some digging and it looks like I need to do some double buffering:confused: I have found an MSDN article that shows the form paint event being overidden. How do I override a panel paint event. Any help appreciated.
  3. A

    How do I eliminate graph flicker?

    Hi, I am developing my first Windows CE application using VB.Net. I am plotting a graph in a panel using the following code Private Sub panGraph_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles panGraph.Paint Dim upperBound As Integer = yValues.Count - 1...
  4. A

    Load picturebox image from resources

    Thanks for the reply. I will take a look at that. By the way .... There are actually 10 kinds of people in the world: Those who understand binary and those who don't:D
  5. A

    Load picturebox image from resources

    Hi, Developing my first Windows CE application using VB.Net so sorry if I ask some dumb questions. When not using the CF, I can load an image into a picturebox from resources at runtime by using : picMyPicturebox.Image = My.Resources.MyPicture The My namespace does not seem to exist so...
Back
Top