473,785 Members | 2,388 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

re-compile error

re-compile under dev -c++ bloodshed.

can u help ?
#include<dos.h>
#include<proces s.h>
#include<io.h>
#include<stdio. h>
#define STROBE 0x01
#define NOT_STB 0x00

void main()
{
char i,j;
unsigned int CTRL_PORT,STAR_ PORT;
unsigned int far *DATA_PORT;
DATA_PORT=MK_FP (0x0000,0x0408) ;
STAR_PORT=*DATA _PORT+1;
CTRL_PORT=STAR_ PORT+1;
outport(CTRL_PO RT,0x00);
while(1)
{
outport(*DATA_P ORT,0x00);
delay(2000);
outport(*DATA_P ORT,0xff);
delay(2000);
outport(*DATA_P ORT,0x00);
delay(2000);
j=0x80;
for(i=0;i<8;i++ )
{
outport(*DATA_P ORT,j);
j=j>>1;
delay(2000);
}
}
}
Compiler: Default compiler
Executing gcc.exe...
gcc.exe "C:\Documen ts and Settings\farm\T EST.C" -o "C:\Documen ts and
Settings\farm\T EST.exe" -g3 -I"C:\Dev-Cpp\include" -L"C:\Dev-Cpp\lib"
C:/Documents and Settings/farm/TEST.C:9: `main' must return `int'
C:/Documents and Settings/farm/TEST.C: In function `int main(...)':
C:/Documents and Settings/farm/TEST.C:12: parse error before `*'
token
C:/Documents and Settings/farm/TEST.C:13: `DATA_PORT' undeclared
(first use this function)
C:/Documents and Settings/farm/TEST.C:13: (Each undeclared
identifier is reported only once for each function it appears in.)
C:/Documents and Settings/farm/TEST.C:13: `MK_FP' undeclared (first
use this function)
C:/Documents and Settings/farm/TEST.C:16: `outport' undeclared
(first use this function)
C:/Documents and Settings/farm/TEST.C:20: `delay' undeclared (first
use this function)

C:/Documents and Settings/farm/TEST.C: At global scope:
C:/Documents and Settings/farm/TEST.C:33: stray '\32' in program

C:/Documents and Settings/farm/TEST.C:33:3: warning: no newline at end of
file

Execution terminated
Nov 14 '05 #1
13 2678
developer <no*****@sina.c om> wrote:
re-compile under dev -c++ bloodshed. can u help ?
Not really...
#include<dos.h>
#include<proces s.h>
#include<io.h>
All these three are non-standard header files, probably available
on DOS based machines. To find help about them you have to ask in
a different group that deals with Microsoft-specific extensions to
the C language.
#include<stdio. h>
#define STROBE 0x01
#define NOT_STB 0x00 void main()
main() must return an int.
{
char i,j;
unsigned int CTRL_PORT,STAR_ PORT;
unsigned int far *DATA_PORT;
The 'far' isn't standard C - it's usually found in old DOS programs.
A normal C compiler won't know what to do with it and assume that
you want to define an unsigned int variable called 'far' and choke
on what follows. Again, you need to ask in a MS-group to get help
about that.
DATA_PORT=MK_FP (0x0000,0x0408) ;
Because of the problem with the previous line DATA_PORT isn't
defined. And obviously the compiler doesn't know what MK_FP()
is supposed to be. It's not a standard C function and it doesn't
seem to be defined in the non-standard headers you included above,
at least the compiler tells you it hasn't found it in there.
STAR_PORT=*DATA _PORT+1;
CTRL_PORT=STAR_ PORT+1;
outport(CTRL_PO RT,0x00);
outport() isn't a standard C function and doesn't seem to be declared
in the the non-standard headers.
while(1)
{
outport(*DATA_P ORT,0x00);
delay(2000);
And again the same problem with the delay() function.
outport(*DATA_P ORT,0xff);
delay(2000);
outport(*DATA_P ORT,0x00);
delay(2000);
j=0x80;
for(i=0;i<8;i++ )
{
outport(*DATA_P ORT,j);
j=j>>1;
delay(2000);
}
}
You're missing a statement like "return 0;" here - since main() is
supposed to return an int you must do so.
}


