473,761 Members | 1,784 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

PtrToStructure for unknown structure?

Hi,

Here, sample code where a byte array is used to fill a particular structure:

[...]

fs = File.OpenRead(p ath); // FileStream

BITMAPFILEHEADE R bfh = new BITMAPFILEHEADE R();
b = new byte[(int)bfh.Size()];

fs.Read(b, 0, b.Length);
fixed (byte* pb = &b[0])
bfh = (BITMAPFILEHEAD ER)Marshal.PtrT oStructure((Int Ptr)pb, typeof(BITMAPFI LEHEADER));

[...]

What I would like to have is a function capable of accepting an [in] byte array and an [out] unkown structure type.
Is that possible?

Thanks in advance,

Carles
Jun 27 '08 #1
6 4876
Using a generic method that takes a type parameter:
public static unsafe T ByteArrayToStru cture<T( byte [ ] array )
where T : struct
{
fixed ( byte* pb = &b [ 0 ] )
return ( T ) Marshal.PtrToSt ructure( (IntPtr)pb, typeof(T));
}

If you are using unsafe anyway, you dont need to use Marshal if you dont
want to,
you could cast it old C++ style if you want. Probably more efficient

Dennis Myren
"carles" <ca*********@gm ail.comwrote in message
news:eo******** ******@TK2MSFTN GP02.phx.gbl...
Hi,

Here, sample code where a byte array is used to fill a particular structure:

[...]

fs = File.OpenRead(p ath); // FileStream

BITMAPFILEHEADE R bfh = new BITMAPFILEHEADE R();
b = new byte[(int)bfh.Size()];

fs.Read(b, 0, b.Length);
fixed (byte* pb = &b[0])
bfh =
(BITMAPFILEHEAD ER)Marshal.PtrT oStructure((Int Ptr)pb,
typeof(BITMAPFI LEHEADER));

[...]

What I would like to have is a function capable of accepting an [in] byte
array and an [out] unkown structure type.
Is that possible?

Thanks in advance,

Carles
Jun 27 '08 #2
Thanks a lot,

New on "C#" (and C)... could you please tell me how to do it old C++ style?

Carles

"baretta" <ba******@gmail .comha escrit al missatge del grup de discussió:
ux************* @TK2MSFTNGP04.p hx.gbl...
Using a generic method that takes a type parameter:
public static unsafe T ByteArrayToStru cture<T( byte [ ] array )
where T : struct
{
fixed ( byte* pb = &b [ 0 ] )
return ( T ) Marshal.PtrToSt ructure( (IntPtr)pb, typeof(T));
}

If you are using unsafe anyway, you dont need to use Marshal if you dont
want to,
you could cast it old C++ style if you want. Probably more efficient

Dennis Myren
"carles" <ca*********@gm ail.comwrote in message
news:eo******** ******@TK2MSFTN GP02.phx.gbl...
Hi,

Here, sample code where a byte array is used to fill a particular
structure:

[...]

fs = File.OpenRead(p ath); // FileStream

BITMAPFILEHEADE R bfh = new BITMAPFILEHEADE R();
b = new byte[(int)bfh.Size()];

fs.Read(b, 0, b.Length);
fixed (byte* pb = &b[0])
bfh =
(BITMAPFILEHEAD ER)Marshal.PtrT oStructure((Int Ptr)pb,
typeof(BITMAPFI LEHEADER));

[...]

What I would like to have is a function capable of accepting an [in] byte
array and an [out] unkown structure type.
Is that possible?

Thanks in advance,

Carles

Jun 27 '08 #3
I am sorry if i was misleading.
Actually it is not possible to use a C-style approach,
it would only work with structure whose types we know during compile time.

This approach was what i was thinking about(without really thinking):
public static unsafe T ByteArrayToStru cture<T( byte [ ] buffer )
where T : struct
{
fixed ( byte* pBuff = buffer )
{
return *( T* ) pBuff;
}
}

