473,503 Members | 1,772 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Screen resolution

Hi

I'm developing a webpage that needs to include a different stylesheet
depending on the screen resolution.

I know that I could read the resolution in javascript and then do some
sort of stylesheet switcher as part of the onload event but I would
rather link in the correct stylesheet for the resolution in the first
place.

Is there anyway of reading the screen resolution using PHP?

Please don't flame me about "screen resolution being useless as not
everyone browses in a maximised window". This is for intranet
application where I know the browser will be IE6 with javascript enabled
running in full screen mode and toolbars hidden. I also know the three
possible screen resolutions that it could be.
--
Steve Wright
Oct 16 '06 #1
9 3886
>Please don't flame me about "screen resolution being useless as not
>everyone browses in a maximised window". This is for intranet
application where I know the browser will be IE6 with javascript enabled
running in full screen mode and toolbars hidden. I also know the three
possible screen resolutions that it could be.
Use code to translate the IP address of the workstation into the screen
resolution. Granted, this may require some manual collecting of data first.
Oct 16 '06 #2
On Mon, 16 Oct 2006 23:50:50 +0100, in comp.lang.php Steve Wright
<us****@wrightnet.demon.co.uk>
<4R**************@wrightnet.demon.co.ukwrote:
>| Hi
|
| I'm developing a webpage that needs to include a different stylesheet
| depending on the screen resolution.
|
| I know that I could read the resolution in javascript and then do some
| sort of stylesheet switcher as part of the onload event but I would
| rather link in the correct stylesheet for the resolution in the first
| place.
|
| Is there anyway of reading the screen resolution using PHP?
Not really.
>| Please don't flame me about "screen resolution being useless as not
| everyone browses in a maximised window". This is for intranet
| application where I know the browser will be IE6 with javascript enabled
| running in full screen mode and toolbars hidden. I also know the three
| possible screen resolutions that it could be.
Let the browser do the work (like it should) and let the user select
what option that they want.
-------------------------------------------------------------------
<head>
<link rel="stylesheet" type="text/css" href="small.css" title="small"
/>
<link rel="alternate stylesheet" type="text/css" href="medium.css"
title="medium" />
<link rel="alternate stylesheet" type="text/css" href="large.css"
title="large" />

<script type="text/javascript">
function setActiveStyleSheet(title)
{
var i, a, main;
for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
if(a.getAttribute("rel").indexOf("style") != -1 &&
a.getAttribute("title")) {
a.disabled = true;
if(a.getAttribute("title") == title) a.disabled = false;
}
}
}
</head>
<body>
<p><strong>Screen Size</strong><br />
<select name="lbCSS" id="lbCSS"
onchange="setActiveStyleSheet(this.value);">
<option value="small">Small</option>
<option value="medium">Medium</option>
<option value="large">Large</option>
</select>
</body>
----------------------------------------------------------------------
If you want the appropriate css to be loaded each time then store the
value in a cookie and read/update this value.

ALternatively, you could use CSS floating layout. This will allow the
browser to automatically resize it's contents. You only need 1 CSS
file to manage the myriad of screen resolutions that are available.
---------------------------------------------------------------
jn******@yourpantsyahoo.com.au : Remove your pants to reply
---------------------------------------------------------------
Oct 17 '06 #3
Steve Wright wrote:
Hi

I'm developing a webpage that needs to include a different stylesheet
depending on the screen resolution.

I know that I could read the resolution in javascript and then do some
sort of stylesheet switcher as part of the onload event but I would
rather link in the correct stylesheet for the resolution in the first
place.

Is there anyway of reading the screen resolution using PHP?
Nope. The use of document.write (circa 1990s) will work just as well
though.

<script>

var css = 'norm.css';

if(screen.availHeight 1024) {
css = 'big.css';
}
/* ... etc. ... */

document.write('<link rel="stylesheet" type="text/css" href="' + css +
'">');

</script>

Oct 17 '06 #4
In message <12*************@corp.supernews.com>, Gordon Burditt
<go***********@burditt.orgwrites
>>Please don't flame me about "screen resolution being useless as not
everyone browses in a maximised window". This is for intranet
application where I know the browser will be IE6 with javascript enabled
running in full screen mode and toolbars hidden. I also know the three
possible screen resolutions that it could be.

