473,625 Members | 2,658 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

GDI+ problem

I am getting a generic GDI+ error on following code. Basically it is trying
to capture screen image and save in a file.
Is there a way to find more details on this error? Thanks for the help.

---------------------------
ERROR MSG
---------------------------
System.Runtime. InteropServices .ExternalExcept ion: A generic error occurred
in GDI+.
at System.Drawing. Image.Save(Stri ng filename, ImageCodecInfo encoder,
EncoderParamete rs encoderParams)
at System.Drawing. Image.Save(Stri ng filename, ImageFormat format)
at ScreenCapture.F orm1.TakeSnapNo w() in c:\visual studio
projects\screen capture\form1.c s:line 102

Sorry for the formating below.

//First, you need to import the BitBlt, GetDC and ReleaseDC functions.

//imports the GDI BitBlt function that enables the background of the window

//to be captured

[DllImport("gdi3 2.dll")]

private static extern bool BitBlt(

IntPtr hdcDest, // handle to destination DC

int nXDest, // x-coord of destination upper-left corner

int nYDest, // y-coord of destination upper-left corner

int nWidth, // width of destination rectangle

int nHeight, // height of destination rectangle

IntPtr hdcSrc, // handle to source DC

int nXSrc, // x-coordinate of source upper-left corner

int nYSrc, // y-coordinate of source upper-left corner

System.Int32 dwRop // raster operation code

);
[DllImport("User 32.dll")]

public extern static System.IntPtr GetDC(System.In tPtr hWnd);

[DllImport("User 32.dll")]

public extern static int ReleaseDC(Syste m.IntPtr hWnd, System.IntPtr hDC);
//modified to include hWnd
//Now, to capture the screen in it's entirety you can do the following.

public void TakeSnapNow()

{

System.IntPtr desktopDC=GetDC (System.IntPtr. Zero);

Bitmap bm=new Bitmap(SystemIn formation.Virtu alScreen.Width,
SystemInformati on.VirtualScree n.Height);

try

{

Graphics g=Graphics.From Image(bm);

System.IntPtr bmDC=g.GetHdc() ;

BitBlt(bmDC,0,0 ,bm.Width,bm.He ight,desktopDC, 0,0,0x00CC0020 /*SRCCOPY*/);

bm.Save("C:\fil e.bmp",System.D rawing.Imaging. ImageFormat.Bmp );

ReleaseDC(Syste m.IntPtr.Zero, desktopDC);

g.ReleaseHdc(bm DC);

g.Dispose();

}

catch(Exception er)

{

MessageBox.Show (er.ToString()) ;

}

}

Nov 17 '05 #1
5 2692


"Pohihihi" wrote:
I am getting a generic GDI+ error on following code. Basically it is trying
to capture screen image and save in a file.
Is there a way to find more details on this error? Thanks for the help.

---------------------------
ERROR MSG
---------------------------
System.Runtime. InteropServices .ExternalExcept ion: A generic error occurred
in GDI+.
at System.Drawing. Image.Save(Stri ng filename, ImageCodecInfo encoder,
EncoderParamete rs encoderParams)
at System.Drawing. Image.Save(Stri ng filename, ImageFormat format)
at ScreenCapture.F orm1.TakeSnapNo w() in c:\visual studio
projects\screen capture\form1.c s:line 102

Sorry for the formating below.

//First, you need to import the BitBlt, GetDC and ReleaseDC functions.

//imports the GDI BitBlt function that enables the background of the window

//to be captured

[DllImport("gdi3 2.dll")]

private static extern bool BitBlt(

IntPtr hdcDest, // handle to destination DC

int nXDest, // x-coord of destination upper-left corner

int nYDest, // y-coord of destination upper-left corner

int nWidth, // width of destination rectangle

int nHeight, // height of destination rectangle

IntPtr hdcSrc, // handle to source DC

int nXSrc, // x-coordinate of source upper-left corner

int nYSrc, // y-coordinate of source upper-left corner

System.Int32 dwRop // raster operation code

);
[DllImport("User 32.dll")]

public extern static System.IntPtr GetDC(System.In tPtr hWnd);

