473,396 Members | 1,995 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Send keys to Remote Desktop

Hi, there is an application running on a remote desktop (under Citrix ICA,
but the same problem applies for RDC or PC Anywhere). Now, I want to send
keys to the remote application from a local app. I tried sending keys in VB
with SendKeys, as well as using keybd_event API, but I'm not able to send
any keys. It works very well for any local applications, but I can't pass
the keys remotely. Is there any way to do it?

Thanks!
Etienne
Jul 21 '05 #1
9 10168
Never use send keys....it's a hack at best. Only the app with focus will
get the message, which is never guaranteed.

Look under Remoting in VS.NET help

Jeff
"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:HL********************@b2b2c.ca...
Hi, there is an application running on a remote desktop (under Citrix ICA,
but the same problem applies for RDC or PC Anywhere). Now, I want to send
keys to the remote application from a local app. I tried sending keys in VB with SendKeys, as well as using keybd_event API, but I'm not able to send
any keys. It works very well for any local applications, but I can't pass
the keys remotely. Is there any way to do it?

Thanks!
Etienne

Jul 21 '05 #2
What I am trying to achieve is a hack around an existing system! The remote
interface is too crappy, so I want to automate data entry with a local
application.

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:ut*************@TK2MSFTNGP09.phx.gbl...
Never use send keys....it's a hack at best. Only the app with focus will
get the message, which is never guaranteed.

Look under Remoting in VS.NET help

Jeff
"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:HL********************@b2b2c.ca...
Hi, there is an application running on a remote desktop (under Citrix
ICA,
but the same problem applies for RDC or PC Anywhere). Now, I want to send
keys to the remote application from a local app. I tried sending keys in

VB
with SendKeys, as well as using keybd_event API, but I'm not able to send
any keys. It works very well for any local applications, but I can't pass
the keys remotely. Is there any way to do it?

Thanks!
Etienne


Jul 21 '05 #3
Not with Send Keys! Speaking of hack

Remote interface is crappy? Is that a technical term? Perhaps you
misunderstood my suggestion...Remoting is a new feature of .NET that takes
over from NETDDE and sockets.

And you are trying to operate through PC Anywhere to control a remote app?

Jeff

"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:IN********************@b2b2c.ca...
What I am trying to achieve is a hack around an existing system! The remote interface is too crappy, so I want to automate data entry with a local
application.

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:ut*************@TK2MSFTNGP09.phx.gbl...
Never use send keys....it's a hack at best. Only the app with focus will get the message, which is never guaranteed.

Look under Remoting in VS.NET help

Jeff
"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:HL********************@b2b2c.ca...
Hi, there is an application running on a remote desktop (under Citrix
ICA,
but the same problem applies for RDC or PC Anywhere). Now, I want to send keys to the remote application from a local app. I tried sending keys in
VB
with SendKeys, as well as using keybd_event API, but I'm not able to

send any keys. It works very well for any local applications, but I can't pass the keys remotely. Is there any way to do it?

Thanks!
Etienne



Jul 21 '05 #4
Look, I haven't written the application and I'm not the administrator. It
runs remotely and I access it through Citrix ICA (which is the same thing as
RDC or PC Anywhere). I can't run any utility server-side. If I want to
automate tasks, the best I can do is to send a serie of keyboard keys.

Etienne

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:eB*************@TK2MSFTNGP10.phx.gbl...
Not with Send Keys! Speaking of hack

Remote interface is crappy? Is that a technical term? Perhaps you
misunderstood my suggestion...Remoting is a new feature of .NET that takes
over from NETDDE and sockets.

And you are trying to operate through PC Anywhere to control a remote app?

Jeff

"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:IN********************@b2b2c.ca...
What I am trying to achieve is a hack around an existing system! The

remote
interface is too crappy, so I want to automate data entry with a local
application.

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:ut*************@TK2MSFTNGP09.phx.gbl...
> Never use send keys....it's a hack at best. Only the app with focus will > get the message, which is never guaranteed.
>
> Look under Remoting in VS.NET help
>
> Jeff
> "Etienne Charland" <mysteryx93 at hotmail> wrote in message
> news:HL********************@b2b2c.ca...
>> Hi, there is an application running on a remote desktop (under Citrix
>> ICA,
>> but the same problem applies for RDC or PC Anywhere). Now, I want to send >> keys to the remote application from a local app. I tried sending keys in > VB
>> with SendKeys, as well as using keybd_event API, but I'm not able to send >> any keys. It works very well for any local applications, but I can't pass >> the keys remotely. Is there any way to do it?
>>
>> Thanks!
>> Etienne
>>
>>
>
>