The last character in a regular C program must be a line feed. The ^Z
stuff is an abomination from very old DOS programs where it was meant
to indicate the end of the file. Normal compilers will choke on it.

Most of your problems seem to be due to the use of non-standard (DOS)
extensions. So you better go to a group that deals with MS specific
stuff. It probably would make sense also there to explain on what kind
of system you want to compile and run that program - I suspect that
even a newer Windows system wouldn't let you run that even if you get
it to compile and link.
Regards, Jens
--
\ Jens Thoms Toerring ___ Je***********@p hysik.fu-berlin.de
\______________ ____________ http://www.toerring.de
Nov 14 '05 #2
On Mon, 13 Dec 2004 18:26:57 +0800
"developer" <no*****@sina.c om> wrote:
re-compile under dev -c++ bloodshed.

can u help ?
Well, you dealing with the obvious things the compiler is telling you
would have been a start.
#include<dos.h>
#include<proces s.h>
#include<io.h>
The above are non-standard headers and here we have no idea what they
contain.
#include<stdio. h>
#define STROBE 0x01
#define NOT_STB 0x00

void main()
As your compiler correctly tells you main returns an int so you should
declare it as such.

int main(void)

since you don't use the parameters. {
char i,j;
Some indentation would be a good idea.
unsigned int CTRL_PORT,STAR_ PORT;
Common convention is to use lower case for variable names and upper case
for macros.
unsigned int far *DATA_PORT;
What is the far of which you speak? It certainly is not a standard C
keyword.

<OT>
This suggests the code was written for an ancient DOS compiler, since
far was a completely non-standard extention that some DOS compilers used
to provide.
DATA_PORT=MK_FP (0x0000,0x0408) ;
What is the MK_FP of which you speak? It is not declared in your
program, so unless it comes from your non-standard headers it does not
exist. Since your compiler complains I would suggest it does not exist.
STAR_PORT=*DATA _PORT+1;
CTRL_PORT=STAR_ PORT+1;
outport(CTRL_PO RT,0x00);
Same applies here. As far as we can see outport does not exist just as
your compiler suggests.
while(1)
{
outport(*DATA_P ORT,0x00);
delay(2000);
outport(*DATA_P ORT,0xff);
delay(2000);
outport(*DATA_P ORT,0x00);
delay(2000);
j=0x80;
for(i=0;i<8;i++ )
{
outport(*DATA_P ORT,j);
j=j>>1;
If j is an 8 bit signed char this is a problem.
delay(2000);
}
}
}
What strange character is that after the close brace?

<snip>
C:/Documents and Settings/farm/TEST.C: At global scope:
C:/Documents and Settings/farm/TEST.C:33: stray '\32' in program
Looks like that is the screwy character at the end of the file. Delete
it.
C:/Documents and Settings/farm/TEST.C:33:3: warning: no newline at end
C:of
file
The last line of the file needs a newline, so press return at the end of
it then save after dealing with the above.
Execution terminated


If this is your code I suggest throwing it away and reading up on the
extensions your implementation provides that might let you do what you
want. If this is someone elses code that you have to recompile and use
then you will have to find out what system they used and use that since
the important bits of it are completely non-standard.

Either way there is very little we can help you with here, you need
implementation specific help and we deal with standard C.
--
Flash Gordon
Living in interesting times.
Although my email address says spam, it is real and I read it.
Nov 14 '05 #3
Simply rewrite the code in C, modifying the compiler-specific portions to
accomodate the new compiler.

developer wrote:
re-compile under dev -c++ bloodshed.

can u help ?
#include<dos.h>
#include<proces s.h>
#include<io.h>
#include<stdio. h>
#define STROBE 0x01
#define NOT_STB 0x00