[DllImport("User 32.dll")]

public extern static int ReleaseDC(Syste m.IntPtr hWnd, System.IntPtr hDC);
//modified to include hWnd
//Now, to capture the screen in it's entirety you can do the following.

public void TakeSnapNow()

{

System.IntPtr desktopDC=GetDC (System.IntPtr. Zero);

Bitmap bm=new Bitmap(SystemIn formation.Virtu alScreen.Width,
SystemInformati on.VirtualScree n.Height);

try

{

Graphics g=Graphics.From Image(bm);

System.IntPtr bmDC=g.GetHdc() ;

BitBlt(bmDC,0,0 ,bm.Width,bm.He ight,desktopDC, 0,0,0x00CC0020 /*SRCCOPY*/);

bm.Save("C:\fil e.bmp",System.D rawing.Imaging. ImageFormat.Bmp );

ReleaseDC(Syste m.IntPtr.Zero, desktopDC);

g.ReleaseHdc(bm DC);

g.Dispose();

}

catch(Exception er)

{

MessageBox.Show (er.ToString()) ;

}

}

Nov 17 '05 #2
Hi Pohihihi,
on the line:

bm.Save("C:\fil e.bmp",System.D rawing.Imaging. ImageFormat.Bmp );

I believe that having a single \ will cause problems because \<char> is
regarded as an escape character.

Try:
bm.Save(@"C:\fi le.bmp",System. Drawing.Imaging .ImageFormat.Bm p);
which the @ means use the literal value of the string ignoring escape
characters

or
bm.Save("C:\\fi le.bmp",System. Drawing.Imaging .ImageFormat.Bm p);
Hope that helps.
Mark

"Pohihihi" wrote:
I am getting a generic GDI+ error on following code. Basically it is trying
to capture screen image and save in a file.
Is there a way to find more details on this error? Thanks for the help.

---------------------------
ERROR MSG
---------------------------
System.Runtime. InteropServices .ExternalExcept ion: A generic error occurred
in GDI+.
at System.Drawing. Image.Save(Stri ng filename, ImageCodecInfo encoder,
EncoderParamete rs encoderParams)
at System.Drawing. Image.Save(Stri ng filename, ImageFormat format)
at ScreenCapture.F orm1.TakeSnapNo w() in c:\visual studio
projects\screen capture\form1.c s:line 102

Sorry for the formating below.

//First, you need to import the BitBlt, GetDC and ReleaseDC functions.

//imports the GDI BitBlt function that enables the background of the window

//to be captured

[DllImport("gdi3 2.dll")]

private static extern bool BitBlt(

IntPtr hdcDest, // handle to destination DC

int nXDest, // x-coord of destination upper-left corner

int nYDest, // y-coord of destination upper-left corner

int nWidth, // width of destination rectangle

int nHeight, // height of destination rectangle

IntPtr hdcSrc, // handle to source DC

int nXSrc, // x-coordinate of source upper-left corner

int nYSrc, // y-coordinate of source upper-left corner

System.Int32 dwRop // raster operation code

);
[DllImport("User 32.dll")]

public extern static System.IntPtr GetDC(System.In tPtr hWnd);

[DllImport("User 32.dll")]

public extern static int ReleaseDC(Syste m.IntPtr hWnd, System.IntPtr hDC);
//modified to include hWnd
//Now, to capture the screen in it's entirety you can do the following.

public void TakeSnapNow()

{

System.IntPtr desktopDC=GetDC (System.IntPtr. Zero);

Bitmap bm=new Bitmap(SystemIn formation.Virtu alScreen.Width,
SystemInformati on.VirtualScree n.Height);

try

{

Graphics g=Graphics.From Image(bm);

System.IntPtr bmDC=g.GetHdc() ;

BitBlt(bmDC,0,0 ,bm.Width,bm.He ight,desktopDC, 0,0,0x00CC0020 /*SRCCOPY*/);

bm.Save("C:\fil e.bmp",System.D rawing.Imaging. ImageFormat.Bmp );

ReleaseDC(Syste m.IntPtr.Zero, desktopDC);

g.ReleaseHdc(bm DC);

g.Dispose();

}

catch(Exception er)

{

MessageBox.Show (er.ToString()) ;

}

}