Jul 21 '05 #5
So you're gonna write an app that runs on your desktop, that sends keys to a
Citrix session, that passes the keys onto the remote desktop? Destined to
fail, sorry. Too many things to go wrong.

What exactly is the remote app? Is it a mainframe application by chance? So
you can't run this same application locally?

So they've given you the task of managing this remote application, but won't
let you touch the remote machine? So they've chosen an unreliable approach?
Perhaps you need to educate management? Find a new job? Just checking, and
just joking :-)

You posted here asking for answers, and we've given you some. Your choice to
listen or not.

Jeff

"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:Md********************@b2b2c.ca...
Look, I haven't written the application and I'm not the administrator. It
runs remotely and I access it through Citrix ICA (which is the same thing as RDC or PC Anywhere). I can't run any utility server-side. If I want to
automate tasks, the best I can do is to send a serie of keyboard keys.

Etienne

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:eB*************@TK2MSFTNGP10.phx.gbl...
Not with Send Keys! Speaking of hack

Remote interface is crappy? Is that a technical term? Perhaps you
misunderstood my suggestion...Remoting is a new feature of .NET that takes over from NETDDE and sockets.

And you are trying to operate through PC Anywhere to control a remote app?
Jeff

"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:IN********************@b2b2c.ca...
What I am trying to achieve is a hack around an existing system! The

remote
interface is too crappy, so I want to automate data entry with a local
application.

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:ut*************@TK2MSFTNGP09.phx.gbl...
> Never use send keys....it's a hack at best. Only the app with focus

will
> get the message, which is never guaranteed.
>
> Look under Remoting in VS.NET help
>
> Jeff
> "Etienne Charland" <mysteryx93 at hotmail> wrote in message
> news:HL********************@b2b2c.ca...
>> Hi, there is an application running on a remote desktop (under Citrix >> ICA,
>> but the same problem applies for RDC or PC Anywhere). Now, I want to

send
>> keys to the remote application from a local app. I tried sending
keys in
> VB
>> with SendKeys, as well as using keybd_event API, but I'm not able to

send
>> any keys. It works very well for any local applications, but I can't

pass
>> the keys remotely. Is there any way to do it?
>>
>> Thanks!
>> Etienne
>>
>>
>
>



Jul 21 '05 #6
I am not paid to develop the system; I am paid to use it. I just want to use
it more efficiently. And I must to do without having admin access to the
server in any way. Although I am very limited in the solutions, there is
something I can do: send keys to fill fields with the right data. I can't
get this to work for an unknown reason and I don't see any other way to
communicate with the software.

Etienne

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:e2**************@TK2MSFTNGP11.phx.gbl...
So you're gonna write an app that runs on your desktop, that sends keys to
a
Citrix session, that passes the keys onto the remote desktop? Destined to
fail, sorry. Too many things to go wrong.

What exactly is the remote app? Is it a mainframe application by chance?
So
you can't run this same application locally?

So they've given you the task of managing this remote application, but
won't
let you touch the remote machine? So they've chosen an unreliable
approach?
Perhaps you need to educate management? Find a new job? Just checking,
and
just joking :-)

You posted here asking for answers, and we've given you some. Your choice
to
listen or not.

Jeff

"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:Md********************@b2b2c.ca...
Look, I haven't written the application and I'm not the administrator. It
runs remotely and I access it through Citrix ICA (which is the same thing

as
RDC or PC Anywhere). I can't run any utility server-side. If I want to
automate tasks, the best I can do is to send a serie of keyboard keys.

Etienne

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:eB*************@TK2MSFTNGP10.phx.gbl...
> Not with Send Keys! Speaking of hack
>
> Remote interface is crappy? Is that a technical term? Perhaps you
> misunderstood my suggestion...Remoting is a new feature of .NET that takes > over from NETDDE and sockets.
>
> And you are trying to operate through PC Anywhere to control a remote app? >
> Jeff
>
> "Etienne Charland" <mysteryx93 at hotmail> wrote in message
> news:IN********************@b2b2c.ca...
>> What I am trying to achieve is a hack around an existing system! The
> remote
>> interface is too crappy, so I want to automate data entry with a local
>> application.
>>
>> "Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
>> news:ut*************@TK2MSFTNGP09.phx.gbl...
>> > Never use send keys....it's a hack at best. Only the app with focus
> will
>> > get the message, which is never guaranteed.
>> >
>> > Look under Remoting in VS.NET help
>> >
>> > Jeff
>> > "Etienne Charland" <mysteryx93 at hotmail> wrote in message
>> > news:HL********************@b2b2c.ca...
>> >> Hi, there is an application running on a remote desktop (under Citrix >> >> ICA,
>> >> but the same problem applies for RDC or PC Anywhere). Now, I want
>> >> to
> send
>> >> keys to the remote application from a local app. I tried sending keys > in
>> > VB
>> >> with SendKeys, as well as using keybd_event API, but I'm not able
>> >> to
> send
>> >> any keys. It works very well for any local applications, but I
>> >> can't
> pass
>> >> the keys remotely. Is there any way to do it?
>> >>
>> >> Thanks!
>> >> Etienne
>> >>
>> >>
>> >
>> >
>>
>>
>
>