void main()
{
char i,j;
unsigned int CTRL_PORT,STAR_ PORT;
unsigned int far *DATA_PORT;
DATA_PORT=MK_FP (0x0000,0x0408) ;
STAR_PORT=*DATA _PORT+1;
CTRL_PORT=STAR_ PORT+1;
outport(CTRL_PO RT,0x00);
while(1)
{
outport(*DATA_P ORT,0x00);
delay(2000);
outport(*DATA_P ORT,0xff);
delay(2000);
outport(*DATA_P ORT,0x00);
delay(2000);
j=0x80;
for(i=0;i<8;i++ )
{
outport(*DATA_P ORT,j);
j=j>>1;
delay(2000);
}
}
}
Compiler: Default compiler
Executing gcc.exe...
gcc.exe "C:\Documen ts and Settings\farm\T EST.C" -o "C:\Documen ts and
Settings\farm\T EST.exe" -g3 -I"C:\Dev-Cpp\include" -L"C:\Dev-Cpp\lib"
C:/Documents and Settings/farm/TEST.C:9: `main' must return `int'
C:/Documents and Settings/farm/TEST.C: In function `int main(...)':
C:/Documents and Settings/farm/TEST.C:12: parse error before `*'
token
C:/Documents and Settings/farm/TEST.C:13: `DATA_PORT' undeclared
(first use this function)
C:/Documents and Settings/farm/TEST.C:13: (Each undeclared
identifier is reported only once for each function it appears in.)
C:/Documents and Settings/farm/TEST.C:13: `MK_FP' undeclared (first
use this function)
C:/Documents and Settings/farm/TEST.C:16: `outport' undeclared
(first use this function)
C:/Documents and Settings/farm/TEST.C:20: `delay' undeclared (first
use this function)

C:/Documents and Settings/farm/TEST.C: At global scope:
C:/Documents and Settings/farm/TEST.C:33: stray '\32' in program

C:/Documents and Settings/farm/TEST.C:33:3: warning: no newline at end of
file

Execution terminated


--
Remove '.nospam' from e-mail address to reply by e-mail
Nov 14 '05 #4
developer wrote:
re-compile under dev -c++ bloodshed.

can u help ?
#include<dos.h>
#include<proces s.h>
#include<io.h>
#include<stdio. h>
#define STROBE 0x01
#define NOT_STB 0x00

void main()
{
char i,j;
unsigned int CTRL_PORT,STAR_ PORT;
unsigned int far *DATA_PORT;
DATA_PORT=MK_FP (0x0000,0x0408) ;
STAR_PORT=*DATA _PORT+1;
CTRL_PORT=STAR_ PORT+1;
outport(CTRL_PO RT,0x00);
while(1)
{
outport(*DATA_P ORT,0x00);
delay(2000);
outport(*DATA_P ORT,0xff);
delay(2000);
outport(*DATA_P ORT,0x00);
delay(2000);
j=0x80;
for(i=0;i<8;i++ )
{
outport(*DATA_P ORT,j);
j=j>>1;
delay(2000);
}
}
}
Compiler: Default compiler
Executing gcc.exe...
gcc.exe "C:\Documen ts and Settings\farm\T EST.C" -o "C:\Documen ts and
Settings\farm\T EST.exe" -g3 -I"C:\Dev-Cpp\include" -L"C:\Dev-Cpp\lib"
C:/Documents and Settings/farm/TEST.C:9: `main' must return `int'
C:/Documents and Settings/farm/TEST.C: In function `int main(...)':
C:/Documents and Settings/farm/TEST.C:12: parse error before `*'
token
C:/Documents and Settings/farm/TEST.C:13: `DATA_PORT' undeclared
(first use this function)
C:/Documents and Settings/farm/TEST.C:13: (Each undeclared
identifier is reported only once for each function it appears in.)
C:/Documents and Settings/farm/TEST.C:13: `MK_FP' undeclared (first
use this function)
C:/Documents and Settings/farm/TEST.C:16: `outport' undeclared
(first use this function)
C:/Documents and Settings/farm/TEST.C:20: `delay' undeclared (first
use this function)

C:/Documents and Settings/farm/TEST.C: At global scope:
C:/Documents and Settings/farm/TEST.C:33: stray '\32' in program

C:/Documents and Settings/farm/TEST.C:33:3: warning: no newline at end of
file

Execution terminated


You are running under the windows OS. This OS is NOT the DOS
operating system that was discontinued more than 10 years ago.

