Click here to Skip to main content
16,016,814 members

Comments by DoomMaker79 (Top 12 by date)

DoomMaker79 14-Jan-16 6:49am View    
of course, if I install the ibm data server driver package on client computer, everything's fine. but I have to find a solution without installing anything on client comp.
DoomMaker79 14-Jan-16 6:19am View    
another error message:

System.DllNotFoundException: Unable to load DLL 'db2app.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

I got this, but I have installed the db2 drivers on the client machine where I got this error...
DoomMaker79 29-Sep-15 1:57am View    
you're right, there's my solution detailed
DoomMaker79 29-Sep-15 1:43am View    
Thanks a lot, this is the solution. I add this method to my StartScreen.cs and call it right before the InitializeComponent()

public void EnableDoubleBuffering()
{
this.SetStyle(ControlStyles.DoubleBuffer |
ControlStyles.UserPaint |
ControlStyles.AllPaintingInWmPaint,
true);
this.UpdateStyles();
}
DoomMaker79 21-Sep-15 4:14am View    
i've already tried it, not working... :( maybe I tried it in wrong way. can you please complete the code above with your suggestion?