473,582 Members | 3,083 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Question: How do I format printing in python

Hi All,

How do I format printed data in python?
I could not find this in the Python Reference Manual:
http://docs.python.org/ref/print.html
Nor could I find it in Matloff's great tutorial:
http://heather.cs.ucdavis.edu/~matlo...ythonIntro.pdf
For example, how do I turn this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

into this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

Thank you
Jun 27 '08 #1
8 2566
format the strings:
http://www.python.org/doc/2.1.3/lib/...q-strings.html

jo************@ yahoo.com wrote:
Hi All,

How do I format printed data in python?
I could not find this in the Python Reference Manual:
http://docs.python.org/ref/print.html
Nor could I find it in Matloff's great tutorial:
http://heather.cs.ucdavis.edu/~matlo...ythonIntro.pdf
For example, how do I turn this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

into this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

Thank you
Jun 27 '08 #2
On Jun 23, 12:12*pm, joemacbusin...@ yahoo.com wrote:
Hi All,

How do I format printed data in python?
I could not find this in the Python Reference Manual:http://docs.python.org/ref/print.html
Nor could I find it in Matloff's great tutorial:http://heather.cs.ucdavis.edu/~matlo...ythonIntro.pdf

For example, how do I turn this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

into this:

512 * * * *Jun * 5 * 2004 * *X11r6
22 * * * * Jan * 17 *2005 * *a2p
22 * * * * Jan * 17 *2005 * *acctcom
5374 * * * Sep * 15 *2002 * *acledit
5664 * * * May * 13 *2004 * *aclget
12020 * * *May * 13 *2004 * *aclput
115734 * * Jun * 2 * 2004 * *adb
46518 * * *Jun * 4 * 2004 * *admin
66750 * * *Sep * 16 *2002 * *ali
1453 * * * Sep * 15 *2002 * *alias
28150 * * *Jun * 4 * 2004 * *alog
15 * * * * May * 12 *2005 * *alstat

Thank you

You could do this:

data = ['512 Jun 5 2004 X11r6 ', \
'22 Jan 17 2005 a2p', \
'22 Jan 17 2005 acctcom ', \
'5374 Sep 15 2002 acledit ', \
'5664 May 13 2004 aclget ', \
'12020 May 13 2004 aclput ', \
'115734 Jun 2 2004 adb ', \
'46518 Jun 4 2004 admin ', \
'66750 Sep 16 2002 ali ', \
'1453 Sep 15 2002 alias ', \
'28150 Jun 4 2004 alog ', \
'15 May 12 2005 alstat ']

for i in data:
d = i.split()
print d[0].ljust(9),
print d[1].ljust(6),
print d[2].ljust(4),
print d[3].ljust(7),
print d[4].ljust(9)
which gives you

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat
or perhaps this:

for i in data:
d = i.split()
print d[0].rjust(9),
print d[1].ljust(6),
print d[2].zfill(2).ljust (4),
print d[3].ljust(7),
print d[4].ljust(9)

which gives this (if you want the digits in the numbers to
line up):

512 Jun 05 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 02 2004 adb
46518 Jun 04 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 04 2004 alog
15 May 12 2005 alstat
Jun 27 '08 #3
On Jun 23, 12:47*pm, Mensanator <mensana...@aol .comwrote:
On Jun 23, 12:12*pm, joemacbusin...@ yahoo.com wrote:


Hi All,
How do I format printed data in python?
I could not find this in the Python Reference Manual:http://docs.python..org/ref/print.html
Nor could I find it in Matloff's great tutorial:http://heather.cs.ucdavis.edu/~matlo...ythonIntro.pdf
For example, how do I turn this:
512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat
into this:
512 * * * *Jun * 5 * 2004 * *X11r6
22 * * * * Jan * 17 *2005 * *a2p
22 * * * * Jan * 17 *2005 * *acctcom
5374 * * * Sep * 15 *2002 * *acledit
5664 * * * May * 13 *2004 * *aclget
12020 * * *May * 13 *2004 * *aclput
115734 * * Jun * 2 * 2004 * *adb
46518 * * *Jun * 4 * 2004 * *admin
66750 * * *Sep * 16 *2002 * *ali
1453 * * * Sep * 15 *2002 * *alias
28150 * * *Jun * 4 * 2004 * *alog
15 * * * * May * 12 *2005 * *alstat
Thank you

