473,382 Members | 1,180 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

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

ASCII to PDU convertion and back

Hi,

For my SMS-application I need to be able to send characters with accents
(like é and à). But this doesn't seem to work in Text Mode, so i will need
to do it in PDU Mode.

Does anybody has soem converting routines for that in VB.NET? I need my text
to be converted to a PDU-message, and back (for received messages).

Thansk in advance,

Pieter

Nov 22 '05 #1
20 5031
DraguVaso <pi**********@hotmail.com> wrote:
For my SMS-application I need to be able to send characters with accents
(like é and à). But this doesn't seem to work in Text Mode, so i willneed
to do it in PDU Mode.
How did you try to do it in text mode? You'll need to know the encoding
to use, of course. Note that characters with accents in *aren't* part
of ASCII.
Does anybody has soem converting routines for that in VB.NET? I need my text
to be converted to a PDU-message, and back (for received messages).


http://www.dreamfabric.com/sms/ seems to have quite a bit of
information in it...

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #2
I tryed to set them just in ir, but that didn't work.
for exemple:
AT+GMGS="0486112233"
This is my message with accents éà<Ctrl-Z>

Do you know the way to send the accents in text-mode? I assume it must
exist, but I can't find how :-(

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
DraguVaso <pi**********@hotmail.com> wrote:
For my SMS-application I need to be able to send characters with accents
(like é and à). But this doesn't seem to work in Text Mode, so i will need
to do it in PDU Mode.
How did you try to do it in text mode? You'll need to know the encoding
to use, of course. Note that characters with accents in *aren't* part
of ASCII.
Does anybody has soem converting routines for that in VB.NET? I need my text to be converted to a PDU-message, and back (for received messages).


http://www.dreamfabric.com/sms/ seems to have quite a bit of
information in it...

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #3
Pieter,

I do not know this stuff however afaik is Frites written as you see here,
not Fàités.

I was curious so I have looked at some pages and I found unicode 8859-1

http://www.dreamfabric.com/sms/

What is the standard in our language zone as far as I know.

http://de.wikipedia.org/wiki/Windows-1252#Windows-1252

(And I am curious where do you use that à and what kind of keyboards do you
use Querty or Azerty?)

Cor

"DraguVaso" <pi**********@hotmail.com> schreef in bericht
news:uX*************@TK2MSFTNGP15.phx.gbl...
Hi,

For my SMS-application I need to be able to send characters with accents
(like é and à). But this doesn't seem to work in Text Mode, so i will need
to do it in PDU Mode.

Does anybody has soem converting routines for that in VB.NET? I need my
text
to be converted to a PDU-message, and back (for received messages).

Thansk in advance,

Pieter

Nov 22 '05 #4
DraguVaso <pi**********@hotmail.com> wrote:
I tryed to set them just in ir, but that didn't work.
for exemple:
AT+GMGS="0486112233"
This is my message with accents éà<Ctrl-Z>

Do you know the way to send the accents in text-mode? I assume it must
exist, but I can't find how :-(


Well, what API are you using to submit the text to start with?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #5
DraguVaso <pi**********@hotmail.com> wrote:
I tryed to set them just in ir, but that didn't work.
for exemple:
AT+GMGS="0486112233"
This is my message with accents éà<Ctrl-Z>

Do you know the way to send the accents in text-mode? I assume it must
exist, but I can't find how :-(


Well, what API are you using to submit the text to start with?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #6
I'm not using an API: I'm using VB.NET 2005 with the SerialPort-object, if
that is what you mean...

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
DraguVaso <pi**********@hotmail.com> wrote:
I tryed to set them just in ir, but that didn't work.
for exemple:
AT+GMGS="0486112233"
This is my message with accents éà<Ctrl-Z>

Do you know the way to send the accents in text-mode? I assume it must
exist, but I can't find how :-(


Well, what API are you using to submit the text to start with?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #7
I'm not using an API: I'm using VB.NET 2005 with the SerialPort-object, if
that is what you mean...

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
DraguVaso <pi**********@hotmail.com> wrote:
I tryed to set them just in ir, but that didn't work.
for exemple:
AT+GMGS="0486112233"
This is my message with accents éà<Ctrl-Z>

Do you know the way to send the accents in text-mode? I assume it must
exist, but I can't find how :-(


