Search results for query: *

  1. S

    Flickering

    first add an image object to your form and make sure to scale it to be your drawing surface. I.E. form resize - resize your image then in the routine where you create your graphics do this. Dim bit As Bitmap = New Bitmap(MyBase.Width, MyBase.Height) Dim myGraphics As Graphics =...
  2. S

    Comms between Apps

    Thanks for the input and ideas, I have moved on from this problem, I solved it by using the system registry and looking for a logged username and Program from which they logged in from in the sys registry. Thanks, Sautin
  3. S

    Comms between Apps

    Let me explain a little more. What I mean by system is our system, not windows. What I do not want to do is require the user to login everytime they start one of our programs. As it stands each user account is created in teh database and each user has different privileges for each program (i.e...
  4. S

    Comms between Apps

    I have an app that assumes the role of say a master interface. From that interface you can launch programs included in the particular suite of software. My problem is that those progrms launched by the master interface need to communicate with the Master interface to find out if the user is...
Back
Top