But actually, although we limit T to being a struct using where keyword,
we cannot at this point guarantee that a pointer to this type can be
obtained at runtime.
It can only be obtained if a struct has only primitive fields, and this we
cant guarantee at this point.
If we would change the return value to a known struct made up completely of
primitives it would compile.
This one is totally managed. At least it compiles:
public static T ByteArrayToStru cture<T( byte [ ] buffer )
where T : struct
{
IntPtr ptr = Marshal.AllocHG lobal ( buffer.Length );
Marshal.Copy ( buffer, 0x0, ptr, buffer.Length );
T ret = ( T ) Marshal.PtrToSt ructure ( ptr, typeof ( T ) );

Marshal.FreeHGl obal ( ptr );
return ret;
}

and you will use it like this:
BITMAPFILEHEADE R header = ByteArrayToStru cture<BITMAPFIL EHEADER(
yourByteArray );
I would recommend modifying ByteArrayToStru cture, so that it takes the
System.IO.Strea m as parameter rather than the byte array.
Otherwise, it is assumed that the buffer passed in is of the correct size
already(which is the size of the struct).
It is better if this is handled by the function.

So, this is the final result:
public static T ReadStructure<T ( Stream stream )
where T : struct
{
byte [ ] buff = new byte [ Marshal.SizeOf ( typeof ( T ) ) ];
IntPtr ptr = Marshal.AllocHG lobal ( buff.Length );
Marshal.Copy ( buff, 0x0, ptr, buff.Length );
T ret = ( T ) Marshal.PtrToSt ructure ( ptr, typeof ( T ) );

Marshal.FreeHGl obal ( ptr );
return ret;
}
Dennis Myren
"carles" <ca*********@gm ail.comskrev i melding
news:eK******** ******@TK2MSFTN GP06.phx.gbl...
Thanks a lot,

New on "C#" (and C)... could you please tell me how to do it old C++
style?

Carles

"baretta" <ba******@gmail .comha escrit al missatge del grup de
discussió: ux************* @TK2MSFTNGP04.p hx.gbl...
>Using a generic method that takes a type parameter:
public static unsafe T ByteArrayToStru cture<T( byte [ ] array )
where T : struct
{
fixed ( byte* pb = &b [ 0 ] )
return ( T ) Marshal.PtrToSt ructure( (IntPtr)pb, typeof(T));
}

If you are using unsafe anyway, you dont need to use Marshal if you dont
want to,
you could cast it old C++ style if you want. Probably more efficient

Dennis Myren
"carles" <ca*********@gm ail.comwrote in message
news:eo******* *******@TK2MSFT NGP02.phx.gbl.. .
Hi,

Here, sample code where a byte array is used to fill a particular
structure:

[...]

fs = File.OpenRead(p ath); // FileStream

BITMAPFILEHEADE R bfh = new BITMAPFILEHEADE R();
b = new byte[(int)bfh.Size()];

fs.Read(b, 0, b.Length);
fixed (byte* pb = &b[0])
bfh =
(BITMAPFILEHEA DER)Marshal.Ptr ToStructure((In tPtr)pb,
typeof(BITMAPF ILEHEADER));

[...]

What I would like to have is a function capable of accepting an [in] byte
array and an [out] unkown structure type.
Is that possible?

Thanks in advance,

Carles

Jun 27 '08 #4
Thanks again.
Really enlightening answer.

One thing: Marshal.SizeOf( ) seems to return 32-bit (depends on what?)
aligned sizes.
In my case, I sequentially read several structures from file, so I need to
exactly read structure byte-lenghts (ie, BITMAPFILEHEADE R is 14
byte-lenght). I decided to add a static Size() function for each structure
definition, returning its byte-lenght size. Error handling is done at time
to read from file.

So, another question could be next: how to determine byte-length size of the
passed (unknown) structure. This would allow to compact ByteArrayToStru cture
to your suggested final approach, sizing buffer and reading from stream
inside same function.

Carles

"baretta" <ba******@gmail .comha escrit al missatge del grup de discussió:
Oz************* @TK2MSFTNGP05.p hx.gbl...
>I am sorry if i was misleading.
Actually it is not possible to use a C-style approach,
it would only work with structure whose types we know during compile time.

This approach was what i was thinking about(without really thinking):
public static unsafe T ByteArrayToStru cture<T( byte [ ] buffer )
where T : struct
{
fixed ( byte* pBuff = buffer )
{
return *( T* ) pBuff;
}
}