Nov 17 '05 #3
Thanks Mark that was the real cause. I was looking all around to find the
problem.
I am still interested in learning how to trap errors while using interops.
"Mark R. Dawson" <Ma*********@di scussions.micro soft.com> wrote in message
news:51******** *************** ***********@mic rosoft.com...
Hi Pohihihi,
on the line:

bm.Save("C:\fil e.bmp",System.D rawing.Imaging. ImageFormat.Bmp );

I believe that having a single \ will cause problems because \<char> is
regarded as an escape character.

Try:
bm.Save(@"C:\fi le.bmp",System. Drawing.Imaging .ImageFormat.Bm p);
which the @ means use the literal value of the string ignoring escape
characters

or
bm.Save("C:\\fi le.bmp",System. Drawing.Imaging .ImageFormat.Bm p);
Hope that helps.
Mark

"Pohihihi" wrote:
I am getting a generic GDI+ error on following code. Basically it is
trying
to capture screen image and save in a file.
Is there a way to find more details on this error? Thanks for the help.

---------------------------
ERROR MSG
---------------------------
System.Runtime. InteropServices .ExternalExcept ion: A generic error
occurred
in GDI+.
at System.Drawing. Image.Save(Stri ng filename, ImageCodecInfo encoder,
EncoderParamete rs encoderParams)
at System.Drawing. Image.Save(Stri ng filename, ImageFormat format)
at ScreenCapture.F orm1.TakeSnapNo w() in c:\visual studio
projects\screen capture\form1.c s:line 102

Sorry for the formating below.

//First, you need to import the BitBlt, GetDC and ReleaseDC functions.

//imports the GDI BitBlt function that enables the background of the
window

//to be captured

[DllImport("gdi3 2.dll")]

private static extern bool BitBlt(

IntPtr hdcDest, // handle to destination DC

int nXDest, // x-coord of destination upper-left corner

int nYDest, // y-coord of destination upper-left corner

int nWidth, // width of destination rectangle

int nHeight, // height of destination rectangle

IntPtr hdcSrc, // handle to source DC

int nXSrc, // x-coordinate of source upper-left corner

int nYSrc, // y-coordinate of source upper-left corner

System.Int32 dwRop // raster operation code

);
[DllImport("User 32.dll")]

public extern static System.IntPtr GetDC(System.In tPtr hWnd);

[DllImport("User 32.dll")]

public extern static int ReleaseDC(Syste m.IntPtr hWnd, System.IntPtr
hDC);
//modified to include hWnd
//Now, to capture the screen in it's entirety you can do the following.

public void TakeSnapNow()

{

System.IntPtr desktopDC=GetDC (System.IntPtr. Zero);

Bitmap bm=new Bitmap(SystemIn formation.Virtu alScreen.Width,
SystemInformati on.VirtualScree n.Height);

try

{

Graphics g=Graphics.From Image(bm);

System.IntPtr bmDC=g.GetHdc() ;

BitBlt(bmDC,0,0 ,bm.Width,bm.He ight,desktopDC, 0,0,0x00CC0020 /*SRCCOPY*/);

bm.Save("C:\fil e.bmp",System.D rawing.Imaging. ImageFormat.Bmp );

ReleaseDC(Syste m.IntPtr.Zero, desktopDC);

g.ReleaseHdc(bm DC);

g.Dispose();

}

catch(Exception er)

{

MessageBox.Show (er.ToString()) ;

}

}

Nov 17 '05 #4
For looking what the exact error was through the interop services you can get
the last error from the Win32 calls, although you cannot call the
GetLastError method directly, you must go through a method called
GetLastWin32Err or.

Basically make sure you have imported the namespace
System.Runtime. InteropServices then when you import a DLL you need to set the
SetLastError property to true i.e.

[DllImport("gdi3 2.dll", SetLastError=tr ue)]

Then when you have an exception you can do:

intError = Marshal.GetLast Win32Error();

which returns the error code.

I am not an expert in this, but this might be enough to get you pointed in
the right direction.

Hope that helps
Mark.