Well, what API are you using to submit the text to start with?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #8
DraguVaso <pi**********@hotmail.com> wrote:
I'm not using an API: I'm using VB.NET 2005 with the SerialPort-object, if
that is what you mean...


Well, that *is* using an API. Anyway...

Anyway, how are you then writing the data to the port? Are you writing
a byte array, or a string? Either way, what encoding are you using?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #9
DraguVaso <pi**********@hotmail.com> wrote:
I'm not using an API: I'm using VB.NET 2005 with the SerialPort-object, if
that is what you mean...


Well, that *is* using an API. Anyway...

Anyway, how are you then writing the data to the port? Are you writing
a byte array, or a string? Either way, what encoding are you using?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #10
I'm really having troubles to udnerstand what you exactly need to know...

I'm writing a string all the time.
Some of my routines:

Public Sub PinInsert(ByVal strPin As String)
ModemStatus = enumModemStatus.PinValidation
WriteToComPort("AT+CPIN=" & strPin & cstCR)
MessageSilent("Inserting the Pin...")
End Sub

Public Sub SetToTextMode()
ModemStatus = enumModemStatus.TextModeValidation
WriteToComPort("AT+CMGF=1" & cstCR)
MessageSilent("Setting to TextMode...")
End Sub

Public Sub WriteToComPort(ByVal strMessage As String)
SerialPort1.Write(strMessage)
End Sub

Public Sub SmsSendNumber(ByVal strNumber As String)
ModemStatus = enumModemStatus.SmsNumberSending
WriteToComPort("AT+CMGS=" & Chr(34) & strNumber & Chr(34) & cstCR)
End Sub

Public Sub SmsSendMessage(ByVal strMessage As String)
ModemStatus = enumModemStatus.SmsMessageSending
WriteToComPort(strMessage & Chr(26))
End Sub
It works really fine with just normal text, but once I begin using accents
the accents don't come through....
strMessage is like this: "hello world" or "érica"

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
DraguVaso <pi**********@hotmail.com> wrote:
I'm not using an API: I'm using VB.NET 2005 with the SerialPort-object, if that is what you mean...


Well, that *is* using an API. Anyway...

Anyway, how are you then writing the data to the port? Are you writing
a byte array, or a string? Either way, what encoding are you using?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 22 '05 #11
I'm really having troubles to udnerstand what you exactly need to know...

I'm writing a string all the time.
Some of my routines:

Public Sub PinInsert(ByVal strPin As String)
ModemStatus = enumModemStatus.PinValidation
WriteToComPort("AT+CPIN=" & strPin & cstCR)
MessageSilent("Inserting the Pin...")
End Sub

Public Sub SetToTextMode()
ModemStatus = enumModemStatus.TextModeValidation
WriteToComPort("AT+CMGF=1" & cstCR)
MessageSilent("Setting to TextMode...")
End Sub

Public Sub WriteToComPort(ByVal strMessage As String)
SerialPort1.Write(strMessage)
End Sub

Public Sub SmsSendNumber(ByVal strNumber As String)
ModemStatus = enumModemStatus.SmsNumberSending
WriteToComPort("AT+CMGS=" & Chr(34) & strNumber & Chr(34) & cstCR)
End Sub

Public Sub SmsSendMessage(ByVal strMessage As String)
ModemStatus = enumModemStatus.SmsMessageSending
WriteToComPort(strMessage & Chr(26))
End Sub
It works really fine with just normal text, but once I begin using accents
the accents don't come through....
strMessage is like this: "hello world" or "érica"

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
DraguVaso <pi**********@hotmail.com> wrote:
I'm not using an API: I'm using VB.NET 2005 with the SerialPort-object, if that is what you mean...


Well, that *is* using an API. Anyway...

Anyway, how are you then writing the data to the port? Are you writing
a byte array, or a string? Either way, what encoding are you using?

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 22 '05 #12
DraguVaso <pi**********@hotmail.com> wrote:
I'm really having troubles to udnerstand what you exactly need to know...
<snip>
Public Sub WriteToComPort(ByVal strMessage As String)
SerialPort1.Write(strMessage)
End Sub


Okay, that's the bit I needed to know - you're using whatever encoding
the SerialPort class is providing by default.

Try changing that to ISO-8859-1:

SerialPort1.Encoding = Encoding.GetEncoding (28591);

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #13
DraguVaso <pi**********@hotmail.com> wrote:
I'm really having troubles to udnerstand what you exactly need to know...
<snip>
Public Sub WriteToComPort(ByVal strMessage As String)
SerialPort1.Write(strMessage)
End Sub