But actually, although we limit T to being a struct using where keyword,
we cannot at this point guarantee that a pointer to this type can be
obtained at runtime.
It can only be obtained if a struct has only primitive fields, and this we
cant guarantee at this point.
If we would change the return value to a known struct made up completely
of primitives it would compile.
This one is totally managed. At least it compiles:
public static T ByteArrayToStru cture<T( byte [ ] buffer )
where T : struct
{
IntPtr ptr = Marshal.AllocHG lobal ( buffer.Length );
Marshal.Copy ( buffer, 0x0, ptr, buffer.Length );
T ret = ( T ) Marshal.PtrToSt ructure ( ptr, typeof ( T ) );

Marshal.FreeHGl obal ( ptr );
return ret;
}

and you will use it like this:
BITMAPFILEHEADE R header = ByteArrayToStru cture<BITMAPFIL EHEADER(
yourByteArray );
I would recommend modifying ByteArrayToStru cture, so that it takes the
System.IO.Strea m as parameter rather than the byte array.
Otherwise, it is assumed that the buffer passed in is of the correct size
already(which is the size of the struct).
It is better if this is handled by the function.

So, this is the final result:
public static T ReadStructure<T ( Stream stream )
where T : struct
{
byte [ ] buff = new byte [ Marshal.SizeOf ( typeof ( T ) ) ];
IntPtr ptr = Marshal.AllocHG lobal ( buff.Length );
Marshal.Copy ( buff, 0x0, ptr, buff.Length );
T ret = ( T ) Marshal.PtrToSt ructure ( ptr, typeof ( T ) );

Marshal.FreeHGl obal ( ptr );
return ret;
}
Dennis Myren
"carles" <ca*********@gm ail.comskrev i melding
news:eK******** ******@TK2MSFTN GP06.phx.gbl...
>Thanks a lot,

New on "C#" (and C)... could you please tell me how to do it old C++
style?

Carles

"baretta" <ba******@gmail .comha escrit al missatge del grup de
discussió: ux************* @TK2MSFTNGP04.p hx.gbl...
>>Using a generic method that takes a type parameter:
public static unsafe T ByteArrayToStru cture<T( byte [ ] array )
where T : struct
{
fixed ( byte* pb = &b [ 0 ] )
return ( T ) Marshal.PtrToSt ructure( (IntPtr)pb, typeof(T));
}

If you are using unsafe anyway, you dont need to use Marshal if you dont
want to,
you could cast it old C++ style if you want. Probably more efficient

Dennis Myren
"carles" <ca*********@gm ail.comwrote in message
news:eo****** ********@TK2MSF TNGP02.phx.gbl. ..
Hi,

Here, sample code where a byte array is used to fill a particular
structure:

[...]

fs = File.OpenRead(p ath); // FileStream

BITMAPFILEHEADE R bfh = new BITMAPFILEHEADE R();
b = new byte[(int)bfh.Size()];

fs.Read(b, 0, b.Length);
fixed (byte* pb = &b[0])
bfh =
(BITMAPFILEHE ADER)Marshal.Pt rToStructure((I ntPtr)pb,
typeof(BITMAP FILEHEADER));

[...]

What I would like to have is a function capable of accepting an [in]
byte array and an [out] unkown structure type.
Is that possible?

Thanks in advance,

Carles


Jun 27 '08 #5
At structure definition, for example:

[StructLayout(La youtKind.Sequen tial, Pack=1)]
private struct BITMAPFILEHEADE R
{
public ushort bfType;
public uint bfSize;
public short bfReserved1;
public short bfReserved2;
public uint bfOffBits;
}

adding that 'Pack=1 specification', no padding is done, and 'packed' size is
returned, 14.
Hope nothing more has to be taken into account.

Carles
"carles" <ca*********@gm ail.comha escrit al missatge del grup de
discussió: %2************* ***@TK2MSFTNGP0 5.phx.gbl...
Thanks again.
Really enlightening answer.

One thing: Marshal.SizeOf( ) seems to return 32-bit (depends on what?)
aligned sizes.
In my case, I sequentially read several structures from file, so I need to
exactly read structure byte-lenghts (ie, BITMAPFILEHEADE R is 14
byte-lenght). I decided to add a static Size() function for each structure
definition, returning its byte-lenght size. Error handling is done at time
to read from file.