Jul 21 '05 #7
So you are sending keys to the Citrix window??

Please define "can't get this to work". How are you obtaining the window
handle to send keys to? Do you get an error?

jeff
"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:9q********************@b2b2c.ca...
I am not paid to develop the system; I am paid to use it. I just want to use it more efficiently. And I must to do without having admin access to the
server in any way. Although I am very limited in the solutions, there is
something I can do: send keys to fill fields with the right data. I can't
get this to work for an unknown reason and I don't see any other way to
communicate with the software.

Etienne

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:e2**************@TK2MSFTNGP11.phx.gbl...
So you're gonna write an app that runs on your desktop, that sends keys to a
Citrix session, that passes the keys onto the remote desktop? Destined to fail, sorry. Too many things to go wrong.

What exactly is the remote app? Is it a mainframe application by chance? So
you can't run this same application locally?

So they've given you the task of managing this remote application, but
won't
let you touch the remote machine? So they've chosen an unreliable
approach?
Perhaps you need to educate management? Find a new job? Just checking,
and
just joking :-)

You posted here asking for answers, and we've given you some. Your choice to
listen or not.

Jeff

"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:Md********************@b2b2c.ca...
Look, I haven't written the application and I'm not the administrator. It runs remotely and I access it through Citrix ICA (which is the same thing
as
RDC or PC Anywhere). I can't run any utility server-side. If I want to
automate tasks, the best I can do is to send a serie of keyboard keys.

Etienne

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:eB*************@TK2MSFTNGP10.phx.gbl...
> Not with Send Keys! Speaking of hack
>
> Remote interface is crappy? Is that a technical term? Perhaps you
> misunderstood my suggestion...Remoting is a new feature of .NET that

takes
> over from NETDDE and sockets.
>
> And you are trying to operate through PC Anywhere to control a remote

app?
>
> Jeff
>
> "Etienne Charland" <mysteryx93 at hotmail> wrote in message
> news:IN********************@b2b2c.ca...
>> What I am trying to achieve is a hack around an existing system! The
> remote
>> interface is too crappy, so I want to automate data entry with a

local >> application.
>>
>> "Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
>> news:ut*************@TK2MSFTNGP09.phx.gbl...
>> > Never use send keys....it's a hack at best. Only the app with focus > will
>> > get the message, which is never guaranteed.
>> >
>> > Look under Remoting in VS.NET help
>> >
>> > Jeff
>> > "Etienne Charland" <mysteryx93 at hotmail> wrote in message
>> > news:HL********************@b2b2c.ca...
>> >> Hi, there is an application running on a remote desktop (under

Citrix
>> >> ICA,
>> >> but the same problem applies for RDC or PC Anywhere). Now, I want
>> >> to
> send
>> >> keys to the remote application from a local app. I tried sending

keys
> in
>> > VB
>> >> with SendKeys, as well as using keybd_event API, but I'm not able
>> >> to
> send
>> >> any keys. It works very well for any local applications, but I
>> >> can't
> pass
>> >> the keys remotely. Is there any way to do it?
>> >>
>> >> Thanks!
>> >> Etienne
>> >>
>> >>
>> >
>> >
>>
>>
>
>



Jul 21 '05 #8
I use FindWindow and BringWindowToTop APIs to activate the window. Then, I
send keys as if the user was typing something. It it working for any local
application, but it doesn't work on Remote Desktop. There is no error; the
keys are just not passed. However, in some circonstances something happens
on the Remote Desktop. For example, I send 2 tabs, the first tab closes the
window (and an error is then displayed). The 2nd tab closes that error
message. That makes no sense lol. The only action I've been able to do is
canceling (sometimes). I don't know why.

Etienne

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:eS***************@TK2MSFTNGP11.phx.gbl...
So you are sending keys to the Citrix window??