Okay, that's the bit I needed to know - you're using whatever encoding
the SerialPort class is providing by default.

Try changing that to ISO-8859-1:

SerialPort1.Encoding = Encoding.GetEncoding (28591);

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #14
Thanks, I changed it and tryed to send some messages but I always got this
answer when I got accents in it:

"met accenten hé jà bèkes

OK
"
And not the "+CMGS: " that I normally should receive...

Even messages without accent don't work: there I get this as an answer for
mthe modem:
"zonder accenten

ERROR
"
.... :-/

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
DraguVaso <pi**********@hotmail.com> wrote:
I'm really having troubles to udnerstand what you exactly need to
know...
<snip>
Public Sub WriteToComPort(ByVal strMessage As String)
SerialPort1.Write(strMessage)
End Sub


Okay, that's the bit I needed to know - you're using whatever encoding
the SerialPort class is providing by default.

Try changing that to ISO-8859-1:

SerialPort1.Encoding = Encoding.GetEncoding (28591);

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 22 '05 #15
Thanks, I changed it and tryed to send some messages but I always got this
answer when I got accents in it:

"met accenten hé jà bèkes

OK
"
And not the "+CMGS: " that I normally should receive...

Even messages without accent don't work: there I get this as an answer for
mthe modem:
"zonder accenten

ERROR
"
.... :-/

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
DraguVaso <pi**********@hotmail.com> wrote:
I'm really having troubles to udnerstand what you exactly need to
know...
<snip>
Public Sub WriteToComPort(ByVal strMessage As String)
SerialPort1.Write(strMessage)
End Sub


Okay, that's the bit I needed to know - you're using whatever encoding
the SerialPort class is providing by default.

Try changing that to ISO-8859-1:

SerialPort1.Encoding = Encoding.GetEncoding (28591);

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too

Nov 22 '05 #16
DraguVaso <pi**********@hotmail.com> wrote:
Thanks, I changed it and tryed to send some messages but I always got this
answer when I got accents in it:

"met accenten hé jà bèkes

OK
"
And not the "+CMGS: " that I normally should receive...

Even messages without accent don't work: there I get this as an answer for
mthe modem:
"zonder accenten

ERROR
"


Do you understand those messages? I don't know the language, I'm
afraid.

Messages without accents shouldn't be affected at all. Print out which
encoding the serial port class is using *before* you set it - that
could be useful information.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #17
DraguVaso <pi**********@hotmail.com> wrote:
Thanks, I changed it and tryed to send some messages but I always got this
answer when I got accents in it:

"met accenten hé jà bèkes

OK
"
And not the "+CMGS: " that I normally should receive...

Even messages without accent don't work: there I get this as an answer for
mthe modem:
"zonder accenten

ERROR
"


Do you understand those messages? I don't know the language, I'm
afraid.

Messages without accents shouldn't be affected at all. Print out which
encoding the serial port class is using *before* you set it - that
could be useful information.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #18
I added three things here:

- The encoding before I change the encoding
- the encoding after the changes
- how I open the port and change the encoding

The "met accenten hé jà bèkes" and the "zonder accenten" are the SMS that I
tryed to send: they are dutch...
Before the SerialPort1.Encoding = System.Text.Encoding.GetEncoding(28591)