Use code to translate the IP address of the workstation into the screen
resolution. Granted, this may require some manual collecting of data first.

Interesting idea, but we have dynamic IP addresses.
--
Steve Wright
Oct 17 '06 #5
In message <cg********************************@4ax.com>, Jeff North
<jn******@yahoo.com.auwrites
>On Mon, 16 Oct 2006 23:50:50 +0100, in comp.lang.php Steve Wright
<us****@wrightnet.demon.co.uk>
<4R**************@wrightnet.demon.co.ukwrote:
>>| Hi
|
| I'm developing a webpage that needs to include a different stylesheet
| depending on the screen resolution.
|
| I know that I could read the resolution in javascript and then do some
| sort of stylesheet switcher as part of the onload event but I would
| rather link in the correct stylesheet for the resolution in the first
| place.
|
| Is there anyway of reading the screen resolution using PHP?

Not really.
>>| Please don't flame me about "screen resolution being useless as not
| everyone browses in a maximised window". This is for intranet
| application where I know the browser will be IE6 with javascript enabled
| running in full screen mode and toolbars hidden. I also know the three
| possible screen resolutions that it could be.

Let the browser do the work (like it should) and let the user select
what option that they want.
-------------------------------------------------------------------
<head>
<link rel="stylesheet" type="text/css" href="small.css" title="small"
/>
<link rel="alternate stylesheet" type="text/css" href="medium.css"
title="medium" />
<link rel="alternate stylesheet" type="text/css" href="large.css"
title="large" />

<script type="text/javascript">
function setActiveStyleSheet(title)
{
var i, a, main;
for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
if(a.getAttribute("rel").indexOf("style") != -1 &&
a.getAttribute("title")) {
a.disabled = true;
if(a.getAttribute("title") == title) a.disabled = false;
}
}
}
</head>
<body>
<p><strong>Screen Size</strong><br />
<select name="lbCSS" id="lbCSS"
onchange="setActiveStyleSheet(this.value);">
<option value="small">Small</option>
<option value="medium">Medium</option>
<option value="large">Large</option>
</select>
</body>
----------------------------------------------------------------------
If you want the appropriate css to be loaded each time then store the
value in a cookie and read/update this value.

ALternatively, you could use CSS floating layout. This will allow the
browser to automatically resize it's contents. You only need 1 CSS
file to manage the myriad of screen resolutions that are available.
---------------------------------------------------------------
jn******@yourpantsyahoo.com.au : Remove your pants to reply
---------------------------------------------------------------
That's the fall back option I thought of. However its not just the text
I'm scaling, its the graphics as well. I'm using PHP and the GD
extension to generate the six images. These images consume most of the
space on the screen hence the need to scale them correctly.
--
Steve Wright
Oct 17 '06 #6
On Tue, 17 Oct 2006 08:51:08 +0100, in comp.lang.php Steve Wright
<us****@wrightnet.demon.co.uk>
<Kb**************@wrightnet.demon.co.ukwrote:
>| In message <cg********************************@4ax.com>, Jeff North
| <jn******@yahoo.com.auwrites
| >On Mon, 16 Oct 2006 23:50:50 +0100, in comp.lang.php Steve Wright
| ><us****@wrightnet.demon.co.uk>
| ><4R**************@wrightnet.demon.co.ukwrote:
| >
| >>| Hi
| >>|
| >>| I'm developing a webpage that needs to include a different stylesheet
| >>| depending on the screen resolution.
| >>|
| >>| I know that I could read the resolution in javascript and then do some
| >>| sort of stylesheet switcher as part of the onload event but I would
| >>| rather link in the correct stylesheet for the resolution in the first
| >>| place.
| >>|
| >>| Is there anyway of reading the screen resolution using PHP?
| >
| >Not really.
| >
| >>| Please don't flame me about "screen resolution being useless as not
| >>| everyone browses in a maximised window". This is for intranet
| >>| application where I know the browser will be IE6 with javascript enabled
| >>| running in full screen mode and toolbars hidden. I also know the three
| >>| possible screen resolutions that it could be.
| >
| >Let the browser do the work (like it should) and let the user select
| >what option that they want.
| >-------------------------------------------------------------------
| ><head>
| ><link rel="stylesheet" type="text/css" href="small.css" title="small"
| >/>
| ><link rel="alternate stylesheet" type="text/css" href="medium.css"
| >title="medium" />
| ><link rel="alternate stylesheet" type="text/css" href="large.css"
| >title="large" />
| >
| ><script type="text/javascript">
| >function setActiveStyleSheet(title)
| >{
| var i, a, main;
| for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
| if(a.getAttribute("rel").indexOf("style") != -1 &&
| >a.getAttribute("title")) {
| a.disabled = true;
| if(a.getAttribute("title") == title) a.disabled = false;
| }
| }
| >}
| ></head>
| ><body>
| ><p><strong>Screen Size</strong><br />
| ><select name="lbCSS" id="lbCSS"
| >onchange="setActiveStyleSheet(this.value);">
| <option value="small">Small</option>
| <option value="medium">Medium</option>
| <option value="large">Large</option>
| ></select>
| ></body>
| >----------------------------------------------------------------------
| >If you want the appropriate css to be loaded each time then store the
| >value in a cookie and read/update this value.
| >
| >ALternatively, you could use CSS floating layout. This will allow the
| >browser to automatically resize it's contents. You only need 1 CSS
| >file to manage the myriad of screen resolutions that are available.
|
| That's the fall back option I thought of. However its not just the text
| I'm scaling, its the graphics as well. I'm using PHP and the GD
| extension to generate the six images. These images consume most of the
| space on the screen hence the need to scale them correctly.
Use percentages on the width/height.
<img src="xyz.gif" width="100%" height="75%" />
---------------------------------------------------------------
jn******@yourpantsyahoo.com.au : Remove your pants to reply
---------------------------------------------------------------
Oct 17 '06 #7
Why not JavaScript AND PHP:

at the very top of the page, put:
<?php
if( !isset($_GET['x']) || !isset($_GET['y']) ) {
echo '<script type="text/javascript">';
echo 'window.location="THIS_PAGE.php?x=" + screen.availWidth + "&y="
+ screen.availHeight';
echo '</script>';
die();
}

// now write the rest of your page, with $_GET['x'] and $_GET['y'] as
the resolution.

?>

this code will refresh the page instantly with the screen width &
height.


Jeff North wrote:
On Tue, 17 Oct 2006 08:51:08 +0100, in comp.lang.php Steve Wright
<us****@wrightnet.demon.co.uk>
<Kb**************@wrightnet.demon.co.ukwrote:
| In message <cg********************************@4ax.com>, Jeff North
| <jn******@yahoo.com.auwrites
| >On Mon, 16 Oct 2006 23:50:50 +0100, in comp.lang.php Steve Wright
| ><us****@wrightnet.demon.co.uk>
| ><4R**************@wrightnet.demon.co.ukwrote:
| >
| >>| Hi
| >>|
| >>| I'm developing a webpage that needs to include a different stylesheet
| >>| depending on the screen resolution.
| >>|
| >>| I know that I could read the resolution in javascript and then do some
| >>| sort of stylesheet switcher as part of the onload event but I would
| >>| rather link in the correct stylesheet for the resolution in the first
| >>| place.
| >>|
| >>| Is there anyway of reading the screen resolution using PHP?
| >
| >Not really.
| >
| >>| Please don't flame me about "screen resolution being useless as not
| >>| everyone browses in a maximised window". This is for intranet
| >>| application where I know the browser will be IE6 with javascript enabled
| >>| running in full screen mode and toolbars hidden. I also know the three
| >>| possible screen resolutions that it could be.
| >
| >Let the browser do the work (like it should) and let the user select
| >what option that they want.
| >-------------------------------------------------------------------
| ><head>
| ><link rel="stylesheet" type="text/css" href="small.css" title="small"
| >/>
| ><link rel="alternate stylesheet" type="text/css" href="medium.css"
| >title="medium" />
| ><link rel="alternate stylesheet" type="text/css" href="large.css"
| >title="large" />
| >
| ><script type="text/javascript">
| >function setActiveStyleSheet(title)
| >{
| var i, a, main;
| for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
| if(a.getAttribute("rel").indexOf("style") != -1 &&
| >a.getAttribute("title")) {
| a.disabled = true;
| if(a.getAttribute("title") == title) a.disabled = false;
| }
| }
| >}
| ></head>
| ><body>
| ><p><strong>Screen Size</strong><br />
| ><select name="lbCSS" id="lbCSS"
| >onchange="setActiveStyleSheet(this.value);">
| <option value="small">Small</option>
| <option value="medium">Medium</option>
| <option value="large">Large</option>
| ></select>
| ></body>
| >----------------------------------------------------------------------
| >If you want the appropriate css to be loaded each time then store the
| >value in a cookie and read/update this value.
| >
| >ALternatively, you could use CSS floating layout. This will allow the
| >browser to automatically resize it's contents. You only need 1 CSS
| >file to manage the myriad of screen resolutions that are available.
|
| That's the fall back option I thought of. However its not just the text
| I'm scaling, its the graphics as well. I'm using PHP and the GD
| extension to generate the six images. These images consume most of the
| space on the screen hence the need to scale them correctly.