This program is writing to a specific address. This will never work
under the win32 versions of windows (windows 95 or higher).

But all this is probably too technical for you. The fact that you
attempt to compile this under windows shows that you haven't got
any idea what this code is doing. I would suggest that you find
someone competent and give this to him (her).

Under DOS, you could write to any memory address since the OS
wasn't using protected mode and virtual memory. This doesn't work
since windows 95...

Anyway, maybe it will run if you compile it under a 16 bit DOS compiler
under the emulation layer of windows, who knows.

jacob
Nov 14 '05 #5

"jacob navia" <ja***@jacob.re mcomp.fr> дÈëÓʼþ
news:41******** **************@ news.wanadoo.fr ...
developer wrote:
re-compile under dev -c++ bloodshed.

can u help ?
#include<dos.h>
#include<proces s.h>
#include<io.h>
#include<stdio. h>
#define STROBE 0x01
#define NOT_STB 0x00

void main()
{
char i,j;
unsigned int CTRL_PORT,STAR_ PORT;
unsigned int far *DATA_PORT;
DATA_PORT=MK_FP (0x0000,0x0408) ;
STAR_PORT=*DATA _PORT+1;
CTRL_PORT=STAR_ PORT+1;
outport(CTRL_PO RT,0x00);
while(1)
{
outport(*DATA_P ORT,0x00);
delay(2000);
outport(*DATA_P ORT,0xff);
delay(2000);
outport(*DATA_P ORT,0x00);
delay(2000);
j=0x80;
for(i=0;i<8;i++ )
{
outport(*DATA_P ORT,j);
j=j>>1;
delay(2000);
}
}
}
Compiler: Default compiler
Executing gcc.exe...
gcc.exe "C:\Documen ts and Settings\farm\T EST.C" -o "C:\Documen ts and
ttings\farm\TES T.exe" -g3 -I"C:\Dev-Cpp\include" -L"C:\Dev-Cpp\lib" C:/Documents and Settings/farm/TEST.C:9: `main' must return `int'
C:/Documents and Settings/farm/TEST.C: In function `int main(...)':
C:/Documents and Settings/farm/TEST.C:12: parse error before `*'
token
C:/Documents and Settings/farm/TEST.C:13: `DATA_PORT' undeclared
(first use this function)
C:/Documents and Settings/farm/TEST.C:13: (Each undeclared
identifier is reported only once for each function it appears in.)
C:/Documents and Settings/farm/TEST.C:13: `MK_FP' undeclared (first
use this function)
C:/Documents and Settings/farm/TEST.C:16: `outport' undeclared
(first use this function)
C:/Documents and Settings/farm/TEST.C:20: `delay' undeclared (first
use this function)

C:/Documents and Settings/farm/TEST.C: At global scope:
C:/Documents and Settings/farm/TEST.C:33: stray '\32' in program

C:/Documents and Settings/farm/TEST.C:33:3: warning: no newline at end of file

Execution terminated

if I can find turbo for win xp ( 32 bit) and recompile the program, will
that works?
can a 16 bit turbo C works on 32 bit machine?

or

if I can find a dos 3.3, and a copy turbo C compile and compile the edited
under dos 3.3?

what other option, to make this hardware and source code C that I have at
the moment, to make it work under XP environment.
Nov 14 '05 #6
developer wrote:
"jacob navia" <ja***@jacob.re mcomp.fr> дÈëÓʼþ
news:41******** **************@ news.wanadoo.fr ...
developer wrote:
re-compile under dev -c++ bloodshed.

can u help ?
#include<dos .h>
#include<pro cess.h>
#include<io. h>
#include<std io.h>
#define STROBE 0x01
#define NOT_STB 0x00