?serialport1.Encoding
{System.Text.ASCIIEncoding}
[System.Text.ASCIIEncoding]: {System.Text.ASCIIEncoding}
ASCII: {System.Text.ASCIIEncoding}
asciiEncoding: {System.Text.ASCIIEncoding}
BigEndianUnicode: {System.Text.UnicodeEncoding}
BodyName: "us-ascii"
ChineseHZ: 52936
CodePage: 20127
CodePageASCII: 20127
CodePageBigEndian: 1201
CodePageDefault: 0
CodePageDLLKorean: 20949
CodePageGB2312: 20936
CodePageMacGB2312: 10008
CodePageMacKorean: 10003
CodePageNoMac: 2
CodePageNoOEM: 1
CodePageNoSymbol: 42
CodePageNoThread: 3
CodePageUnicode: 1200
CodePageUTF32: 65005
CodePageUTF32BE: 65006
CodePageUTF7: 65000
CodePageUTF8: 65001
CodePageWindows1252: 1252
dataItem: {System.Globalization.CodePageDataItem}
DecoderFallback: {System.Text.DecoderReplacementFallback}
Default: {System.Text.SBCSCodePageEncoding}
defaultEncoding: {System.Text.SBCSCodePageEncoding}
DuplicateEUCCN: 51936
emptyByteArray: {Length=0}
ENC50229: 50229
EncoderFallback: {System.Text.EncoderReplacementFallback}
EncodingName: "US-ASCII"
encodings: {Length=1}
EUCCN: 936
EUCJP: 51932
EUCKR: 51949
GB18030: 54936
HeaderName: "us-ascii"
InternalSyncObject: {Object}
IsBrowserDisplay: False
IsBrowserSave: False
ISCIIAssemese: 57006
ISCIIBengali: 57003
ISCIIDevanagari: 57002
ISCIIGujarathi: 57010
ISCIIKannada: 57008
ISCIIMalayalam: 57009
ISCIIOriya: 57007
ISCIIPanjabi: 57011
ISCIITamil: 57004
ISCIITelugu: 57005
IsMailNewsDisplay: True
IsMailNewsSave: True
ISO_8859_1: 28591
ISO_8859_8_Visual: 28598
ISO_8859_8I: 38598
ISO2022JP: 50220
ISO2022JPESC: 50221
ISO2022JPSISO: 50222
ISOKorean: 50225
ISOSimplifiedCN: 50227
IsReadOnly: True
IsSingleByte: True
Latin1: {System.Text.Latin1Encoding}
latin1Encoding: {System.Text.Latin1Encoding}
m_codePage: 20127
m_deserializedFromEverett: False
m_isReadOnly: True
MIMECONTF_BROWSER: 2
MIMECONTF_MAILNEWS: 1
MIMECONTF_SAVABLE_BROWSER: 512
MIMECONTF_SAVABLE_MAILNEWS: 256
s_InternalSyncObject: {Object}
Unicode: {System.Text.UnicodeEncoding}
unicodeEncoding: {System.Text.UnicodeEncoding}
UTF32: {System.Text.UTF32Encoding}
utf32Encoding: {System.Text.UTF32Encoding}
UTF7: {System.Text.UTF7Encoding}
utf7Encoding: {System.Text.UTF7Encoding}
UTF8: {System.Text.UTF8Encoding}
utf8Encoding: {System.Text.UTF8Encoding}
WebName: "us-ascii"
WindowsCodePage: 1252
After the SerialPort1.Encoding = System.Text.Encoding.GetEncoding(28591)