Use percentages on the width/height.
<img src="xyz.gif" width="100%" height="75%" />
---------------------------------------------------------------
jn******@yourpantsyahoo.com.au : Remove your pants to reply
---------------------------------------------------------------
Oct 17 '06 #8
On 17 Oct 2006 11:03:20 -0700, in comp.lang.php "maven22"
<ma**********@gmail.com>
<11*********************@f16g2000cwb.googlegroups. comwrote:
>| Jeff North wrote:
| On Tue, 17 Oct 2006 08:51:08 +0100, in comp.lang.php Steve Wright
| <us****@wrightnet.demon.co.uk>
| <Kb**************@wrightnet.demon.co.ukwrote:
| >
| | In message <cg********************************@4ax.com>, Jeff North
| | <jn******@yahoo.com.auwrites
| | >On Mon, 16 Oct 2006 23:50:50 +0100, in comp.lang.php Steve Wright
| | ><us****@wrightnet.demon.co.uk>
| | ><4R**************@wrightnet.demon.co.ukwrote:
| | >
| | >>| Hi
| | >>|
| | >>| I'm developing a webpage that needs to include a different stylesheet
| | >>| depending on the screen resolution.
| | >>|
| | >>| I know that I could read the resolution in javascript and then do some
| | >>| sort of stylesheet switcher as part of the onload event but I would
| | >>| rather link in the correct stylesheet for the resolution in the first
| | >>| place.
| | >>|
| | >>| Is there anyway of reading the screen resolution using PHP?
| | >
| | >Not really.
| | >
| | >>| Please don't flame me about "screen resolution being useless as not
| | >>| everyone browses in a maximised window". This is for intranet
| | >>| application where I know the browser will be IE6 with javascript enabled
| | >>| running in full screen mode and toolbars hidden. I also know the three
| | >>| possible screen resolutions that it could be.
| | >
| | >Let the browser do the work (like it should) and let the user select
| | >what option that they want.
| | >-------------------------------------------------------------------
| | ><head>
| | ><link rel="stylesheet" type="text/css" href="small.css" title="small"
| | >/>
| | ><link rel="alternate stylesheet" type="text/css" href="medium.css"
| | >title="medium" />
| | ><link rel="alternate stylesheet" type="text/css" href="large.css"
| | >title="large" />
| | >
| | ><script type="text/javascript">
| | >function setActiveStyleSheet(title)
| | >{
| | var i, a, main;
| | for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
| | if(a.getAttribute("rel").indexOf("style") != -1 &&
| | >a.getAttribute("title")) {
| | a.disabled = true;
| | if(a.getAttribute("title") == title) a.disabled = false;
| | }
| | }
| | >}
| | ></head>
| | ><body>
| | ><p><strong>Screen Size</strong><br />
| | ><select name="lbCSS" id="lbCSS"
| | >onchange="setActiveStyleSheet(this.value);">
| | <option value="small">Small</option>
| | <option value="medium">Medium</option>
| | <option value="large">Large</option>
| | ></select>
| | ></body>
| | >----------------------------------------------------------------------
| | >If you want the appropriate css to be loaded each time then store the
| | >value in a cookie and read/update this value.
| | >
| | >ALternatively, you could use CSS floating layout. This will allow the
| | >browser to automatically resize it's contents. You only need 1 CSS
| | >file to manage the myriad of screen resolutions that are available.
| |
| | That's the fall back option I thought of. However its not just the text
| | I'm scaling, its the graphics as well. I'm using PHP and the GD
| | extension to generate the six images. These images consume most of the
| | space on the screen hence the need to scale them correctly.
| >
| Use percentages on the width/height.
| <img src="xyz.gif" width="100%" height="75%" />
|
| Why not JavaScript AND PHP:
|
| at the very top of the page, put:
| <?php
| if( !isset($_GET['x']) || !isset($_GET['y']) ) {
| echo '<script type="text/javascript">';
| echo 'window.location="THIS_PAGE.php?x=" + screen.availWidth + "&y="
| + screen.availHeight';
| echo '</script>';
| die();
| }
|
| // now write the rest of your page, with $_GET['x'] and $_GET['y'] as
| the resolution.
|
| ?>
|
| this code will refresh the page instantly with the screen width &
| height.
Well there's no right way or wrong way, IMNSHO.