"Pohihihi" wrote:
Thanks Mark that was the real cause. I was looking all around to find the
problem.
I am still interested in learning how to trap errors while using interops.
"Mark R. Dawson" <Ma*********@di scussions.micro soft.com> wrote in message
news:51******** *************** ***********@mic rosoft.com...
Hi Pohihihi,
on the line:

bm.Save("C:\fil e.bmp",System.D rawing.Imaging. ImageFormat.Bmp );

I believe that having a single \ will cause problems because \<char> is
regarded as an escape character.

Try:
bm.Save(@"C:\fi le.bmp",System. Drawing.Imaging .ImageFormat.Bm p);
which the @ means use the literal value of the string ignoring escape
characters

or
bm.Save("C:\\fi le.bmp",System. Drawing.Imaging .ImageFormat.Bm p);
Hope that helps.
Mark

"Pohihihi" wrote:
I am getting a generic GDI+ error on following code. Basically it is
trying
to capture screen image and save in a file.
Is there a way to find more details on this error? Thanks for the help.

---------------------------
ERROR MSG
---------------------------
System.Runtime. InteropServices .ExternalExcept ion: A generic error
occurred
in GDI+.
at System.Drawing. Image.Save(Stri ng filename, ImageCodecInfo encoder,
EncoderParamete rs encoderParams)
at System.Drawing. Image.Save(Stri ng filename, ImageFormat format)
at ScreenCapture.F orm1.TakeSnapNo w() in c:\visual studio
projects\screen capture\form1.c s:line 102

Sorry for the formating below.

//First, you need to import the BitBlt, GetDC and ReleaseDC functions.

//imports the GDI BitBlt function that enables the background of the
window

//to be captured

[DllImport("gdi3 2.dll")]

private static extern bool BitBlt(

IntPtr hdcDest, // handle to destination DC

int nXDest, // x-coord of destination upper-left corner

int nYDest, // y-coord of destination upper-left corner

int nWidth, // width of destination rectangle

int nHeight, // height of destination rectangle

IntPtr hdcSrc, // handle to source DC

int nXSrc, // x-coordinate of source upper-left corner

int nYSrc, // y-coordinate of source upper-left corner

System.Int32 dwRop // raster operation code

);
[DllImport("User 32.dll")]

public extern static System.IntPtr GetDC(System.In tPtr hWnd);

[DllImport("User 32.dll")]

public extern static int ReleaseDC(Syste m.IntPtr hWnd, System.IntPtr
hDC);
//modified to include hWnd
//Now, to capture the screen in it's entirety you can do the following.

public void TakeSnapNow()

{

System.IntPtr desktopDC=GetDC (System.IntPtr. Zero);

Bitmap bm=new Bitmap(SystemIn formation.Virtu alScreen.Width,
SystemInformati on.VirtualScree n.Height);

try

{

Graphics g=Graphics.From Image(bm);

System.IntPtr bmDC=g.GetHdc() ;

BitBlt(bmDC,0,0 ,bm.Width,bm.He ight,desktopDC, 0,0,0x00CC0020 /*SRCCOPY*/);

bm.Save("C:\fil e.bmp",System.D rawing.Imaging. ImageFormat.Bmp );

ReleaseDC(Syste m.IntPtr.Zero, desktopDC);

g.ReleaseHdc(bm DC);

g.Dispose();

}

catch(Exception er)

{

MessageBox.Show (er.ToString()) ;

}

}


Nov 17 '05 #5
Thanks Mark, it is a nice start for me, I will dig more in interops on MSDN.
"Mark R. Dawson" <Ma*********@di scussions.micro soft.com> wrote in message
news:EF******** *************** ***********@mic rosoft.com...
For looking what the exact error was through the interop services you can
get
the last error from the Win32 calls, although you cannot call the
GetLastError method directly, you must go through a method called
GetLastWin32Err or.

Basically make sure you have imported the namespace
System.Runtime. InteropServices then when you import a DLL you need to set
the
SetLastError property to true i.e.

[DllImport("gdi3 2.dll", SetLastError=tr ue)]

Then when you have an exception you can do:

intError = Marshal.GetLast Win32Error();