So, another question could be next: how to determine byte-length size of
the passed (unknown) structure. This would allow to compact
ByteArrayToStru cture to your suggested final approach, sizing buffer and
reading from stream inside same function.

Carles

"baretta" <ba******@gmail .comha escrit al missatge del grup de
discussió: Oz************* @TK2MSFTNGP05.p hx.gbl...
>>I am sorry if i was misleading.
Actually it is not possible to use a C-style approach,
it would only work with structure whose types we know during compile
time.

This approach was what i was thinking about(without really thinking):
public static unsafe T ByteArrayToStru cture<T( byte [ ] buffer )
where T : struct
{
fixed ( byte* pBuff = buffer )
{
return *( T* ) pBuff;
}
}

But actually, although we limit T to being a struct using where keyword,
we cannot at this point guarantee that a pointer to this type can be
obtained at runtime.
It can only be obtained if a struct has only primitive fields, and this
we cant guarantee at this point.
If we would change the return value to a known struct made up completely
of primitives it would compile.
This one is totally managed. At least it compiles:
public static T ByteArrayToStru cture<T( byte [ ] buffer )
where T : struct
{
IntPtr ptr = Marshal.AllocHG lobal ( buffer.Length );
Marshal.Copy ( buffer, 0x0, ptr, buffer.Length );
T ret = ( T ) Marshal.PtrToSt ructure ( ptr, typeof ( T ) );

Marshal.FreeHGl obal ( ptr );
return ret;
}

and you will use it like this:
BITMAPFILEHEAD ER header = ByteArrayToStru cture<BITMAPFIL EHEADER(
yourByteArra y );
I would recommend modifying ByteArrayToStru cture, so that it takes the
System.IO.Stre am as parameter rather than the byte array.
Otherwise, it is assumed that the buffer passed in is of the correct size
already(whic h is the size of the struct).
It is better if this is handled by the function.

So, this is the final result:
public static T ReadStructure<T ( Stream stream )
where T : struct
{
byte [ ] buff = new byte [ Marshal.SizeOf ( typeof ( T ) ) ];
IntPtr ptr = Marshal.AllocHG lobal ( buff.Length );
Marshal.Copy ( buff, 0x0, ptr, buff.Length );
T ret = ( T ) Marshal.PtrToSt ructure ( ptr, typeof ( T ) );

Marshal.FreeHGl obal ( ptr );
return ret;
}
Dennis Myren
"carles" <ca*********@gm ail.comskrev i melding
news:eK******* *******@TK2MSFT NGP06.phx.gbl.. .
>>Thanks a lot,

New on "C#" (and C)... could you please tell me how to do it old C++
style?

Carles

"baretta" <ba******@gmail .comha escrit al missatge del grup de
discussió: ux************* @TK2MSFTNGP04.p hx.gbl...
Using a generic method that takes a type parameter:
public static unsafe T ByteArrayToStru cture<T( byte [ ] array )
where T : struct
{
fixed ( byte* pb = &b [ 0 ] )
return ( T ) Marshal.PtrToSt ructure( (IntPtr)pb, typeof(T));
}

If you are using unsafe anyway, you dont need to use Marshal if you
dont want to,
you could cast it old C++ style if you want. Probably more efficient

Dennis Myren
"carles" <ca*********@gm ail.comwrote in message
news:eo***** *********@TK2MS FTNGP02.phx.gbl ...
Hi,

Here, sample code where a byte array is used to fill a particular
structure:

[...]

fs = File.OpenRead(p ath); // FileStream

BITMAPFILEHEADE R bfh = new BITMAPFILEHEADE R();
b = new byte[(int)bfh.Size()];

fs.Read(b, 0, b.Length);
fixed (byte* pb = &b[0])
bfh =
(BITMAPFILEH EADER)Marshal.P trToStructure(( IntPtr)pb,
typeof(BITMA PFILEHEADER));

[...]

What I would like to have is a function capable of accepting an [in]
byte array and an [out] unkown structure type.
Is that possible?

Thanks in advance,

Carles


Jun 27 '08 #6
That is correct, i have used both Marshal.SizeOf and the unsafe keyword
sizeof myself to retrieve sizes of structures correctly.
All my structures has the Pack=1 property set.

You should be OK.