The problem I see with your code is that you are assuming that the
person has their browser open full screen, this may or maynot be the
case.

Not all browsers implement clientWidth/Height so your code would need
some additional 'sniffing' to work out the values (not to mention that
the data is passed in the url and therefore you'd need to error
detection on these value i.e. index.php?x=apples&y=oranges).
---------------------------------------------------------------
jn******@yourpantsyahoo.com.au : Remove your pants to reply
---------------------------------------------------------------
Oct 18 '06 #9
Of course I didn't include error detection because it's just for
concept - I'm not writing his code for him. And, he stated this at the
beginning "This is for intranet
application where I know the browser will be IE6 with javascript
enabled
running in full screen mode and toolbars hidden"
Jeff North wrote:
On 17 Oct 2006 11:03:20 -0700, in comp.lang.php "maven22"
<ma**********@gmail.com>
<11*********************@f16g2000cwb.googlegroups. comwrote:
| Jeff North wrote:
| On Tue, 17 Oct 2006 08:51:08 +0100, in comp.lang.php Steve Wright
| <us****@wrightnet.demon.co.uk>
| <Kb**************@wrightnet.demon.co.ukwrote:
| >
| | In message <cg********************************@4ax.com>, Jeff North
| | <jn******@yahoo.com.auwrites
| | >On Mon, 16 Oct 2006 23:50:50 +0100, in comp.lang.php Steve Wright
| | ><us****@wrightnet.demon.co.uk>
| | ><4R**************@wrightnet.demon.co.ukwrote:
| | >
| | >>| Hi
| | >>|
| | >>| I'm developing a webpage that needs to include a different stylesheet
| | >>| depending on the screen resolution.
| | >>|
| | >>| I know that I could read the resolution in javascript and then do some
| | >>| sort of stylesheet switcher as part of the onload event but I would
| | >>| rather link in the correct stylesheet for the resolution in the first
| | >>| place.
| | >>|
| | >>| Is there anyway of reading the screen resolution using PHP?
| | >
| | >Not really.
| | >
| | >>| Please don't flame me about "screen resolution being useless as not
| | >>| everyone browses in a maximised window". This is for intranet
| | >>| application where I know the browser will be IE6 with javascript enabled
| | >>| running in full screen mode and toolbars hidden. I also know the three
| | >>| possible screen resolutions that it could be.
| | >
| | >Let the browser do the work (like it should) and let the user select
| | >what option that they want.
| | >-------------------------------------------------------------------
| | ><head>
| | ><link rel="stylesheet" type="text/css" href="small.css" title="small"
| | >/>
| | ><link rel="alternate stylesheet" type="text/css" href="medium.css"
| | >title="medium" />
| | ><link rel="alternate stylesheet" type="text/css" href="large.css"
| | >title="large" />
| | >
| | ><script type="text/javascript">
| | >function setActiveStyleSheet(title)
| | >{
| | var i, a, main;
| | for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
| | if(a.getAttribute("rel").indexOf("style") != -1 &&
| | >a.getAttribute("title")) {
| | a.disabled = true;
| | if(a.getAttribute("title") == title) a.disabled = false;
| | }
| | }
| | >}
| | ></head>
| | ><body>
| | ><p><strong>Screen Size</strong><br />
| | ><select name="lbCSS" id="lbCSS"
| | >onchange="setActiveStyleSheet(this.value);">
| | <option value="small">Small</option>
| | <option value="medium">Medium</option>
| | <option value="large">Large</option>
| | ></select>
| | ></body>
| | >----------------------------------------------------------------------
| | >If you want the appropriate css to be loaded each time then store the
| | >value in a cookie and read/update this value.
| | >
| | >ALternatively, you could use CSS floating layout. This will allow the
| | >browser to automatically resize it's contents. You only need 1 CSS
| | >file to manage the myriad of screen resolutions that are available.
| |
| | That's the fall back option I thought of. However its not just the text
| | I'm scaling, its the graphics as well. I'm using PHP and the GD
| | extension to generate the six images. These images consume most of the
| | space on the screen hence the need to scale them correctly.
| >
| Use percentages on the width/height.
| <img src="xyz.gif" width="100%" height="75%" />
|
| Why not JavaScript AND PHP:
|
| at the very top of the page, put:
| <?php
| if( !isset($_GET['x']) || !isset($_GET['y']) ) {
| echo '<script type="text/javascript">';
| echo 'window.location="THIS_PAGE.php?x=" + screen.availWidth + "&y="
| + screen.availHeight';
| echo '</script>';
| die();
| }
|
| // now write the rest of your page, with $_GET['x'] and $_GET['y'] as
| the resolution.
|
| ?>
|
| this code will refresh the page instantly with the screen width &
| height.