Please define "can't get this to work". How are you obtaining the window
handle to send keys to? Do you get an error?

jeff
"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:9q********************@b2b2c.ca...
I am not paid to develop the system; I am paid to use it. I just want to

use
it more efficiently. And I must to do without having admin access to the
server in any way. Although I am very limited in the solutions, there is
something I can do: send keys to fill fields with the right data. I can't
get this to work for an unknown reason and I don't see any other way to
communicate with the software.

Etienne

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:e2**************@TK2MSFTNGP11.phx.gbl...
> So you're gonna write an app that runs on your desktop, that sends keys to > a
> Citrix session, that passes the keys onto the remote desktop? Destined to > fail, sorry. Too many things to go wrong.
>
> What exactly is the remote app? Is it a mainframe application by chance? > So
> you can't run this same application locally?
>
> So they've given you the task of managing this remote application, but
> won't
> let you touch the remote machine? So they've chosen an unreliable
> approach?
> Perhaps you need to educate management? Find a new job? Just
> checking,
> and
> just joking :-)
>
> You posted here asking for answers, and we've given you some. Your choice > to
> listen or not.
>
> Jeff
>
> "Etienne Charland" <mysteryx93 at hotmail> wrote in message
> news:Md********************@b2b2c.ca...
>> Look, I haven't written the application and I'm not the administrator. It >> runs remotely and I access it through Citrix ICA (which is the same thing > as
>> RDC or PC Anywhere). I can't run any utility server-side. If I want to
>> automate tasks, the best I can do is to send a serie of keyboard keys.
>>
>> Etienne
>>
>> "Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
>> news:eB*************@TK2MSFTNGP10.phx.gbl...
>> > Not with Send Keys! Speaking of hack
>> >
>> > Remote interface is crappy? Is that a technical term? Perhaps you
>> > misunderstood my suggestion...Remoting is a new feature of .NET that
> takes
>> > over from NETDDE and sockets.
>> >
>> > And you are trying to operate through PC Anywhere to control a
>> > remote
> app?
>> >
>> > Jeff
>> >
>> > "Etienne Charland" <mysteryx93 at hotmail> wrote in message
>> > news:IN********************@b2b2c.ca...
>> >> What I am trying to achieve is a hack around an existing system!
>> >> The
>> > remote
>> >> interface is too crappy, so I want to automate data entry with a local >> >> application.
>> >>
>> >> "Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
>> >> news:ut*************@TK2MSFTNGP09.phx.gbl...
>> >> > Never use send keys....it's a hack at best. Only the app with focus >> > will
>> >> > get the message, which is never guaranteed.
>> >> >
>> >> > Look under Remoting in VS.NET help
>> >> >
>> >> > Jeff
>> >> > "Etienne Charland" <mysteryx93 at hotmail> wrote in message
>> >> > news:HL********************@b2b2c.ca...
>> >> >> Hi, there is an application running on a remote desktop (under
> Citrix
>> >> >> ICA,
>> >> >> but the same problem applies for RDC or PC Anywhere). Now, I
>> >> >> want
>> >> >> to
>> > send
>> >> >> keys to the remote application from a local app. I tried sending
> keys
>> > in
>> >> > VB
>> >> >> with SendKeys, as well as using keybd_event API, but I'm not
>> >> >> able
>> >> >> to
>> > send
>> >> >> any keys. It works very well for any local applications, but I
>> >> >> can't
>> > pass
>> >> >> the keys remotely. Is there any way to do it?
>> >> >>
>> >> >> Thanks!
>> >> >> Etienne
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >
>>
>>
>
>



Jul 21 '05 #9
So it took 4 responses to answer my original question?

You've successfully then brought the Citrix window to focus. But then, what
has the focus in the remote window? Can you be guaranteed to have your
remote app be the focus in the session window? FindWindow used again
doesn't work inside a terminal session.

You need to rethink the architecture, in my opinion. Be nice, and I (we) can
help.

So you are paid to USE a system? Do they pay you by the hour? Does the
app log you in, and keep track of your time? Define "system"

Do you want this to work? (that is a simple yes/no question). Often
accepting answers requires a paradigm shift.

There is something definitely missing here.

Jeff

"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:j-********************@b2b2c.ca...
I use FindWindow and BringWindowToTop APIs to activate the window. Then, I
send keys as if the user was typing something. It it working for any local
application, but it doesn't work on Remote Desktop. There is no error; the
keys are just not passed. However, in some circonstances something happens
on the Remote Desktop. For example, I send 2 tabs, the first tab closes the window (and an error is then displayed). The 2nd tab closes that error
message. That makes no sense lol. The only action I've been able to do is
canceling (sometimes). I don't know why.

