473,786 Members | 2,405 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Process Hanging

Hello ,

I am developping a program for Win98 plateform, and I am stucking with a
problem, hope you can help me.

I have a program running 2 process :
- One process running the Xcopy.exe
- When the first process is finished, it runs another Exe process (HHC.exe)

The code is below:

// Process 1: Xcopy.exe to copy directory 1 to 2

compiler.StartI nfo.FileName = "Xcopy.exe" ;
compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
compiler.StartI nfo.UseShellExe cute = false;
compiler.StartI nfo.CreateNoWin dow = true;
compiler.Start( );

while (!compiler.HasE xited)
{
Application.DoE vents();
{

// Process 2: Recompilation the new CHM with Hhc.exe external command
compiler.StartI nfo.FileName = Dir 2 + "\\" + "hhc.exe";
compiler.StartI nfo.Arguments = Dir2 + "\\" + "Help.hhp";
compiler.StartI nfo.UseShellExe cute = false;
compiler.StartI nfo.CreateNoWin dow = true;
compiler.Start( );

while (!compiler.HasE xited)
{
Application.DoE vents();
}
My problem is that, when I run this program in Windows 98, the Xcopy process
runs in the black window and it hangs, the process 2 cannot be run until I
manually close it command window
The same program works fine in WinXP or 2000

Do you have a clue of what' s going on ?, how can I avoid this Xcopy black
screen to appear in win98 ?

thanks for your help

S
Nov 16 '05 #1
7 3351
Hi Samantha,,

Did you try yor xcopy command with all the needed parameter in win98 machine
manually..

becos I know win 98 has two command xcopy and *XCOPY32.EXE* may be there may
have some link here.. so first try the command manually in ur windows box
and see whether actaully it works..

Regards,
Nirosh.

"Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
news:85******** *************** ***********@mic rosoft.com...
Hello ,

I am developping a program for Win98 plateform, and I am stucking with a
problem, hope you can help me.

I have a program running 2 process :
- One process running the Xcopy.exe
- When the first process is finished, it runs another Exe process (HHC.exe)
The code is below:

// Process 1: Xcopy.exe to copy directory 1 to 2

compiler.StartI nfo.FileName = "Xcopy.exe" ;
compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
compiler.StartI nfo.UseShellExe cute = false;
compiler.StartI nfo.CreateNoWin dow = true;
compiler.Start( );

while (!compiler.HasE xited)
{
Application.DoE vents();
{

// Process 2: Recompilation the new CHM with Hhc.exe external command
compiler.StartI nfo.FileName = Dir 2 + "\\" + "hhc.exe";
compiler.StartI nfo.Arguments = Dir2 + "\\" + "Help.hhp";
compiler.StartI nfo.UseShellExe cute = false;
compiler.StartI nfo.CreateNoWin dow = true;
compiler.Start( );

while (!compiler.HasE xited)
{
Application.DoE vents();
}
My problem is that, when I run this program in Windows 98, the Xcopy process runs in the black window and it hangs, the process 2 cannot be run until I
manually close it command window
The same program works fine in WinXP or 2000

Do you have a clue of what' s going on ?, how can I avoid this Xcopy black
screen to appear in win98 ?

thanks for your help

S

Nov 16 '05 #2
second... in between these argumanet Dir1 and Dir2 I don't see a space how
this really work in XP and 2000..

I think you are missing some thing here..

Nirosh.

"Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
news:85******** *************** ***********@mic rosoft.com...
Hello ,

I am developping a program for Win98 plateform, and I am stucking with a
problem, hope you can help me.

I have a program running 2 process :
- One process running the Xcopy.exe
- When the first process is finished, it runs another Exe process (HHC.exe)
The code is below:

// Process 1: Xcopy.exe to copy directory 1 to 2

compiler.StartI nfo.FileName = "Xcopy.exe" ;
compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
compiler.StartI nfo.UseShellExe cute = false;
compiler.StartI nfo.CreateNoWin dow = true;
compiler.Start( );

while (!compiler.HasE xited)
{
Application.DoE vents();
{

// Process 2: Recompilation the new CHM with Hhc.exe external command
compiler.StartI nfo.FileName = Dir 2 + "\\" + "hhc.exe";
compiler.StartI nfo.Arguments = Dir2 + "\\" + "Help.hhp";
compiler.StartI nfo.UseShellExe cute = false;
compiler.StartI nfo.CreateNoWin dow = true;
compiler.Start( );

while (!compiler.HasE xited)
{
Application.DoE vents();
}
My problem is that, when I run this program in Windows 98, the Xcopy process runs in the black window and it hangs, the process 2 cannot be run until I
manually close it command window
The same program works fine in WinXP or 2000

Do you have a clue of what' s going on ?, how can I avoid this Xcopy black
screen to appear in win98 ?

thanks for your help

S

Nov 16 '05 #3
Hello Nirosh,

"> second... in between these argumanet Dir1 and Dir2 I don't see a space how
this really work in XP and 2000.."
There is a space at the end of Dir1, I run the command manually, it works
great. actually, when the program runs, it' s actually work because it show
up the Xcopy windows with the files being copied and there numbers, but this
black windows is not closing so the next process cannot be run.

Why the Xcopy window show up and not disappear after finishing his job ?

Regards

S.


"Champika Nirosh" wrote:
second... in between these argumanet Dir1 and Dir2 I don't see a space how
this really work in XP and 2000..

I think you are missing some thing here..

Nirosh.

"Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
news:85******** *************** ***********@mic rosoft.com...
Hello ,

I am developping a program for Win98 plateform, and I am stucking with a
problem, hope you can help me.

I have a program running 2 process :
- One process running the Xcopy.exe
- When the first process is finished, it runs another Exe process

(HHC.exe)

The code is below:

// Process 1: Xcopy.exe to copy directory 1 to 2

compiler.StartI nfo.FileName = "Xcopy.exe" ;
compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
compiler.StartI nfo.UseShellExe cute = false;
compiler.StartI nfo.CreateNoWin dow = true;
compiler.Start( );

while (!compiler.HasE xited)
{
Application.DoE vents();
{

// Process 2: Recompilation the new CHM with Hhc.exe external command
compiler.StartI nfo.FileName = Dir 2 + "\\" + "hhc.exe";
compiler.StartI nfo.Arguments = Dir2 + "\\" + "Help.hhp";
compiler.StartI nfo.UseShellExe cute = false;
compiler.StartI nfo.CreateNoWin dow = true;
compiler.Start( );

while (!compiler.HasE xited)
{
Application.DoE vents();
}
My problem is that, when I run this program in Windows 98, the Xcopy

process
runs in the black window and it hangs, the process 2 cannot be run until I
manually close it command window
The same program works fine in WinXP or 2000

Do you have a clue of what' s going on ?, how can I avoid this Xcopy black
screen to appear in win98 ?

thanks for your help

S


Nov 16 '05 #4
Try this...
compiler.StartI nfo.FileName = "Xcopy.exe" ;
compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
compiler.StartI nfo.UseShellExe cute = false;
compiler.StartI nfo.CreateNoWin dow = true; System.Diagnost ic.Process myPorc = compiler.Start( );

When ever it is done..

// Close process by sending a close message to its main window.
myPorc.CloseMai nWindow();
// Free resources associated with process.
myPorc.Close();

Regards,
Nirosh.
"Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
news:A5******** *************** ***********@mic rosoft.com...
Hello Nirosh,

"> second... in between these argumanet Dir1 and Dir2 I don't see a space how
this really work in XP and 2000.."


There is a space at the end of Dir1, I run the command manually, it works
great. actually, when the program runs, it' s actually work because it

show up the Xcopy windows with the files being copied and there numbers, but this black windows is not closing so the next process cannot be run.

Why the Xcopy window show up and not disappear after finishing his job ?

Regards

S.


"Champika Nirosh" wrote:
second... in between these argumanet Dir1 and Dir2 I don't see a space how this really work in XP and 2000..

I think you are missing some thing here..

Nirosh.

"Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
news:85******** *************** ***********@mic rosoft.com...
Hello ,

I am developping a program for Win98 plateform, and I am stucking with

a problem, hope you can help me.

I have a program running 2 process :
- One process running the Xcopy.exe
- When the first process is finished, it runs another Exe process

(HHC.exe)

The code is below:

// Process 1: Xcopy.exe to copy directory 1 to 2

compiler.StartI nfo.FileName = "Xcopy.exe" ;
compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
compiler.StartI nfo.UseShellExe cute = false;
compiler.StartI nfo.CreateNoWin dow = true;
compiler.Start( );

while (!compiler.HasE xited)
{
Application.DoE vents();
{

// Process 2: Recompilation the new CHM with Hhc.exe external command
compiler.StartI nfo.FileName = Dir 2 + "\\" + "hhc.exe";
compiler.StartI nfo.Arguments = Dir2 + "\\" + "Help.hhp";
compiler.StartI nfo.UseShellExe cute = false;
compiler.StartI nfo.CreateNoWin dow = true;
compiler.Start( );

while (!compiler.HasE xited)
{
Application.DoE vents();
}
My problem is that, when I run this program in Windows 98, the Xcopy

process
runs in the black window and it hangs, the process 2 cannot be run until I manually close it command window
The same program works fine in WinXP or 2000

Do you have a clue of what' s going on ?, how can I avoid this Xcopy black screen to appear in win98 ?

thanks for your help

S


Nov 16 '05 #5
thanks Nirosh,

I have tried your solution, but the compilation gives error at this line:
System.Diagnost ic.Process myPorc = compiler.Start( );
error message: cannot convert type bool to System.Diagnost ic.Process.

compiler.Start( ) return a boolean value and it cannot this value to
System.Diagnost ic.Process....h ow can it be done ?

regards

S


"Champika Nirosh" wrote:
Try this...
> compiler.StartI nfo.FileName = "Xcopy.exe" ;
> compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
> compiler.StartI nfo.UseShellExe cute = false;
> compiler.StartI nfo.CreateNoWin dow = true; System.Diagnost ic.Process myPorc = compiler.Start( );

When ever it is done..

// Close process by sending a close message to its main window.
myPorc.CloseMai nWindow();
// Free resources associated with process.
myPorc.Close();

Regards,
Nirosh.
"Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
news:A5******** *************** ***********@mic rosoft.com...
Hello Nirosh,

"> second... in between these argumanet Dir1 and Dir2 I don't see a space

how this really work in XP and 2000.."


There is a space at the end of Dir1, I run the command manually, it works
great. actually, when the program runs, it' s actually work because it

show
up the Xcopy windows with the files being copied and there numbers, but

this
black windows is not closing so the next process cannot be run.

Why the Xcopy window show up and not disappear after finishing his job ?

Regards

S.


"Champika Nirosh" wrote:
second... in between these argumanet Dir1 and Dir2 I don't see a space how this really work in XP and 2000..

I think you are missing some thing here..

Nirosh.

"Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
news:85******** *************** ***********@mic rosoft.com...
> Hello ,
>
> I am developping a program for Win98 plateform, and I am stucking with a > problem, hope you can help me.
>
> I have a program running 2 process :
> - One process running the Xcopy.exe
> - When the first process is finished, it runs another Exe process
(HHC.exe)
>
> The code is below:
>
> // Process 1: Xcopy.exe to copy directory 1 to 2
>
> compiler.StartI nfo.FileName = "Xcopy.exe" ;
> compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
> compiler.StartI nfo.UseShellExe cute = false;
> compiler.StartI nfo.CreateNoWin dow = true;
> compiler.Start( );
>
> while (!compiler.HasE xited)
> {
> Application.DoE vents();
> {
>
> // Process 2: Recompilation the new CHM with Hhc.exe external command
> compiler.StartI nfo.FileName = Dir 2 + "\\" + "hhc.exe";
> compiler.StartI nfo.Arguments = Dir2 + "\\" + "Help.hhp";
> compiler.StartI nfo.UseShellExe cute = false;
> compiler.StartI nfo.CreateNoWin dow = true;
> compiler.Start( );
>
> while (!compiler.HasE xited)
> {
> Application.DoE vents();
> }
>
>
> My problem is that, when I run this program in Windows 98, the Xcopy
process
> runs in the black window and it hangs, the process 2 cannot be run until I > manually close it command window
> The same program works fine in WinXP or 2000
>
> Do you have a clue of what' s going on ?, how can I avoid this Xcopy black > screen to appear in win98 ?
>
> thanks for your help
>
> S
>
>


Nov 16 '05 #6
Hi Samantha,

Yes you got to use some other overload to have it.. may be you can try to
pass the startinfo object to the start method as a parameter, that will
return the reference of the active process. Or else just try to call
compiler.CloseM ainWindow();

Second is try to use compiler.WaitFo rExit() Method to replace

while (!compiler.HasE xited)
{
Application.DoE vents();
}

Note: Since this is a uncommon issue you got to try different ways to find a
work around.. so just go to msdn and have a look at
System.Diagnost ic.Process class and it's memebers..

Regards,
Nirosh.

"Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
news:95******** *************** ***********@mic rosoft.com...
thanks Nirosh,

I have tried your solution, but the compilation gives error at this line:
System.Diagnost ic.Process myPorc = compiler.Start( );


error message: cannot convert type bool to System.Diagnost ic.Process.

compiler.Start( ) return a boolean value and it cannot this value to
System.Diagnost ic.Process....h ow can it be done ?

regards

S


"Champika Nirosh" wrote:
Try this...
> > compiler.StartI nfo.FileName = "Xcopy.exe" ;
> > compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
> > compiler.StartI nfo.UseShellExe cute = false;
> > compiler.StartI nfo.CreateNoWin dow = true;

System.Diagnost ic.Process myPorc = compiler.Start( );

When ever it is done..

// Close process by sending a close message to its main window. myPorc.CloseMai nWindow();
// Free resources associated with process.
myPorc.Close();

Regards,
Nirosh.
"Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
news:A5******** *************** ***********@mic rosoft.com...
Hello Nirosh,

"> second... in between these argumanet Dir1 and Dir2 I don't see a space
how
> this really work in XP and 2000.."

There is a space at the end of Dir1, I run the command manually, it
works great. actually, when the program runs, it' s actually work because it show
up the Xcopy windows with the files being copied and there numbers,
but this
black windows is not closing so the next process cannot be run.

Why the Xcopy window show up and not disappear after finishing his job
?
Regards

S.


"Champika Nirosh" wrote:

> second... in between these argumanet Dir1 and Dir2 I don't see a space how
> this really work in XP and 2000..
>
> I think you are missing some thing here..
>
> Nirosh.
>
> "Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
> news:85******** *************** ***********@mic rosoft.com...
> > Hello ,
> >
> > I am developping a program for Win98 plateform, and I am stucking
with a
> > problem, hope you can help me.
> >
> > I have a program running 2 process :
> > - One process running the Xcopy.exe
> > - When the first process is finished, it runs another Exe process
> (HHC.exe)
> >
> > The code is below:
> >
> > // Process 1: Xcopy.exe to copy directory 1 to 2
> >
> > compiler.StartI nfo.FileName = "Xcopy.exe" ;
> > compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
> > compiler.StartI nfo.UseShellExe cute = false;
> > compiler.StartI nfo.CreateNoWin dow = true;
> > compiler.Start( );
> >
> > while (!compiler.HasE xited)
> > {
> > Application.DoE vents();
> > {
> >
> > // Process 2: Recompilation the new CHM with Hhc.exe external
command > > compiler.StartI nfo.FileName = Dir 2 + "\\" + "hhc.exe";
> > compiler.StartI nfo.Arguments = Dir2 + "\\" + "Help.hhp";
> > compiler.StartI nfo.UseShellExe cute = false;
> > compiler.StartI nfo.CreateNoWin dow = true;
> > compiler.Start( );
> >
> > while (!compiler.HasE xited)
> > {
> > Application.DoE vents();
> > }
> >
> >
> > My problem is that, when I run this program in Windows 98, the Xcopy > process
> > runs in the black window and it hangs, the process 2 cannot be run

until I
> > manually close it command window
> > The same program works fine in WinXP or 2000
> >
> > Do you have a clue of what' s going on ?, how can I avoid this

Xcopy black
> > screen to appear in win98 ?
> >
> > thanks for your help
> >
> > S
> >
> >
>
>
>


Nov 16 '05 #7
Hi Samantha,

Yes you got to use some other overload to have it.. may be you can try to
pass the startinfo object to the start method as a parameter, that will
return the reference of the active process. Or else just try to call
compiler.CloseM ainWindow();

Second is try to use compiler.WaitFo rExit() Method to replace

while (!compiler.HasE xited)
{
Application.DoE vents();
}

Note: Since this is a uncommon issue you got to try different ways to find a
work around.. so just go to msdn and have a look at
System.Diagnost ic.Process class and it's memebers..

Regards,
Nirosh.

"Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
news:95******** *************** ***********@mic rosoft.com...
thanks Nirosh,

I have tried your solution, but the compilation gives error at this line:
System.Diagnost ic.Process myPorc = compiler.Start( );


error message: cannot convert type bool to System.Diagnost ic.Process.

compiler.Start( ) return a boolean value and it cannot this value to
System.Diagnost ic.Process....h ow can it be done ?

regards

S


"Champika Nirosh" wrote:
Try this...
> > compiler.StartI nfo.FileName = "Xcopy.exe" ;
> > compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
> > compiler.StartI nfo.UseShellExe cute = false;
> > compiler.StartI nfo.CreateNoWin dow = true;

System.Diagnost ic.Process myPorc = compiler.Start( );

When ever it is done..

// Close process by sending a close message to its main window. myPorc.CloseMai nWindow();
// Free resources associated with process.
myPorc.Close();

Regards,
Nirosh.
"Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
news:A5******** *************** ***********@mic rosoft.com...
Hello Nirosh,

"> second... in between these argumanet Dir1 and Dir2 I don't see a space
how
> this really work in XP and 2000.."

There is a space at the end of Dir1, I run the command manually, it
works great. actually, when the program runs, it' s actually work because it show
up the Xcopy windows with the files being copied and there numbers,
but this
black windows is not closing so the next process cannot be run.

Why the Xcopy window show up and not disappear after finishing his job
?
Regards

S.


"Champika Nirosh" wrote:

> second... in between these argumanet Dir1 and Dir2 I don't see a space how
> this really work in XP and 2000..
>
> I think you are missing some thing here..
>
> Nirosh.
>
> "Samantha" <Sa******@discu ssions.microsof t.com> wrote in message
> news:85******** *************** ***********@mic rosoft.com...
> > Hello ,
> >
> > I am developping a program for Win98 plateform, and I am stucking
with a
> > problem, hope you can help me.
> >
> > I have a program running 2 process :
> > - One process running the Xcopy.exe
> > - When the first process is finished, it runs another Exe process
> (HHC.exe)
> >
> > The code is below:
> >
> > // Process 1: Xcopy.exe to copy directory 1 to 2
> >
> > compiler.StartI nfo.FileName = "Xcopy.exe" ;
> > compiler.StartI nfo.Arguments = Dir1 + Dir2 + " " + "/S /Y";
> > compiler.StartI nfo.UseShellExe cute = false;
> > compiler.StartI nfo.CreateNoWin dow = true;
> > compiler.Start( );
> >
> > while (!compiler.HasE xited)
> > {
> > Application.DoE vents();
> > {
> >
> > // Process 2: Recompilation the new CHM with Hhc.exe external
command > > compiler.StartI nfo.FileName = Dir 2 + "\\" + "hhc.exe";
> > compiler.StartI nfo.Arguments = Dir2 + "\\" + "Help.hhp";
> > compiler.StartI nfo.UseShellExe cute = false;
> > compiler.StartI nfo.CreateNoWin dow = true;
> > compiler.Start( );
> >
> > while (!compiler.HasE xited)
> > {
> > Application.DoE vents();
> > }
> >
> >
> > My problem is that, when I run this program in Windows 98, the Xcopy > process
> > runs in the black window and it hangs, the process 2 cannot be run

until I
> > manually close it command window
> > The same program works fine in WinXP or 2000
> >
> > Do you have a clue of what' s going on ?, how can I avoid this

Xcopy black
> > screen to appear in win98 ?
> >
> > thanks for your help
> >
> > S
> >
> >
>
>
>


Nov 16 '05 #8

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

Similar topics

12
2954
by: serge calderara | last post by:
Dear all, I have an application which is suppose to start another executable process. As soon as that process is running, I need to retrive its handle. The problem of the particular process I am starting is that it has a welcome window first which gets displayed and then the real windows after a while,in other words it means that the process name is the same, but the handle I need to retrive is the one from the final window and not the...
5
3674
by: ask | last post by:
Hi NG I'm a bit new to programming c# and have a question regarding ftp by the command prompt. As far as I can see it should be possible to start a process and pipe command streams into it. But I cant make it work, it always stalls when I try to read the output: /// code 1 Process ftpProcess = new Process();
2
380
by: Samantha | last post by:
Hello , I am developping a program for Win98 plateform, and I am stucking with a problem, hope you can help me. I have a program running 2 process : - One process running the Xcopy.exe - When the first process is finished, it runs another Exe process (HHC.exe) The code is below:
2
2444
by: Jeffrey Palermo, MCAD.Net | last post by:
I have some classes that control file processing in c#. The files come from a mainframe and may take some time for each to process. I use the Threadpool to process multiple files at once. Each instance of the file processor is spawned in its own AppDomain to isolate it (I'm using a separate AppDomain for a valid reason, so this thread isn't to discuss that). My process is a Windows service, but I can duplicate this problem as a regular...
4
5130
by: John Lee | last post by:
Hi, I developed a scheduler as service and kick off another console application "DTSRUN.exe" to run a dts package ProcessStartInfo psInfo = new ProcessStartInfo(command); Process process = Process.Start(psInfo); I have two questions need your help:
0
1348
by: joeted | last post by:
Hi, I am using system.diagnostic.process with the intention of running a program to communicate with a unix box: The program is "PuTTY", running from a batch script. I know it works because if i manually trigger the batch, the results can be seen on the unix side. Running the batch script from an .aspx page however makes the process
10
3074
by: Lars-Erik Aabech | last post by:
Hi! This issue have been discussed a lot, but I haven't found a solution that applies to ASP.NET. I have a library which does some operations on Excel documents, and it will be used in an ASP.NET application. If I use the library in a Forms application, the Excel process is removed when the cleanup operations are done, but with ASP.NET all possible ways to clean up fails. The following code has been tried:
0
849
by: Daniel | last post by:
C# windows service freezes on System.Diagnostics.Process.Start(info) When I launch PSCP from a C# windows service and launch pscp 0.53 there are no issues. but when I use C# windows service to launch pscp 0.58 C# freezes in System.Diagnostics.Process.Start(info)? pscp 0.58 works fine at command line, but causes C# to freeze on ystem.Diagnostics.Process.Start(info) also i noticed that the pscp process does not show in taske manager while...
4
7875
by: DubSport | last post by:
I am trying to get my .net page to run a simple batch file on my IIS server. I want it to run with specified credentials. It appears to start the program cmd.exe as the correct user (shows up in the task mgr) but it just hangs there and will never finish. Looking in the event logs I see this: Application popup: cmd.exe - Application Error : The application failed to initialize properly (0xc0000142). Click on OK to terminate the...
0
9492
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
10163
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9960
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8988
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
7510
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
5397
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
5532
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3668
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2894
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.