Well there's no right way or wrong way, IMNSHO.

The problem I see with your code is that you are assuming that the
person has their browser open full screen, this may or maynot be the
case.

Not all browsers implement clientWidth/Height so your code would need
some additional 'sniffing' to work out the values (not to mention that
the data is passed in the url and therefore you'd need to error
detection on these value i.e. index.php?x=apples&y=oranges).
---------------------------------------------------------------
jn******@yourpantsyahoo.com.au : Remove your pants to reply
---------------------------------------------------------------
Oct 18 '06 #10

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

Similar topics

1
11040
by: ZaGras | last post by:
when my vb program run on another computer instead of my computer, the user interface is biggger..this is because of the screen resolution... anyone know how to solve pls?
23
4848
by: Dufe | last post by:
Hello all: To deal with the problem of differing user screen resolutions, I've explored: 1) making the pages in PHP, 2) having different pages on the same page and selecting the proper one via...
5
4388
by: Chris | last post by:
After exhausting my search on the MS website, I can't find a straight answer. I fin dit hard to believe that MS left our something so useful in ASP.NET as screen resolution detection. Problem:...
4
15483
by: pjac | last post by:
I need some help with some VB language that will change the screen resolution on a monitor when a MS-Access 2000 database is opened from 1024 x 768 to 800 x 600. Any help with this effort would be...
1
2161
by: fabrice | last post by:
Hi, I'm trying to get the screen resolution of the client and to realize a treatment in code behind. it seem to be hard. I can get information about the resolution with this following sub,...
6
2663
by: Darian | last post by:
I am wondering how (if it is possible of course) I can change a users screen resolution to a certain size when running my application and then change it back when they exit my application. For...
5
6175
by: Maxi | last post by:
I have a 30X16 cells table in my html page. Table height and width are set to 100%. I have set size of every cell inside the table to 24 pixel. When I open the html page in maximize state in...
1
2493
by: nasima khan | last post by:
Hi, i am nasima. I have got a code for setting the screen resolution of my page, but i am unable to understand. Can any one give a complete data explanation of the below code. Sub ChangeRes(X...
10
44055
by: =?Utf-8?B?UmljaA==?= | last post by:
A lot of users at my workplace use different screen resolutions, and I build apps to use 1680 x 1050 pixels res by default. But some users are using 800 x 600, and the apps are too large for their...
0
7076
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
7274
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
7323
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...
1
5005
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...
0
4670
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...
0
3162
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...
0
3151
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1507
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
377
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...

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.