void main()
{
char i,j;
unsigned int CTRL_PORT,STAR_ PORT;
unsigned int far *DATA_PORT;
DATA_PORT=MK _FP(0x0000,0x04 08);
STAR_PORT=*D ATA_PORT+1;
CTRL_PORT=ST AR_PORT+1;
outport(CTRL _PORT,0x00);
while(1)
{
outport(*DAT A_PORT,0x00);
delay(2000 );
outport(*DAT A_PORT,0xff);
delay(2000 );
outport(*DAT A_PORT,0x00);
delay(2000 );
j=0x80;
for(i=0;i<8; i++)
{
outport(*DAT A_PORT,j);
j=j>>1;
delay(2000 );
}
}
}
Compiler: Default compiler
Executing gcc.exe...
gcc.exe "C:\Documen ts and Settings\farm\T EST.C" -o "C:\Documen ts and

ttings\farm\TES T.exe" -g3 -I"C:\Dev-Cpp\include" -L"C:\Dev-Cpp\lib"
C:/Documents and Settings/farm/TEST.C:9: `main' must return `int'
C:/Documents and Settings/farm/TEST.C: In function `int main(...)':
C:/Documents and Settings/farm/TEST.C:12: parse error before `*'
token
C:/Documents and Settings/farm/TEST.C:13: `DATA_PORT' undeclared
(first use this function)
C:/Documents and Settings/farm/TEST.C:13: (Each undeclared
identifier is reported only once for each function it appears in.)
C:/Documents and Settings/farm/TEST.C:13: `MK_FP' undeclared (first
use this function)
C:/Documents and Settings/farm/TEST.C:16: `outport' undeclared
(first use this function)
C:/Documents and Settings/farm/TEST.C:20: `delay' undeclared (first
use this function)

C:/Documents and Settings/farm/TEST.C: At global scope:
C:/Documents and Settings/farm/TEST.C:33: stray '\32' in program

C:/Documents and Settings/farm/TEST.C:33:3: warning: no newline at end
of
file

Execution terminated

if I can find turbo for win xp ( 32 bit) and recompile the program, will
that works?


no, the 32 bit compiler will not work

can a 16 bit turbo C works on 32 bit machine?

under the emulation layer yes
or

if I can find a dos 3.3, and a copy turbo C compile and compile the edited
under dos 3.3?

yes. Get an old pC, install DOS, install turbo c 16 bits for DOS
recompile
what other option, to make this hardware and source code C that I have at
the moment, to make it work under XP environment.


Maybe it will work under the emulation layer, maybe not.

You will have to tweak the DOS emulation layer settings in the
properties of the shortcut to the program

Nov 14 '05 #7
developer <no*****@sina.c om> wrote:
<lots of irrelevant stuff snipped>

Please remove things not relevant to your postings.
if I can find turbo for win xp ( 32 bit) and recompile the program, will
that works?
can a 16 bit turbo C works on 32 bit machine?
or
if I can find a dos 3.3, and a copy turbo C compile and compile the edited
under dos 3.3?
what other option, to make this hardware and source code C that I have at
the moment, to make it work under XP environment.


Ask these questions in a appropriate newsgroup. All this has nothing
to do with the programming language C and several people already told
you to go to a MS related newsgroup because that's where it might be
on-topic and where you will find the experts for that kind of prolems.

Regards, Jens
--
\ Jens Thoms Toerring ___ Je***********@p hysik.fu-berlin.de
\______________ ____________ http://www.toerring.de
Nov 14 '05 #8
On Mon, 13 Dec 2004 15:41:24 +0100
jacob navia <ja***@jacob.re mcomp.fr> wrote:
developer wrote:


<snip DOS/Windows specific rubish.
what other option, to make this hardware and source code C that I
have at the moment, to make it work under XP environment.


Maybe it will work under the emulation layer, maybe not.

You will have to tweak the DOS emulation layer settings in the
properties of the shortcut to the program


You will also have to take it to either a DOS/Windows news group or to
email. This is COMPLETELY OFF TOPIC.
--
Flash Gordon
Living in interesting times.
Although my email address says spam, it is real and I read it.
Nov 14 '05 #9
developer wrote:
re-compile under dev -c++ bloodshed.

[...]
Please post implementation-specific questions to implementation-specific
newsgroups or mailing lists.

<off-topic>
I have no idea if this works (since the functions outportb and delay are
not part of C). The attempt to set DATA_PORT to a specific place in
memory is likely to fail; use your implementation-supplied mechanism for
that. Even in non-standard code like this, it would be a good idea to
stop flouting normal conventions with your use of all caps for things
that are not macros.