?serialport1.Encoding
{System.Text.Latin1Encoding}
[System.Text.Latin1Encoding]: {System.Text.Latin1Encoding}
ASCII: {System.Text.ASCIIEncoding}
asciiEncoding: {System.Text.ASCIIEncoding}
BigEndianUnicode: {System.Text.UnicodeEncoding}
BodyName: "iso-8859-1"
ChineseHZ: 52936
CodePage: 28591
CodePageASCII: 20127
CodePageBigEndian: 1201
CodePageDefault: 0
CodePageDLLKorean: 20949
CodePageGB2312: 20936
CodePageMacGB2312: 10008
CodePageMacKorean: 10003
CodePageNoMac: 2
CodePageNoOEM: 1
CodePageNoSymbol: 42
CodePageNoThread: 3
CodePageUnicode: 1200
CodePageUTF32: 65005
CodePageUTF32BE: 65006
CodePageUTF7: 65000
CodePageUTF8: 65001
CodePageWindows1252: 1252
dataItem: {System.Globalization.CodePageDataItem}
DecoderFallback: {System.Text.InternalDecoderBestFitFallback}
Default: {System.Text.SBCSCodePageEncoding}
defaultEncoding: {System.Text.SBCSCodePageEncoding}
DuplicateEUCCN: 51936
emptyByteArray: {Length=0}
ENC50229: 50229
EncoderFallback: {System.Text.InternalEncoderBestFitFallback}
EncodingName: "Western European (ISO)"
encodings: {Length=2}
EUCCN: 936
EUCJP: 51932
EUCKR: 51949
GB18030: 54936
HeaderName: "iso-8859-1"
InternalSyncObject: {Object}
IsBrowserDisplay: True
IsBrowserSave: True
ISCIIAssemese: 57006
ISCIIBengali: 57003
ISCIIDevanagari: 57002
ISCIIGujarathi: 57010
ISCIIKannada: 57008
ISCIIMalayalam: 57009
ISCIIOriya: 57007
ISCIIPanjabi: 57011
ISCIITamil: 57004
ISCIITelugu: 57005
IsMailNewsDisplay: True
IsMailNewsSave: True
ISO_8859_1: 28591
ISO_8859_8_Visual: 28598
ISO_8859_8I: 38598
ISO2022JP: 50220
ISO2022JPESC: 50221
ISO2022JPSISO: 50222
ISOKorean: 50225
ISOSimplifiedCN: 50227
IsReadOnly: True
IsSingleByte: True
Latin1: {System.Text.Latin1Encoding}
latin1Encoding: {System.Text.Latin1Encoding}
m_codePage: 28591
m_deserializedFromEverett: False
m_isReadOnly: True
MIMECONTF_BROWSER: 2
MIMECONTF_MAILNEWS: 1
MIMECONTF_SAVABLE_BROWSER: 512
MIMECONTF_SAVABLE_MAILNEWS: 256
s_InternalSyncObject: {Object}
Unicode: {System.Text.UnicodeEncoding}
unicodeEncoding: {System.Text.UnicodeEncoding}
UTF32: {System.Text.UTF32Encoding}
utf32Encoding: {System.Text.UTF32Encoding}
UTF7: {System.Text.UTF7Encoding}
utf7Encoding: {System.Text.UTF7Encoding}
UTF8: {System.Text.UTF8Encoding}
utf8Encoding: {System.Text.UTF8Encoding}
WebName: "iso-8859-1"
WindowsCodePage: 1252
How I open it:
SerialPort1.PortName = strPortName '"COM1"
SerialPort1.BaudRate = intBaudRate '9600
SerialPort1.DataBits = intDataBits '8
SerialPort1.Parity = parParity 'Parity.None
SerialPort1.StopBits = stbStopBits 'StopBits.One
SerialPort1.Handshake = hskHandShake 'Handshake.None
SerialPort1.Open()
SerialPort1.Encoding = System.Text.Encoding.GetEncoding(28591)

"Jon Skeet [C# MVP]" <sk***@pobox.com> wrote in message
news:MP************************@msnews.microsoft.c om...
DraguVaso <pi**********@hotmail.com> wrote:
Thanks, I changed it and tryed to send some messages but I always got this
answer when I got accents in it:

"met accenten hé jà bèkes

OK
"
And not the "+CMGS: " that I normally should receive...

Even messages without accent don't work: there I get this as an answer for
mthe modem:
"zonder accenten

ERROR
"


Do you understand those messages? I don't know the language, I'm
afraid.

Messages without accents shouldn't be affected at all. Print out which
encoding the serial port class is using *before* you set it - that
could be useful information.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #19
DraguVaso <pi**********@hotmail.com> wrote:
I added three things here:

- The encoding before I change the encoding
- the encoding after the changes
- how I open the port and change the encoding

The "met accenten hé jà bèkes" and the "zonder accenten" are the SMS that I
tryed to send: they are dutch...


<snip>

Ah, I see. Well, sending "zonder accenten" should be identical whether
you're using ASCII or ISO-8859-1.

On the other hand, I see you're using an unprintable character at the
end of the text. I'd strongly recommend sending any binary values as
bytes rather than still using the encoding for that.

Given that you're setting it to "text" mode though, I wonder whether
you might not be limited to ASCII anyway - you may need to change
something else to use non-ASCII characters.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 22 '05 #20
Given that you're setting it to "text" mode though, I wonder whether
you might not be limited to ASCII anyway - you may need to change
something else to use non-ASCII characters.


err... so trying to change to PDU would be the thing to do... :-/
Althoug I'm looking almost a whole day on that stuff, and I still wasn't
able to send a message with pdu :-(
Nov 22 '05 #21

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

Similar topics

17
by: DraguVaso | last post by:
Hi, For my SMS-application I need to be able to send characters with accents (like é and à). But this doesn't seem to work in Text Mode, so i will need to do it in PDU Mode. Does anybody has...
24
by: ChaosKCW | last post by:
Hi I am reading from an oracle database using cx_Oracle. I am writing to a SQLite database using apsw. The oracle database is returning utf-8 characters for euopean item names, ie special...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 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 former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

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.