Etienne

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:eS***************@TK2MSFTNGP11.phx.gbl...
So you are sending keys to the Citrix window??

Please define "can't get this to work". How are you obtaining the window
handle to send keys to? Do you get an error?

jeff
"Etienne Charland" <mysteryx93 at hotmail> wrote in message
news:9q********************@b2b2c.ca...
I am not paid to develop the system; I am paid to use it. I just want to
use
it more efficiently. And I must to do without having admin access to
the server in any way. Although I am very limited in the solutions, there is something I can do: send keys to fill fields with the right data. I can't get this to work for an unknown reason and I don't see any other way to
communicate with the software.

Etienne

"Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
news:e2**************@TK2MSFTNGP11.phx.gbl...
> So you're gonna write an app that runs on your desktop, that sends keys to
> a
> Citrix session, that passes the keys onto the remote desktop?
Destined to
> fail, sorry. Too many things to go wrong.
>
> What exactly is the remote app? Is it a mainframe application by

chance?
> So
> you can't run this same application locally?
>
> So they've given you the task of managing this remote application,
but > won't
> let you touch the remote machine? So they've chosen an unreliable
> approach?
> Perhaps you need to educate management? Find a new job? Just
> checking,
> and
> just joking :-)
>
> You posted here asking for answers, and we've given you some. Your

choice
> to
> listen or not.
>
> Jeff
>
> "Etienne Charland" <mysteryx93 at hotmail> wrote in message
> news:Md********************@b2b2c.ca...
>> Look, I haven't written the application and I'm not the administrator. It
>> runs remotely and I access it through Citrix ICA (which is the same

thing
> as
>> RDC or PC Anywhere). I can't run any utility server-side. If I want

to >> automate tasks, the best I can do is to send a serie of keyboard keys. >>
>> Etienne
>>
>> "Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message
>> news:eB*************@TK2MSFTNGP10.phx.gbl...
>> > Not with Send Keys! Speaking of hack
>> >
>> > Remote interface is crappy? Is that a technical term? Perhaps you
>> > misunderstood my suggestion...Remoting is a new feature of .NET that > takes
>> > over from NETDDE and sockets.
>> >
>> > And you are trying to operate through PC Anywhere to control a
>> > remote
> app?
>> >
>> > Jeff
>> >
>> > "Etienne Charland" <mysteryx93 at hotmail> wrote in message
>> > news:IN********************@b2b2c.ca...
>> >> What I am trying to achieve is a hack around an existing system!
>> >> The
>> > remote
>> >> interface is too crappy, so I want to automate data entry with a

local
>> >> application.
>> >>
>> >> "Jeff Dillon" <je**@removeemergencyreporting.com> wrote in message >> >> news:ut*************@TK2MSFTNGP09.phx.gbl...
>> >> > Never use send keys....it's a hack at best. Only the app with

focus
>> > will
>> >> > get the message, which is never guaranteed.
>> >> >
>> >> > Look under Remoting in VS.NET help
>> >> >
>> >> > Jeff
>> >> > "Etienne Charland" <mysteryx93 at hotmail> wrote in message
>> >> > news:HL********************@b2b2c.ca...
>> >> >> Hi, there is an application running on a remote desktop (under
> Citrix
>> >> >> ICA,
>> >> >> but the same problem applies for RDC or PC Anywhere). Now, I
>> >> >> want
>> >> >> to
>> > send
>> >> >> keys to the remote application from a local app. I tried sending > keys
>> > in
>> >> > VB
>> >> >> with SendKeys, as well as using keybd_event API, but I'm not
>> >> >> able
>> >> >> to
>> > send
>> >> >> any keys. It works very well for any local applications, but I
>> >> >> can't
>> > pass
>> >> >> the keys remotely. Is there any way to do it?
>> >> >>
>> >> >> Thanks!
>> >> >> Etienne
>> >> >>
>> >> >>
>> >> >
>> >> >
>> >>
>> >>
>> >
>> >
>>
>>
>
>



Jul 21 '05 #10

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

Similar topics

9
by: Etienne Charland | last post by:
Hi, there is an application running on a remote desktop (under Citrix ICA, but the same problem applies for RDC or PC Anywhere). Now, I want to send keys to the remote application from a local app....
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
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...
0
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,...
0
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...
0
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...
0
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,...

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.