You could do this:

data = ['512 Jun 5 2004 X11r6 ', \
'22 Jan 17 2005 a2p', \
'22 Jan 17 2005 acctcom ', \
'5374 Sep 15 2002 acledit ', \
'5664 May 13 2004 aclget ', \
'12020 May 13 2004 aclput ', \
'115734 Jun 2 2004 adb ', \
'46518 Jun 4 2004 admin ', \
'66750 Sep 16 2002 ali ', \
'1453 Sep 15 2002 alias ', \
'28150 Jun 4 2004 alog ', \
'15 May 12 2005 alstat ']

for i in data:
* d = i.split()
* print d[0].ljust(9),
* print d[1].ljust(6),
* print d[2].ljust(4),
* print d[3].ljust(7),
* print d[4].ljust(9)

which gives you

512 * * * Jun * *5 * *2004 * *X11r6
22 * * * *Jan * *17 * 2005 * *a2p
22 * * * *Jan * *17 * 2005 * *acctcom
5374 * * *Sep * *15 * 2002 * *acledit
5664 * * *May * *13 * 2004 * *aclget
12020 * * May * *13 * 2004 * *aclput
115734 * *Jun * *2 * *2004 * *adb
46518 * * Jun * *4 * *2004 * *admin
66750 * * Sep * *16 * 2002 * *ali
1453 * * *Sep * *15 * 2002 * *alias
28150 * * Jun * *4 * *2004 * *alog
15 * * * *May * *12 * 2005 * *alstat

or perhaps this:

for i in data:
* d = i.split()
* print d[0].rjust(9),
* print d[1].ljust(6),
* print d[2].zfill(2).ljust (4),
* print d[3].ljust(7),
* print d[4].ljust(9)

which gives this (if you want the digits in the numbers to
line up):

* * * 512 Jun * *05 * 2004 * *X11r6
* * * *22 Jan * *17 * 2005 * *a2p
* * * *22 Jan * *17 * 2005 * *acctcom
* * *5374 Sep * *15 * 2002 * *acledit
* * *5664 May * *13 * 2004 * *aclget
* * 12020 May * *13 * 2004 * *aclput
* *115734 Jun * *02 * 2004 * *adb
* * 46518 Jun * *04 * 2004 * *admin
* * 66750 Sep * *16 * 2002 * *ali
* * *1453 Sep * *15 * 2002 * *alias
* * 28150 Jun * *04 * 2004 * *alog
* * * *15 May * *12 * 2005 * *alstat
In retrospect, that looks kind of clunky. If it was for my
use, I'd do

for i in data:
d = i.split()
print d[0].rjust(9),
print d[1].rjust(6),
print d[2].zfill(2),
print d[3].ljust(7),
print d[4].ljust(9)

which looks like:

512 Jun 05 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 02 2004 adb
46518 Jun 04 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 04 2004 alog
15 May 12 2005 alstat

Jun 27 '08 #4

<jo************ @yahoo.comwrote in message
news:c6******** *************** ***********@y21 g2000hsf.google groups.com...
Hi All,

How do I format printed data in python?
I could not find this in the Python Reference Manual:
http://docs.python.org/ref/print.html
Nor could I find it in Matloff's great tutorial:
http://heather.cs.ucdavis.edu/~matlo...ythonIntro.pdf
For example, how do I turn this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

into this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

Thank you
data = '''\
512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat
'''.split('\n')

for line in data:
elements = line.split()
print '%-11s%-6s%-4s%-8s%s' % tuple(elements)

-Mark

Jun 27 '08 #5
jo************@ yahoo.com wrote:
Hi All,

How do I format printed data in python?
I could not find this in the Python Reference Manual:
http://docs.python.org/ref/print.html
Nor could I find it in Matloff's great tutorial:
http://heather.cs.ucdavis.edu/~matlo...ythonIntro.pdf
For example, how do I turn this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

into this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

Thank you
data = '''512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat
'''