"carles" <ca*********@gm ail.comwrote in message
news:uX******** ******@TK2MSFTN GP05.phx.gbl...
At structure definition, for example:

[StructLayout(La youtKind.Sequen tial, Pack=1)]
private struct BITMAPFILEHEADE R
{
public ushort bfType;
public uint bfSize;
public short bfReserved1;
public short bfReserved2;
public uint bfOffBits;
}

adding that 'Pack=1 specification', no padding is done, and 'packed' size
is returned, 14.
Hope nothing more has to be taken into account.

Carles
"carles" <ca*********@gm ail.comha escrit al missatge del grup de
discussió: %2************* ***@TK2MSFTNGP0 5.phx.gbl...
>Thanks again.
Really enlightening answer.

One thing: Marshal.SizeOf( ) seems to return 32-bit (depends on what?)
aligned sizes.
In my case, I sequentially read several structures from file, so I need
to exactly read structure byte-lenghts (ie, BITMAPFILEHEADE R is 14
byte-lenght). I decided to add a static Size() function for each
structure definition, returning its byte-lenght size. Error handling is
done at time to read from file.

So, another question could be next: how to determine byte-length size of
the passed (unknown) structure. This would allow to compact
ByteArrayToStr ucture to your suggested final approach, sizing buffer and
reading from stream inside same function.

Carles

"baretta" <ba******@gmail .comha escrit al missatge del grup de
discussió: Oz************* @TK2MSFTNGP05.p hx.gbl...
>>>I am sorry if i was misleading.
Actually it is not possible to use a C-style approach,
it would only work with structure whose types we know during compile
time.

This approach was what i was thinking about(without really thinking):
public static unsafe T ByteArrayToStru cture<T( byte [ ] buffer )
where T : struct
{
fixed ( byte* pBuff = buffer )
{
return *( T* ) pBuff;
}
}

But actually, although we limit T to being a struct using where keyword,
we cannot at this point guarantee that a pointer to this type can be
obtained at runtime.
It can only be obtained if a struct has only primitive fields, and this
we cant guarantee at this point.
If we would change the return value to a known struct made up completely
of primitives it would compile.
This one is totally managed. At least it compiles:
public static T ByteArrayToStru cture<T( byte [ ] buffer )
where T : struct
{
IntPtr ptr = Marshal.AllocHG lobal ( buffer.Length );
Marshal.Copy ( buffer, 0x0, ptr, buffer.Length );
T ret = ( T ) Marshal.PtrToSt ructure ( ptr, typeof ( T ) );

Marshal.FreeHGl obal ( ptr );
return ret;
}

and you will use it like this:
BITMAPFILEHEA DER header = ByteArrayToStru cture<BITMAPFIL EHEADER(
yourByteArr ay );
I would recommend modifying ByteArrayToStru cture, so that it takes the
System.IO.Str eam as parameter rather than the byte array.
Otherwise, it is assumed that the buffer passed in is of the correct
size already(which is the size of the struct).
It is better if this is handled by the function.

So, this is the final result:
public static T ReadStructure<T ( Stream stream )
where T : struct
{
byte [ ] buff = new byte [ Marshal.SizeOf ( typeof ( T ) ) ];
IntPtr ptr = Marshal.AllocHG lobal ( buff.Length );
Marshal.Copy ( buff, 0x0, ptr, buff.Length );
T ret = ( T ) Marshal.PtrToSt ructure ( ptr, typeof ( T ) );

Marshal.FreeHGl obal ( ptr );
return ret;
}
Dennis Myren
"carles" <ca*********@gm ail.comskrev i melding
news:eK****** ********@TK2MSF TNGP06.phx.gbl. ..
Thanks a lot,

New on "C#" (and C)... could you please tell me how to do it old C++
style?

Carles