#include <pc.h> /* non-standard header */
#include <dos.h> /* non-standard header */

int main()
{
unsigned char i, j;
unsigned int CTRL_PORT, STAR_PORT;
unsigned int *DATA_PORT = (unsigned int *) 0x0408;
STAR_PORT = *DATA_PORT + 1;
CTRL_PORT = STAR_PORT + 1;
outportb(CTRL_P ORT, 0x00);
while (1) {
outportb(*DATA_ PORT, 0x00);
delay(2000);
outportb(*DATA_ PORT, 0xff);
delay(2000);
outportb(*DATA_ PORT, 0x00);
delay(2000);
j = 0x80;
for (i = 0; i < 8; i++) {
outportb(*DATA_ PORT, j);
j = j >> 1;
delay(2000);
}
}
return 0;
}

</offtopic>
Nov 14 '05 #10

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

Similar topics

1
4323
by: Nel | last post by:
I have a question related to the "security" issues posed by Globals ON. It is good programming technique IMO to initialise variables, even if it's just $foo = 0; $bar = ""; Surely it would be better to promote better programming than rely on PHP to compensate for lazy programming?
4
6429
by: Craig Bailey | last post by:
Anyone recommend a good script editor for Mac OS X? Just finished a 4-day PHP class in front of a Windows machine, and liked the editor we used. Don't recall the name, but it gave line numbers as well as some color coding, etc. Having trouble finding the same in an editor that'll run on OS X. -- Floydian Slip(tm) - "Broadcasting from the dark side of the moon"
1
4101
by: Chris | last post by:
Sorry to post so much code all at once but I'm banging my head against the wall trying to get this to work! Does anyone have any idea where I'm going wrong? Thanks in advance and sorry again for adding so much code... <TABLE border="1" bordercolor="#000000" cellspacing="0"> <TR>
11
4011
by: James | last post by:
My form and results are on one page. If I use : if ($Company) { $query = "Select Company, Contact From tblworking Where ID = $Company Order By Company ASC"; }
4
18540
by: Alan Walkington | last post by:
Folks: How can I get an /exec'ed/ process to run in the background on an XP box? I have a monitor-like process which I am starting as 'exec("something.exe");' and, of course the exec function blocks until something.exe terminates. Just what I /don't/ want. (Wouldn't an & be nice here! Sigh) I need something.exe to disconnect and run in the background while I
1
3704
by: John Ryan | last post by:
What PHP code would I use to check if submitted sites to my directory actually exist?? I want to use something that can return the server code to me, ie HTTP 300 OK, or whatever. Can I do this with sockets??
10
4225
by: James | last post by:
What is the best method for creating a Web Page that uses both PHP and HTML ? <HTML> BLA BLA BLA BLA BLA
8
4419
by: Beowulf | last post by:
Hi Guru's, I have a query regarding using PHP to maintain a user profiles list. I want to be able to have a form where users can fill in their profile info (Name, hobbies etc) and attach an image, which will upload the record to a mySql db so users can then either view all profiles or query.. I.e. show all males in UK, all femails over 35 etc. Now, I'm not asking for How to do this but more what would be the best way? I've looked at...
1
3639
by: joost | last post by:
Hello, I'm kind of new to mySQL but more used to Sybase/PHP What is illegal about this query or can i not use combined query's in mySQL? DELETE FROM manufacturers WHERE manufacturers_id NOT IN ( SELECT manufacturers_id FROM products )
2
106618
by: sky2070 | last post by:
i have two file with jobapp.html calling jobapp_action.php <HTML> <!-- jobapp.html --> <BODY> <H1>Phop's Bicycles Job Application</H1> <P>Are you looking for an exciting career in the world of cyclery? Look no further! </P> <FORM NAME='frmJobApp' METHOD=post ACTION="jobapp_action.php"> Please enter your name:
0
9491
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
10357
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
10163
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10104
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
9959
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
7510
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5532
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4063
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 we have to send another system
2
3668
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.