which returns the error code.

I am not an expert in this, but this might be enough to get you pointed in
the right direction.

Hope that helps
Mark.

"Pohihihi" wrote:
Thanks Mark that was the real cause. I was looking all around to find the
problem.
I am still interested in learning how to trap errors while using
interops.
"Mark R. Dawson" <Ma*********@di scussions.micro soft.com> wrote in message
news:51******** *************** ***********@mic rosoft.com...
> Hi Pohihihi,
> on the line:
>
> bm.Save("C:\fil e.bmp",System.D rawing.Imaging. ImageFormat.Bmp );
>
> I believe that having a single \ will cause problems because \<char> is
> regarded as an escape character.
>
> Try:
> bm.Save(@"C:\fi le.bmp",System. Drawing.Imaging .ImageFormat.Bm p);
> which the @ means use the literal value of the string ignoring escape
> characters
>
> or
> bm.Save("C:\\fi le.bmp",System. Drawing.Imaging .ImageFormat.Bm p);
>
>
> Hope that helps.
> Mark
>
> "Pohihihi" wrote:
>
>> I am getting a generic GDI+ error on following code. Basically it is
>> trying
>> to capture screen image and save in a file.
>> Is there a way to find more details on this error? Thanks for the
>> help.
>>
>> ---------------------------
>> ERROR MSG
>> ---------------------------
>> System.Runtime. InteropServices .ExternalExcept ion: A generic error
>> occurred
>> in GDI+.
>> at System.Drawing. Image.Save(Stri ng filename, ImageCodecInfo
>> encoder,
>> EncoderParamete rs encoderParams)
>> at System.Drawing. Image.Save(Stri ng filename, ImageFormat format)
>> at ScreenCapture.F orm1.TakeSnapNo w() in c:\visual studio
>> projects\screen capture\form1.c s:line 102
>>
>>
>>
>> Sorry for the formating below.
>>
>> //First, you need to import the BitBlt, GetDC and ReleaseDC functions.
>>
>> //imports the GDI BitBlt function that enables the background of the
>> window
>>
>> //to be captured
>>
>> [DllImport("gdi3 2.dll")]
>>
>> private static extern bool BitBlt(
>>
>> IntPtr hdcDest, // handle to destination DC
>>
>> int nXDest, // x-coord of destination upper-left corner
>>
>> int nYDest, // y-coord of destination upper-left corner
>>
>> int nWidth, // width of destination rectangle
>>
>> int nHeight, // height of destination rectangle
>>
>> IntPtr hdcSrc, // handle to source DC
>>
>> int nXSrc, // x-coordinate of source upper-left corner
>>
>> int nYSrc, // y-coordinate of source upper-left corner
>>
>> System.Int32 dwRop // raster operation code
>>
>> );
>>
>>
>> [DllImport("User 32.dll")]
>>
>> public extern static System.IntPtr GetDC(System.In tPtr hWnd);
>>
>> [DllImport("User 32.dll")]
>>
>> public extern static int ReleaseDC(Syste m.IntPtr hWnd, System.IntPtr
>> hDC);
>> //modified to include hWnd
>>
>>
>> //Now, to capture the screen in it's entirety you can do the
>> following.
>>
>> public void TakeSnapNow()
>>
>> {
>>
>> System.IntPtr desktopDC=GetDC (System.IntPtr. Zero);
>>
>> Bitmap bm=new Bitmap(SystemIn formation.Virtu alScreen.Width,
>> SystemInformati on.VirtualScree n.Height);
>>
>> try
>>
>> {
>>
>> Graphics g=Graphics.From Image(bm);
>>
>> System.IntPtr bmDC=g.GetHdc() ;
>>
>> BitBlt(bmDC,0,0 ,bm.Width,bm.He ight,desktopDC, 0,0,0x00CC0020
>> /*SRCCOPY*/);
>>
>> bm.Save("C:\fil e.bmp",System.D rawing.Imaging. ImageFormat.Bmp );
>>
>> ReleaseDC(Syste m.IntPtr.Zero, desktopDC);
>>
>> g.ReleaseHdc(bm DC);
>>
>> g.Dispose();
>>
>> }
>>
>> catch(Exception er)
>>
>> {
>>
>> MessageBox.Show (er.ToString()) ;
>>
>> }
>>
>> }
>>
>>
>>
>>