"baretta" <ba******@gmail .comha escrit al missatge del grup de
discussió: ux************* @TK2MSFTNGP04.p hx.gbl...
Using a generic method that takes a type parameter:
public static unsafe T ByteArrayToStru cture<T( byte [ ] array )
where T : struct
{
fixed ( byte* pb = &b [ 0 ] )
return ( T ) Marshal.PtrToSt ructure( (IntPtr)pb, typeof(T));
}
>
If you are using unsafe anyway, you dont need to use Marshal if you
dont want to,
you could cast it old C++ style if you want. Probably more efficient
>
Dennis Myren
>
>
"carles" <ca*********@gm ail.comwrote in message
news:eo**** **********@TK2M SFTNGP02.phx.gb l...
Hi,
>
Here, sample code where a byte array is used to fill a particular
structure :
>
[...]
>
fs = File.OpenRead(p ath); // FileStream
>
BITMAPFILEHEADE R bfh = new BITMAPFILEHEADE R();
b = new byte[(int)bfh.Size()];
>
fs.Read(b, 0, b.Length);
fixed (byte* pb = &b[0])
bfh =
(BITMAPFILE HEADER)Marshal. PtrToStructure( (IntPtr)pb,
typeof(BITM APFILEHEADER));
>
[...]
>
What I would like to have is a function capable of accepting an [in]
byte array and an [out] unkown structure type.
Is that possible?
>
Thanks in advance,
>
Carles
>



Jun 27 '08 #7

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

Similar topics

3
3709
by: Mateusz [PEYN] Adamus | last post by:
Hi First of all please let me know if there is some other, more suitable group for this news - TIA :-) Now, my problem. I'm writing an C# application in which I'm using some functions from DLL. This dll has been written in C. One of these functions returns as a result a structure, in example:
1
3974
by: alfacom | last post by:
Hi, I have two C++ structures like these : typedef struct answer_series_item { int32_t contract_size_i; int32_t price_quot_factor_i; char ins_id_s ; char isin_code_s ; uint8_t suspended_c;
1
3476
by: Ken Allen | last post by:
The documentation is not clear on the exact behaviour of the Marshal.PtrToStructure method and whether it copies the contents of the IntPtr region to a new managed object or whether it creates the managed object to reference the same region of memory. Question 1: should I call Marshal.FreeCoTaskMem after calling Marshal.PtrToStructure? Question 2: the Marshal.PtrToStructure method seems to create an object for the structure -- should...
2
4346
by: Andre | last post by:
Hi, I have a question about Marshal.PtrToStructure method. I have a function Func() in unmanaged C++ which returns a pointer to a structure Str which is held on the unmanged site: Str* a = Func(); //unmanaged function On the managed site I wrote it like this:
3
4278
by: Tyron | last post by:
I want to get the Position of the Mouse when the User click in the non-client area of a Window. WM_NCLBUTTONDOWN seems to be the right Message for this - and the LParam contains a POINTS struct of the Mouse Position (so the speak on MSDN. http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui/windowsuserinterface/userinput/mouseinput/mouseinputreference/mouseinputmessages/wm_nclbuttondown.asp]) But when I try to...
4
3554
by: C Learner | last post by:
Hi, I have an application which is using a dll written in C++. When the program go to the function below, it would raise an NullReferenceException at the line of PtrToStructure. public bool ServerCallBack(IntPtr log) { DB_T acclog = (DB_T)Marshal.PtrToStructure(log, typeof(DB_T)); }
1
3799
by: Jay | last post by:
Hi, In my application, C++ dll is posting some message,which is processed by a form in C# ,where I use Message.Lparam to convert it in structure using Marshal.PtrToStructure() mehtod ,but it throws ArgumentException. can anybody give sample code for Marshal.PtrToStructure() .
1
2750
by: spamacon | last post by:
Hello, I have a strange situation using .Net FW 1.1. I want to use Marshal.PtrToStructure to fill the structure below. The first 3 fields get filled correctly: ulStruct describes how big the structure is in bytes (120 bytes, assuming 32-bit IntPtrs), pWmSnapshot gets 0, and usNumWmSnapshots gets 0. The next field, pICView, is a pointer to another structure, and gets filled with some garbage location, which is actually the lower 2 bytes...
1
1958
by: Suja | last post by:
Hi All, I have a WIN32 DLL which pass some information to a .NET based application via the windows messages. When I try to convert this data in the managed code, I am getting junk data. Does any have any clue on whats wrong?. Here is the code snippet. //From WIN32 DLL, I am passing the TOTAL_STATUS structure as wParam of the message
0
9554
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
9377
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
10136
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
9989
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...
1
9925
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
9811
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...
1
7358
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
5405
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2788
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.