for entry in data.rstrip().s plit('\n'):
items = entry.split(' ')
print "%-6s %3s %2s %4s %-7s" % tuple(items)
Jun 27 '08 #6
Le Tuesday 24 June 2008 05:33:01 Larry Bates, vous avez écrit*:
jo************@ yahoo.com wrote:
...
>
data = '''512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat
'''

for entry in data.rstrip().s plit('\n'):
items = entry.split(' ')
print "%-6s %3s %2s %4s %-7s" % tuple(items)
In python, str objects have a splitlines method for portability it is better,
a shorthand for split(os.sep).
--
_____________

Maric Michaud
Jun 27 '08 #7
Lie
On Jun 24, 12:12*am, joemacbusin...@ yahoo.com wrote:
Hi All,

How do I format printed data in python?
I could not find this in the Python Reference Manual:http://docs.python.org/ref/print.html
Nor could I find it in Matloff's great tutorial:http://heather.cs.ucdavis..edu/~matl...ythonIntro.pdf

For example, how do I turn this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

into this:

512 * * * *Jun * 5 * 2004 * *X11r6
22 * * * * Jan * 17 *2005 * *a2p
22 * * * * Jan * 17 *2005 * *acctcom
5374 * * * Sep * 15 *2002 * *acledit
5664 * * * May * 13 *2004 * *aclget
12020 * * *May * 13 *2004 * *aclput
115734 * * Jun * 2 * 2004 * *adb
46518 * * *Jun * 4 * 2004 * *admin
66750 * * *Sep * 16 *2002 * *ali
1453 * * * Sep * 15 *2002 * *alias
28150 * * *Jun * 4 * 2004 * *alog
15 * * * * May * 12 *2005 * *alstat

Thank you
There is string formatting

print formatspecifier _string % data_sequence
The format specifier is similar to the one used in C's printf, and
data sequence may be tuple or list. Dictionary may also be used for
data, but it has its own way to specify string formatting since
dictionary is unordered but "indexed" by the dict key.
Jun 27 '08 #8
Lie wrote:
On Jun 24, 12:12 am, joemacbusin...@ yahoo.com wrote:
>Hi All,

How do I format printed data in python?
I could not find this in the Python Reference Manual:http://docs.python.org/ref/print.html
Nor could I find it in Matloff's great tutorial:http://heather.cs.ucdavis.edu/~matlo...ythonIntro.pdf

For example, how do I turn this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

into this:

512 Jun 5 2004 X11r6
22 Jan 17 2005 a2p
22 Jan 17 2005 acctcom
5374 Sep 15 2002 acledit
5664 May 13 2004 aclget
12020 May 13 2004 aclput
115734 Jun 2 2004 adb
46518 Jun 4 2004 admin
66750 Sep 16 2002 ali
1453 Sep 15 2002 alias
28150 Jun 4 2004 alog
15 May 12 2005 alstat

Thank you

There is string formatting

print formatspecifier _string % data_sequence
The format specifier is similar to the one used in C's printf, and
data sequence may be tuple or list. Dictionary may also be used for
data, but it has its own way to specify string formatting since
dictionary is unordered but "indexed" by the dict key.
I have attached a prog I wrote to answer someones elses similar problem.

- Paddy.

from StringIO import StringIO
from pprint import pprint as pp
left_justified = False
debug = False

textinfile = '''I$created$a$ solution$for$a$ program$I$am$wr iting$that
makes$columns$l ine$up$when$out putted$to$the$c ommand
line.$I$am$new$ to$Python,$and$ am$hoping$I$mig ht$get
some$input$on$t his$topic.$In$t he$text$file$th at$the
program$reads,$ the$fields$(col umns)$are$delim ited$by
'dollar'$and$th e$records$(line s)$are$delimite d$by
newlines$'\\n'. $So$one$line$lo oks$like:$'''

"""

Solution to problem posed at:
http://www.kbrandt.com/2008/06/getti...olumns-to.html

Output is the following if left-justified:

# Column-aligned output:
I created a solution for a program I am writing that
makes columns line up when outputted to the command
line. I am new to Python, and am hoping I might get
some input on this topic. In the text file that the
program reads, the fields (columns) are delimited by
'dollar' and the records (lines) are delimited by
newlines '\n'. So one line looks like:

And like this if not left-justified:

# Column-aligned output:
I created a solution for a program I am writing that
makes columns line up when outputted to the command
line. I am new to Python, and am hoping I might get
some input on this topic. In the text file that the
program reads, the fields (columns) are delimited by
'dollar' and the records (lines) are delimited by
newlines '\n'. So one line looks like:

"""