Nov 17 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
48208
by: Michael Kennedy [UB] | last post by:
Hi Everyone, I have this multithreaded C# windows forms application which does a lot of image processing. Occasionally, I get the following error: A generic error occurred in GDI+. System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI+. at System.Drawing.Image.Save(String filename, ImageCodecInfo encoder, EncoderParameters encoderParams)
10
2533
by: **ham | last post by:
I know that's an old dirty issue; GDI+ almost -the slowest part of the framework - has bothered many developers using it in animations. Even in managed C++ the performance is awful. Now, any dude out there does know any thing about this issue in VS 2005 + ..NET 2.0 ? Has Microsoft solved this performance problem, or we will have to again stick to that DX for simple animations in our applications? ( and since Microsoft doesn't support DDraw...
15
3859
by: Wiktor Zychla | last post by:
today we've found a critical issue regarding the ListView from Windows.Forms. it was confirmed on several machines with Win2K and XP. here's the problem: create a ListView with about 50000 rows. now use task manager to see the GDI usage of the process. everything seems normal. now catch the ListView's scroller and start to move it downwards. you have to hold the constant speed so that the ListView is constantly repainted. look at the...
1
1211
by: pei_world | last post by:
Hi there, I have a problem about how to keep my draw graphics stay on my control unless I delete them. that means how to resist my graphics. also how to partially remove some graphics from my control and keep the rest. pei
7
3221
by: news | last post by:
This may be a stupid question, but if I don't ask I'll never know ;) Ok, here it goes.... I am writing an application that renders an image in one picturebox and a graph in another. The image is drawn by loading a jpg into a bitmap and then setting picturebox.image = mybitmap. Ive created my own class, inheriting from the picturebox and overriding the OnPaint event so I can do e.Graphics.DrawImage (this.image....). This renders...
13
4649
by: lgbjr | last post by:
Hello All, I have some pictureboxes on a VB.NET form that are linked to an AccessDB. If the user wishes to open or edit an image, I need to save the image in the picturebox to a temp file, then open that file in whatever viewer/editor is the default for the users system. I tried to do picturebox1.image.save(filename), which results in "A Generic error occured in GDI+". However, if I use an unbound picturebox, do a
15
5328
by: David Lozzi | last post by:
Howdy, I have a function that uploads an image and that works great. I love ..Nets built in upload, so much easier than 3rd party uploaders! Now I am making a public function that will take the path of the uploaded image, and resize it with the provided dimensions. My function is below. The current function is returning an error when run from the upload function: A generic error occurred in GDI+. Not sure what exactly that means. From what...
7
5972
by: Marcin Rzeznicki | last post by:
Hello, Do you think it is legitimate practice to mix GDI+ and GDI calls (via Get/ReleaseHDC()) in paint event of a control? I've heard there is possibility of performance loss while "locking" Graphics object which is done as a side-effect to GetHDC() call - could you confirm? Another question that comes to my mind when planning mentioned operation is: if the control painted on uses double-buffering style, will GDI calls make use of "back...
5
3635
by: Jonathan Boivin | last post by:
Hi, I've got some problems with loading bills using a bill usercontrol I built. If I load all current bills in my test environment (156) everything is fine once, but repeating the operation (which clear all the bills and reshow all of them) four to five times and I get a Error creating window handle. I investigated on all of this, a lot, and still I'm not able to find where this problem come from. I know that the GDI objects column in...
7
2530
by: =?Utf-8?B?Um9oaXQ=?= | last post by:
I have a timer object that calls UpdateWindow(). The WM_TIMER message is processed in the main Win32 message loop for the window. However, when I run the app, the image doesn't get updated (there is some animation that's supposed to happen). However, if I constantly resize the window, the animation happens as expected (but I want the animation to happen without me having to mess with the window size). I verified that the timer is firing...
0
8182
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8688
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8352
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7178
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6115
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5570
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4085
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4188
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
1496
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.