473,804 Members | 2,225 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Extended stored procedure

Hello

I am having an issue that I've been having for months, whereby I can't get
*ANY* extended stored procedure to run on the PC other than the one I
developed it on.
The ones I have tested have all got exactly the same SQL server
configuration (default installation of MSDE). "sp_addextended proc" appears to
run without error, but on invoking the xp, I get the error:
Cannot load the DLL testproc.dll, or one of the DLLs it references. Reason:
126(error not found).

I've posted to this effect before, and all I got suggested was check all the
dependencies are installed on the target machine. Which is helpful to be
reminded of, but now I've checked that they all are. It still gives the error
even if I don't add any code to the project - just build it with the skeleton
that the wizard gives you.

Could somebody with SQL server possibly give it a test to see if they can do
what I'm trying to do? It really is very simple what I'm trying to do... I
must stress that this deployment nightmare *still* occurs with just the
wizard-generated skeleton... and other than being windows 2000 as opposed to
XP, the target machines are identical to the development machine (well,
they're obviously not, but to my understanding they are.). It's just nailing
down how they're different - any ideas?

I'm sure it's just some DLL I haven't taken into account, but I can't think
what.
opends60.dll and all the standard runtime libraries such as msvcrt.dll etc.
are all there.
Nov 17 '05 #1
9 1567
Can you create a setup package for the dll? Probably your best bet.

Jeff

"Bonj" <Bo**@discussio ns.microsoft.co m> wrote in message
news:8B******** *************** ***********@mic rosoft.com...
Hello

I am having an issue that I've been having for months, whereby I can't get
*ANY* extended stored procedure to run on the PC other than the one I
developed it on.
The ones I have tested have all got exactly the same SQL server
configuration (default installation of MSDE). "sp_addextended proc" appears to run without error, but on invoking the xp, I get the error:
Cannot load the DLL testproc.dll, or one of the DLLs it references. Reason: 126(error not found).

I've posted to this effect before, and all I got suggested was check all the dependencies are installed on the target machine. Which is helpful to be
reminded of, but now I've checked that they all are. It still gives the error even if I don't add any code to the project - just build it with the skeleton that the wizard gives you.

Could somebody with SQL server possibly give it a test to see if they can do what I'm trying to do? It really is very simple what I'm trying to do... I
must stress that this deployment nightmare *still* occurs with just the
wizard-generated skeleton... and other than being windows 2000 as opposed to XP, the target machines are identical to the development machine (well,
they're obviously not, but to my understanding they are.). It's just nailing down how they're different - any ideas?

I'm sure it's just some DLL I haven't taken into account, but I can't think what.
opends60.dll and all the standard runtime libraries such as msvcrt.dll etc. are all there.

Nov 17 '05 #2
mmmm... maybe, i'll try it.
The DLL has to be installed into SQL server's binn directory though - would
you know if there is an automatic way to do that?
There probably isn't, and I'll just have to hardcode
"%programfiles% \microsoft sql server\mssql\bi nn" as the install path... or
is it OK installed to a different path?
I did dumpbin /dependents on the DLL, and it gave me three dependencies:
kernel32.dll (obviously), opends60.dll (the db library), and msvcr71d.dll.
Hmmm... the VC runtime, of course - but was that installed on the target
machine? No, msvcr71d.dll wasn't as it's the debug version, so I did a
release build and then dumpbin confirmed that it now depended on msvcr71.dll
instead, which *was* installed on the target machine (in .NET framework's
directory) - but still to no avail! I thought I'd solved it then, but no. It
was not to be!

any further ideas greatly appreciated though!

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:e6******** ******@TK2MSFTN GP09.phx.gbl...
Can you create a setup package for the dll? Probably your best bet.

Jeff

"Bonj" <Bo**@discussio ns.microsoft.co m> wrote in message
news:8B******** *************** ***********@mic rosoft.com...
Hello

I am having an issue that I've been having for months, whereby I can't
get
*ANY* extended stored procedure to run on the PC other than the one I
developed it on.
The ones I have tested have all got exactly the same SQL server
configuration (default installation of MSDE). "sp_addextended proc"
appears

to
run without error, but on invoking the xp, I get the error:
Cannot load the DLL testproc.dll, or one of the DLLs it references.

Reason:
126(error not found).

I've posted to this effect before, and all I got suggested was check all

the
dependencies are installed on the target machine. Which is helpful to be
reminded of, but now I've checked that they all are. It still gives the

error
even if I don't add any code to the project - just build it with the

skeleton
that the wizard gives you.

Could somebody with SQL server possibly give it a test to see if they can

do
what I'm trying to do? It really is very simple what I'm trying to do...
I
must stress that this deployment nightmare *still* occurs with just the
wizard-generated skeleton... and other than being windows 2000 as opposed

to
XP, the target machines are identical to the development machine (well,
they're obviously not, but to my understanding they are.). It's just

nailing
down how they're different - any ideas?

I'm sure it's just some DLL I haven't taken into account, but I can't

think
what.
opends60.dll and all the standard runtime libraries such as msvcrt.dll

etc.
are all there.


Nov 17 '05 #3
Maybe you'll try it? Why look for other ideas till you do?

Create an install package, and install it.

Then move the dll to the binn directory, and run regsvr32 on it

Jeff

"Bonj" <benjtaylor at hotpop d0t com> wrote in message
news:#A******** ******@TK2MSFTN GP09.phx.gbl...
mmmm... maybe, i'll try it.
The DLL has to be installed into SQL server's binn directory though - would you know if there is an automatic way to do that?
There probably isn't, and I'll just have to hardcode
"%programfiles% \microsoft sql server\mssql\bi nn" as the install path... or
is it OK installed to a different path?
I did dumpbin /dependents on the DLL, and it gave me three dependencies:
kernel32.dll (obviously), opends60.dll (the db library), and msvcr71d.dll.
Hmmm... the VC runtime, of course - but was that installed on the target
machine? No, msvcr71d.dll wasn't as it's the debug version, so I did a
release build and then dumpbin confirmed that it now depended on msvcr71.dll instead, which *was* installed on the target machine (in .NET framework's
directory) - but still to no avail! I thought I'd solved it then, but no. It was not to be!

any further ideas greatly appreciated though!

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:e6******** ******@TK2MSFTN GP09.phx.gbl...
Can you create a setup package for the dll? Probably your best bet.

Jeff

"Bonj" <Bo**@discussio ns.microsoft.co m> wrote in message
news:8B******** *************** ***********@mic rosoft.com...
Hello

I am having an issue that I've been having for months, whereby I can't
get
*ANY* extended stored procedure to run on the PC other than the one I
developed it on.
The ones I have tested have all got exactly the same SQL server
configuration (default installation of MSDE). "sp_addextended proc"
appears

to
run without error, but on invoking the xp, I get the error:
Cannot load the DLL testproc.dll, or one of the DLLs it references.

Reason:
126(error not found).

I've posted to this effect before, and all I got suggested was check all
the
dependencies are installed on the target machine. Which is helpful to
be reminded of, but now I've checked that they all are. It still gives the

error
even if I don't add any code to the project - just build it with the

skeleton
that the wizard gives you.

Could somebody with SQL server possibly give it a test to see if they can do
what I'm trying to do? It really is very simple what I'm trying to
do... I
must stress that this deployment nightmare *still* occurs with just the
wizard-generated skeleton... and other than being windows 2000 as

opposed to
XP, the target machines are identical to the development machine (well,
they're obviously not, but to my understanding they are.). It's just

nailing
down how they're different - any ideas?

I'm sure it's just some DLL I haven't taken into account, but I can't

think
what.
opends60.dll and all the standard runtime libraries such as msvcrt.dll

etc.
are all there.



Nov 17 '05 #4
> Maybe you'll try it? Why look for other ideas till you do?

Well, I will. When I'm back at work.

Create an install package, and install it.
OK.

Then move the dll to the binn directory, and run regsvr32 on it
I thought this was only necessary for COM DLLs? Surely an extended stored
procedure isn't a COM DLL...?


Jeff

"Bonj" <benjtaylor at hotpop d0t com> wrote in message
news:#A******** ******@TK2MSFTN GP09.phx.gbl...
mmmm... maybe, i'll try it.
The DLL has to be installed into SQL server's binn directory though -

would
you know if there is an automatic way to do that?
There probably isn't, and I'll just have to hardcode
"%programfiles% \microsoft sql server\mssql\bi nn" as the install path...
or
is it OK installed to a different path?
I did dumpbin /dependents on the DLL, and it gave me three dependencies:
kernel32.dll (obviously), opends60.dll (the db library), and
msvcr71d.dll.
Hmmm... the VC runtime, of course - but was that installed on the target
machine? No, msvcr71d.dll wasn't as it's the debug version, so I did a
release build and then dumpbin confirmed that it now depended on

msvcr71.dll
instead, which *was* installed on the target machine (in .NET framework's
directory) - but still to no avail! I thought I'd solved it then, but no.

It
was not to be!

any further ideas greatly appreciated though!

"Jeff Dillon" <je**@removeeme rgencyreporting .com> wrote in message
news:e6******** ******@TK2MSFTN GP09.phx.gbl...
> Can you create a setup package for the dll? Probably your best bet.
>
> Jeff
>
> "Bonj" <Bo**@discussio ns.microsoft.co m> wrote in message
> news:8B******** *************** ***********@mic rosoft.com...
>> Hello
>>
>> I am having an issue that I've been having for months, whereby I can't
>> get
>> *ANY* extended stored procedure to run on the PC other than the one I
>> developed it on.
>> The ones I have tested have all got exactly the same SQL server
>> configuration (default installation of MSDE). "sp_addextended proc"
>> appears
> to
>> run without error, but on invoking the xp, I get the error:
>> Cannot load the DLL testproc.dll, or one of the DLLs it references.
> Reason:
>> 126(error not found).
>>
>> I've posted to this effect before, and all I got suggested was check all > the
>> dependencies are installed on the target machine. Which is helpful to be >> reminded of, but now I've checked that they all are. It still gives
>> the
> error
>> even if I don't add any code to the project - just build it with the
> skeleton
>> that the wizard gives you.
>>
>> Could somebody with SQL server possibly give it a test to see if they can > do
>> what I'm trying to do? It really is very simple what I'm trying to do... >> I
>> must stress that this deployment nightmare *still* occurs with just
>> the
>> wizard-generated skeleton... and other than being windows 2000 as opposed > to
>> XP, the target machines are identical to the development machine
>> (well,
>> they're obviously not, but to my understanding they are.). It's just
> nailing
>> down how they're different - any ideas?
>>
>> I'm sure it's just some DLL I haven't taken into account, but I can't
> think
>> what.
>> opends60.dll and all the standard runtime libraries such as msvcrt.dll
> etc.
>> are all there.
>
>



Nov 17 '05 #5
How did you ascertain all dependencies where there?

2 suggested tools are regmon from systems internals or depends.exe (from
Microsoft) in profile mode.

In my personal experience (of investigating a 100+ of these reports) I have
never seen this error turn out to be false. Of course there is always the
chance that this is the first one.

Ronald Laeremans
Visual C++

"Bonj" <Bo**@discussio ns.microsoft.co m> wrote in message
news:8B******** *************** ***********@mic rosoft.com...
Hello

I am having an issue that I've been having for months, whereby I can't get
*ANY* extended stored procedure to run on the PC other than the one I
developed it on.
The ones I have tested have all got exactly the same SQL server
configuration (default installation of MSDE). "sp_addextended proc" appears
to
run without error, but on invoking the xp, I get the error:
Cannot load the DLL testproc.dll, or one of the DLLs it references.
Reason:
126(error not found).

I've posted to this effect before, and all I got suggested was check all
the
dependencies are installed on the target machine. Which is helpful to be
reminded of, but now I've checked that they all are. It still gives the
error
even if I don't add any code to the project - just build it with the
skeleton
that the wizard gives you.

Could somebody with SQL server possibly give it a test to see if they can
do
what I'm trying to do? It really is very simple what I'm trying to do... I
must stress that this deployment nightmare *still* occurs with just the
wizard-generated skeleton... and other than being windows 2000 as opposed
to
XP, the target machines are identical to the development machine (well,
they're obviously not, but to my understanding they are.). It's just
nailing
down how they're different - any ideas?

I'm sure it's just some DLL I haven't taken into account, but I can't
think
what.
opends60.dll and all the standard runtime libraries such as msvcrt.dll
etc.
are all there.

Nov 17 '05 #6
> How did you ascertain all dependencies where there?

kernel32.dll must be for the computer to function at all.
opends60.dll was in SQL server's binn directory.
I found out that msvcr71.dll was in dotnet framework's installation
directory by doing
dir c:\msvcr71.dll /s /b
and got back

c:\WINDOWS\Micr osoft.NET\Frame work\v1.1.4322\ msvcr71.dll
In my personal experience (of investigating a 100+ of these reports) I have
never seen this error turn out to be false. Of course there is always the
chance that this is the first one.
No - it's not a "false" error. I am not sure, but I think at the moment that
the error is due to msvcr71.dll not being in SQL server's binn directory, as
I tried it *with* that, and it worked. So fingers crossed it still will when
I install it and test it

Ronald Laeremans
Visual C++

"Bonj" <Bo**@discussio ns.microsoft.co m> wrote in message
news:8B******** *************** ***********@mic rosoft.com...
Hello

I am having an issue that I've been having for months, whereby I can't get
*ANY* extended stored procedure to run on the PC other than the one I
developed it on.
The ones I have tested have all got exactly the same SQL server
configuration (default installation of MSDE). "sp_addextended proc" appears
to
run without error, but on invoking the xp, I get the error:
Cannot load the DLL testproc.dll, or one of the DLLs it references.
Reason:
126(error not found).

I've posted to this effect before, and all I got suggested was check all
the
dependencies are installed on the target machine. Which is helpful to be
reminded of, but now I've checked that they all are. It still gives the
error
even if I don't add any code to the project - just build it with the
skeleton
that the wizard gives you.

Could somebody with SQL server possibly give it a test to see if they can
do
what I'm trying to do? It really is very simple what I'm trying to do... I
must stress that this deployment nightmare *still* occurs with just the
wizard-generated skeleton... and other than being windows 2000 as opposed
to
XP, the target machines are identical to the development machine (well,
they're obviously not, but to my understanding they are.). It's just
nailing
down how they're different - any ideas?

I'm sure it's just some DLL I haven't taken into account, but I can't
think
what.
opends60.dll and all the standard runtime libraries such as msvcrt.dll
etc.
are all there.


Nov 17 '05 #7
Using either of the tools I mentioned is probably a faster way (it shows
what is being probed for where) than trial and error. ;-)

Ronald

"Bonj" <Bo**@discussio ns.microsoft.co m> wrote in message
news:2C******** *************** ***********@mic rosoft.com...
How did you ascertain all dependencies where there?


kernel32.dll must be for the computer to function at all.
opends60.dll was in SQL server's binn directory.
I found out that msvcr71.dll was in dotnet framework's installation
directory by doing
dir c:\msvcr71.dll /s /b
and got back

c:\WINDOWS\Micr osoft.NET\Frame work\v1.1.4322\ msvcr71.dll
In my personal experience (of investigating a 100+ of these reports) I
have
never seen this error turn out to be false. Of course there is always the
chance that this is the first one.


No - it's not a "false" error. I am not sure, but I think at the moment
that
the error is due to msvcr71.dll not being in SQL server's binn directory,
as
I tried it *with* that, and it worked. So fingers crossed it still will
when
I install it and test it

Ronald Laeremans
Visual C++

"Bonj" <Bo**@discussio ns.microsoft.co m> wrote in message
news:8B******** *************** ***********@mic rosoft.com...
> Hello
>
> I am having an issue that I've been having for months, whereby I can't
> get
> *ANY* extended stored procedure to run on the PC other than the one I
> developed it on.
> The ones I have tested have all got exactly the same SQL server
> configuration (default installation of MSDE). "sp_addextended proc"
> appears
> to
> run without error, but on invoking the xp, I get the error:
> Cannot load the DLL testproc.dll, or one of the DLLs it references.
> Reason:
> 126(error not found).
>
> I've posted to this effect before, and all I got suggested was check
> all
> the
> dependencies are installed on the target machine. Which is helpful to
> be
> reminded of, but now I've checked that they all are. It still gives the
> error
> even if I don't add any code to the project - just build it with the
> skeleton
> that the wizard gives you.
>
> Could somebody with SQL server possibly give it a test to see if they
> can
> do
> what I'm trying to do? It really is very simple what I'm trying to
> do... I
> must stress that this deployment nightmare *still* occurs with just the
> wizard-generated skeleton... and other than being windows 2000 as
> opposed
> to
> XP, the target machines are identical to the development machine (well,
> they're obviously not, but to my understanding they are.). It's just
> nailing
> down how they're different - any ideas?
>
> I'm sure it's just some DLL I haven't taken into account, but I can't
> think
> what.
> opends60.dll and all the standard runtime libraries such as msvcrt.dll
> etc.
> are all there.


Nov 17 '05 #8
As Ronald says, DEPENDS.EXE is the best way to attack this problem, it is
the only thing I ever use in these cases.
See http://www.dependencywalker.com/

Ge***@SQLDev.Ne t

Please reply only to the newsgroups.
This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use.
Copyright © SQLDev.Net 1991-2004 All rights reserved.

"Ronald Laeremans [MSFT]" <ro*****@online .microsoft.com> wrote in message
news:%2******** ********@tk2msf tngp13.phx.gbl. ..
Using either of the tools I mentioned is probably a faster way (it shows
what is being probed for where) than trial and error. ;-)

Ronald

"Bonj" <Bo**@discussio ns.microsoft.co m> wrote in message
news:2C******** *************** ***********@mic rosoft.com...
How did you ascertain all dependencies where there?


kernel32.dll must be for the computer to function at all.
opends60.dll was in SQL server's binn directory.
I found out that msvcr71.dll was in dotnet framework's installation
directory by doing
dir c:\msvcr71.dll /s /b
and got back

c:\WINDOWS\Micr osoft.NET\Frame work\v1.1.4322\ msvcr71.dll
In my personal experience (of investigating a 100+ of these reports) I
have
never seen this error turn out to be false. Of course there is always
the
chance that this is the first one.


No - it's not a "false" error. I am not sure, but I think at the moment
that
the error is due to msvcr71.dll not being in SQL server's binn directory,
as
I tried it *with* that, and it worked. So fingers crossed it still will
when
I install it and test it

Ronald Laeremans
Visual C++

"Bonj" <Bo**@discussio ns.microsoft.co m> wrote in message
news:8B******** *************** ***********@mic rosoft.com...
> Hello
>
> I am having an issue that I've been having for months, whereby I can't
> get
> *ANY* extended stored procedure to run on the PC other than the one I
> developed it on.
> The ones I have tested have all got exactly the same SQL server
> configuration (default installation of MSDE). "sp_addextended proc"
> appears
> to
> run without error, but on invoking the xp, I get the error:
> Cannot load the DLL testproc.dll, or one of the DLLs it references.
> Reason:
> 126(error not found).
>
> I've posted to this effect before, and all I got suggested was check
> all
> the
> dependencies are installed on the target machine. Which is helpful to
> be
> reminded of, but now I've checked that they all are. It still gives
> the
> error
> even if I don't add any code to the project - just build it with the
> skeleton
> that the wizard gives you.
>
> Could somebody with SQL server possibly give it a test to see if they
> can
> do
> what I'm trying to do? It really is very simple what I'm trying to
> do... I
> must stress that this deployment nightmare *still* occurs with just
> the
> wizard-generated skeleton... and other than being windows 2000 as
> opposed
> to
> XP, the target machines are identical to the development machine
> (well,
> they're obviously not, but to my understanding they are.). It's just
> nailing
> down how they're different - any ideas?
>
> I'm sure it's just some DLL I haven't taken into account, but I can't
> think
> what.
> opends60.dll and all the standard runtime libraries such as msvcrt.dll
> etc.
> are all there.


Nov 17 '05 #9
"Bonj" <Bo**@discussio ns.microsoft.co m> wrote in message news:<2C******* *************** ************@mi crosoft.com>...
How did you ascertain all dependencies where there?


kernel32.dll must be for the computer to function at all.
opends60.dll was in SQL server's binn directory.
I found out that msvcr71.dll was in dotnet framework's installation
directory by doing
dir c:\msvcr71.dll /s /b
and got back

c:\WINDOWS\Micr osoft.NET\Frame work\v1.1.4322\ msvcr71.dll


Ok, but is this directory in the PATH of SQL Server? See the
LoadLibrary documentation to learn how and where exactly DLLs are
searched.

Another idea is that there may be a dynamic dependency with another
DLL (that is loaded - directly or indirectly - by LoadLibrary).
Dumpbin won't give you these dependencies : you need to check them at
run-time (with depends in profinlg mode for example, as already
suggested).

Arnaud
MVP - VC
Nov 17 '05 #10

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

Similar topics

3
3948
by: Matik | last post by:
Hi, I alredy tried to search this problem in last posts, but I couldn't find the answer. I try to access via Extended SP the method in a dll. I registered the dll as a ExSP, with a name of method. But after calling it in T-SQL, I became such a error message:
3
2387
by: Bruce | last post by:
Since DBlib is no longer the suggested method for connecting back to sql server from an Extended Stored Procedure, has anyone built any extended stored procedures that use other connection methods like OLEDB? Has anyone seen links to any sample extended stored procedures that use something other than db-lib? In particular I am interested in something that connects back to the database as the user who invoked the extended stored...
1
1753
by: smauldin | last post by:
What is the overhead of using extended stored procedures? I created a table with 500,000 rows. 1) I ran a select on two columns and it runs in about 5 seconds. 2) I ran a select on one column and called an UDF (it returns a constant string) and it takes 10 seconds. 3) I ran a select on one column and called a UDF that calls an extended stored procedure that returns a string and it takes 65 seconds. I also tried running test 3 with 4...
1
5612
by: scanner2001 | last post by:
Here is what I would like to be able to do, Have an SQL extended stored procedure to do file copy, delete, and rename(move) procedures. I have written the code in C# to do this, in the form of a simple app, and it contains all of the functionality, error handling, etc. that I need. I would like to use the extended stored procedure framework from visual studio, but I am unsure how to merge these two together. I do "not" want to make a dll,...
0
1140
by: scanner2001 | last post by:
I am writing an extended stored procedure in c++ 7. As I have been testing, I am able to run this on my local box, my local sql server. When I register the extended stored procedure on a different test sql server, and try to run it, I get the following error: ODBC: Msg 0, Level 16, State 1 Cannot load the DLL xp_test.DLL, or one of the DLLs it references. Reason: 126(The specified module could not be found.). Both systems are very close...
4
2082
by: icebrrrg | last post by:
Hi. I have some functionality in a C# DLL that I would like to be able to call from inside SQLServer. I know this was possible in C++, using an Extended Stored Procedure, but I haven't been able to find a similar process for C#. Does anyone know if such an animal exists? I believe I could call the C# routines from within a C++ extended stored procedure wrapper, but I stink as a C++ programmer (pointers? what?) and don't want to learn C++...
0
1675
by: SSW | last post by:
Hi: I'm trying to run Extended stored procedure, which is written in VC++ in window 2000 Professional. It works fine. But when I run it in windows 2003 I get following error ODBC: Msg 0, Level 16, State 1 Cannot load the DLL GenerateIdentity.dll, or one of the DLLs it references. Reason: 126(The specified module could not be found.).
23
1943
by: Bonj | last post by:
Hi I'm looking to write an extended stored procedure, the job of which will basically to read data from one table, process it using a COM object, and write (insert) rows out to another table. I don't really know where to start with finding the functions necessary to read from an existing table. Can anyone be so kind as to point me in the right direction? Thanks very much
3
1850
by: ppateel | last post by:
Hi, First I would like to apologize for cross posting in three groups as I did not know which one would be the appropriate group. If some one points me to the correct one I will use that in the future. I am trying to findout the scalabilty of an user written extended store procedure. I have created a dll using a C program (modified/plagarized from some of the examples) . The main function of this extended SP is to act as a passthru to...
0
9715
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9595
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
10600
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...
0
9175
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
7642
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
6867
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
5535
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
5673
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
3002
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.