infile = StringIO(textin file)

fieldsbyrecord= [line.strip().sp lit('$') for line in infile]
if debug: print "fieldsbyrecord :"; print (fieldsbyrecord )
# pad to same number of fields per record
maxfields = max(len(record) for record in fieldsbyrecord)
fieldsbyrecord = [fields + ['']*(maxfields - len(fields))
for fields in fieldsbyrecord]
if debug: print "padded fieldsbyrecord: "; print (fieldsbyrecord )
# rotate
fieldsbycolumn = zip(*fieldsbyre cord)
if debug: print "fieldsbycolumn :"; print (fieldsbycolumn )
# calculate max fieldwidth per column
colwidths = [max(len(field) for field in column)
for column in fieldsbycolumn]
if debug: print "colwidths: "; print (colwidths)
# pad fields in columns to colwidth with spaces
# (Use -width for left justification,)
fieldsbycolumn = [ ["%*s" % (-width if left_justified else width, field) for field in column]
for width, column in zip(colwidths, fieldsbycolumn) ]
if debug: print "padded fieldsbycolumn: "; print (fieldsbycolumn )
# rotate again
fieldsbyrecord = zip(*fieldsbyco lumn)
if debug: print "padded rows and fields, fieldsbyrecord: "; print (fieldsbyrecord )
# printit
print "\n# Column-aligned output:"
for record in fieldsbyrecord:
print " ".join(reco rd)

Jun 27 '08 #9

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

Similar topics

4
2772
by: Rusty Shackleford | last post by:
I have a Summer in front of me without any school, and I'd like to add a new format for python print strings that will show any number in a binary representation. For example: >>> '%b' % 3 11 >>> '%b' % 5 101 You get the idea. I've written functions that return strings, so that
2
1242
by: RickMuller | last post by:
I had a question about the second edition of the Python Cookbook. I own and have thoroughly enjoyed the first edition of the Python Cookbook. How much of the second edition is new? Is this "essential reading" if I already have the first edition? I realize that there are new sections that describe language features through Python 2.4, but is...
0
1026
by: met | last post by:
I want to have the python equivalent function of this (that checks email format) function CheckEmail($Email = "") { if (ereg("]+@]+\.]+", $Email)) { return true; } else { return false; }
1
1201
by: phil cunningham | last post by:
Hi there We have a CAD application written in C# that consists of a series of shapes. We need to product a range of reports for a range of different paper sizes (letter size to 36" paper). Each report contains a Table of Data together with a scaled picture of the shapes, filled in different colors - it may be one page or can be serval...
0
867
by: Shawn | last post by:
Hi all; i have create a number of different classes each one handles the creation of a report to be printed. i'm trying to create a method that would print each report in one shot using the same printdocument object. however when i go to do the printing it's printing all the reports on the same page. any ideas on hwo to do this? i'm stumped....
0
1177
by: marcobonifazi | last post by:
Hello! After a Opengl 2 Postscript conversion, I want to print my ps files to a plotter. My intents are to read istantaneous characteristics of the plotter, for example the kind of paper it has at a moment, ecc. Is there any python module/extension to interface my program to the printer (something like a "Print Manager") and to handle the...
4
1212
by: Redefined Horizons | last post by:
I still new to Python, and I've only dabbled in C, but I've got my first project I need to tackle that involves both languages. I was hoping to get some advice on how to proceed. There is a third-party application that I need to work with. It is closed-source, but it exposes a C API. I want to wrap this C API so that it is available from...
16
7496
by: baber | last post by:
Hi I am a beguinner, I would like to known how to convert a file in gpr format to csv format by using python. Baber
1
3788
by: sami | last post by:
Hi Is it possible to print the output of a Python script inside PHP? e.g. I have a python script that has the contens: pyScript.py: #!/usr/bin/python print "hello world"
0
7809
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...
0
8312
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...
0
8183
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...
1
5685
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...
0
5366
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3809
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3835
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1413
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1147
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...

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.