473,394 Members | 2,160 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,394 software developers and data experts.

Outsmarting DOS C compiler to print to USB printer -- use DOS interrupt?

I have a Borland Turbo C++ compiler (though I never use the "plus-plus"
part), copyright 1990. I use this compiler to write simple programs,
one of which I am quite dependent on.

A month ago, my parallel-port-output printer died, and I got a Samsung
printer that takes info from the USB port. Every time I go into DOS
mode and try to send something to that printer, whether from a command
line ("dir>prn"), or from one of my programs, I get an error message.

It occured to me that if I called an interrupt from my DOS program,
that's how I could send characters to my USB printer. Is this possible,
and what interrupt do I use? To give an example, Interrupt 17h,
Function 00h is the (no longer useful) interrupt that sends a character
to the parallel port.

Jan 10 '06 #1
27 2791
tomhr said:
It occured to me that if I called an interrupt from my DOS program,
that's how I could send characters to my USB printer. Is this possible,
and what interrupt do I use? To give an example, Interrupt 17h,
Function 00h is the (no longer useful) interrupt that sends a character
to the parallel port.


It may well be possible, but your best bet of finding out would be over in
comp.os.msdos.programmer - where they specialise in this kind of thing.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Jan 10 '06 #2
It should (actually I am very certain that it is) possible to get USB
to function under dos, but based on my experience with USB (and dos) I
highly doubt that it will be as simple as calling an interrupt. The
problem is that you need a USB driver for dos and on top of that the
driver needs to know how to handle the type of device that you are
trying to communicate with.

If you are feeling adventurous, it may be possible to access the USB
host controller that is in the PC and you could then write a driver for
it. I also believe that someone (I forget who) did write a USB driver
for DOS, which may serve your needs. I stumbled across references to
this USB driver but I never downloaded it.

Jan 10 '06 #3

tomhr wrote:
I have a Borland Turbo C++ compiler (though I never use the "plus-plus"
part), copyright 1990. I use this compiler to write simple programs,
one of which I am quite dependent on.

A month ago, my parallel-port-output printer died, and I got a Samsung
printer that takes info from the USB port. Every time I go into DOS
mode and try to send something to that printer, whether from a command
line ("dir>prn"), or from one of my programs, I get an error message.

It occured to me that if I called an interrupt from my DOS program,
that's how I could send characters to my USB printer. Is this possible,
and what interrupt do I use? To give an example, Interrupt 17h,
Function 00h is the (no longer useful) interrupt that sends a character
to the parallel port.


I assume from "dos mode" and "usb" that you're running Windows.
I also assume that you have a Windows driver for the usb printer.

Try this.

Create a sharename for the printer.

[control panel/printers/right click/properties/sharing]

Start a dos command window.

C:/>net use \\mypc\printersharename LPT1:

(You can share your own resources with yourself.)

That will set the dos lpt1: printer hook to the windows usb driver.

Jan 10 '06 #4
"me********@aol.com" <me********@aol.com> writes:
[...]
I assume from "dos mode" and "usb" that you're running Windows.
I also assume that you have a Windows driver for the usb printer.

Try this.

Create a sharename for the printer.

[control panel/printers/right click/properties/sharing]

Start a dos command window.

C:/>net use \\mypc\printersharename LPT1:

(You can share your own resources with yourself.)

That will set the dos lpt1: printer hook to the windows usb driver.


The majority of us here have no idea whether that's correct. It could
be exactly the right solution, or it could have some subtle flaw
that's going to bite the user in an anatomically inconvenient location
at the worst possible moment.

That's why we encourage people to take system-specific discussions to
system-specific newsgroups. There are plenty of newsgroups that
discuss Windows and/or DOS programming. This isn't one of them.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 10 '06 #5

Keith Thompson wrote:
"me********@aol.com" <me********@aol.com> writes:
[...]
I assume from "dos mode" and "usb" that you're running Windows.
I also assume that you have a Windows driver for the usb printer.

Try this.

Create a sharename for the printer.

[control panel/printers/right click/properties/sharing]

Start a dos command window.

C:/>net use \\mypc\printersharename LPT1:

(You can share your own resources with yourself.)

That will set the dos lpt1: printer hook to the windows usb driver.
The majority of us here have no idea whether that's correct.


And I have no way of testing it.
It could be exactly the right solution,
It has been known to work in similar cases.
or it could have some subtle flaw
that's going to bite the user in an anatomically inconvenient location
at the worst possible moment.
More likely it simply won't work at all, or it will work when he
does dir>prn but fail when his application tries to print because
the application bypasses the OS hook.

That's why we encourage people to take system-specific discussions to
system-specific newsgroups. There are plenty of newsgroups that
discuss Windows and/or DOS programming. This isn't one of them.
And the person to scold is the OP. What kind of spiteful person
withholds an answer from some poor slob simply because his
post was off-topic? Would you ask a drowning person to fill out
a form before throwing him a life preserver?

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.


Jan 10 '06 #6
"me********@aol.com" <me********@aol.com> writes:
Keith Thompson wrote:

[snip]
That's why we encourage people to take system-specific discussions to
system-specific newsgroups. There are plenty of newsgroups that
discuss Windows and/or DOS programming. This isn't one of them.


And the person to scold is the OP. What kind of spiteful person
withholds an answer from some poor slob simply because his
post was off-topic? Would you ask a drowning person to fill out
a form before throwing him a life preserver?


The OP may or may not deserve to be scolded. The person who posted a
detailed off-topic answer certainly does.

Drowning people don't post to Usenet; this wasn't a life-and-death
emergency. The OP asked for help. The best way to provide that help
is to redirect him to a newsgroup where the regulars actually know
something about the topic. If you happen to have the expertise and
want to help personally, you can post in the appropriate newsgroup
yourself.

If you think we should answer any and all questions here, maybe we
should change the name of the newsgroup to comp.whatever, or perhaps
whatever.whatever.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 10 '06 #7
me********@aol.com wrote:
What kind of spiteful person withholds an answer from some poor slob
simply because his post was off-topic? Would you ask a drowning person to
fill out a form before throwing him a life preserver?


Depends. Did he cross-post?

S.
Jan 10 '06 #8
On 10 Jan 2006 13:48:40 -0800, in comp.lang.c , "me********@aol.com"
<me********@aol.com> wrote:
And the person to scold is the OP.
And the idiot who replies to his posts, thus encouraging the OP to
think he's in the right place. .
What kind of spiteful person
withholds an answer from some poor slob simply because his
post was off-topic?
Who said to withold an answer? The answer is however not to tell him
something free from peer review, but to direct him to where he will
learn more and more correctly.
Would you ask a drowning person to fill out
a form before throwing him a life preserver?


Since when has anyone drowned trying to write USB drivers?c

oh, and you need a bett4er newsreader, yours doesn't snip sigs :-(
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst> We must do something. This is something. Therefore, we must do this.

Mark McIntyre
--

----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
Jan 10 '06 #9

Keith Thompson wrote:
"me********@aol.com" <me********@aol.com> writes:
Keith Thompson wrote: [snip]
That's why we encourage people to take system-specific discussions to
system-specific newsgroups. There are plenty of newsgroups that
discuss Windows and/or DOS programming. This isn't one of them.


And the person to scold is the OP. What kind of spiteful person
withholds an answer from some poor slob simply because his
post was off-topic? Would you ask a drowning person to fill out
a form before throwing him a life preserver?


The OP may or may not deserve to be scolded. The person who posted a
detailed off-topic answer certainly does.


Sorry, but when I see three balls, I must juggle them. When I see
two towers, I must walk between them. When I see a cry for help,
I must reply to it.

Drowning people don't post to Usenet; this wasn't a life-and-death
emergency.
No one is criticising you for not knowing the answer.
The OP asked for help.
And if I know the answer, I'm going to reply, damn the rules.
The best way to provide that help
is to redirect him to a newsgroup where the regulars actually know
something about the topic.
That would be the best way. And the best way to relieve famine
in Sudan is to end the war. But that doesn't mean we shouldn't
try to help those starving in the refugee camps.
If you happen to have the expertise and
want to help personally, you can post in the appropriate newsgroup
yourself.
If _I_ have to expend a lot of effort, it won't happen.

If you think we should answer any and all questions here, maybe we
should change the name of the newsgroup to comp.whatever, or perhaps
whatever.whatever.
Look, once the message has been posted here, it's water
under the bridge. I have no problems with Richard Heathfield's
reply where he suggested the OP take his question elsewhere.
I did not feel any obligation to suggest that since it had already
been done. And if I was going to play newscop, I would still say
"This is off-topic here, but try this..."

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.


Jan 10 '06 #10

Mark McIntyre wrote:
On 10 Jan 2006 13:48:40 -0800, in comp.lang.c , "me********@aol.com"
<me********@aol.com> wrote:
And the person to scold is the OP.
And the idiot who replies to his posts, thus encouraging the OP to
think he's in the right place. .
What kind of spiteful person
withholds an answer from some poor slob simply because his
post was off-topic?


Who said to withold an answer? The answer is however not to tell him
something free from peer review, but to direct him to where he will
learn more and more correctly.
Would you ask a drowning person to fill out
a form before throwing him a life preserver?


Since when has anyone drowned trying to write USB drivers?c

oh, and you need a bett4er newsreader, yours doesn't snip sigs :-(


And yours doesn't spellcheck.
--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst> We must do something. This is something. Therefore, we must do this.

Mark McIntyre
--

----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----


Jan 10 '06 #11
Guys, if I'd _wanted_ to be (knowingly) off-topic, I would have written
"George W. Bush is a slug" or "I love satellite radio."

Is getting this program to print to a USB printer "life or death"? No.
But the alternative to tweaking the DOS-platform program I have now is
to buy a Windows C compiler, learning all about how it worked, then
rewriting and debugging my old DOS-C program to work under Windows.
This would take weeks, possibly months. Posting here seemed to (newbie)
me to be the better alternative.

Hey, I can appreciate someone posting, "I don't have an answer for you,
but this other newsgroup might." But to declare that I deserve scolding
because I didn't know this was the "wrong" group? Sheesh. May you never
wind up in an emergency room without your insurance card.

I'm gone. Noway2 and mensanator, thanks for your help.

Jan 11 '06 #12
In article <11**********************@g44g2000cwa.googlegroups .com>,
me********@aol.com <me********@aol.com> wrote:
....
And the person to scold is the OP. What kind of spiteful person
withholds an answer from some poor slob simply because his
post was off-topic? Would you ask a drowning person to fill out
a form before throwing him a life preserver?


In this newsgroup, yes, they would.

Actually, they would explain, in a artfully crafted, 172 line post, why
life preservers are O/T. While the person drowns, of course...

Jan 11 '06 #13
me********@aol.com wrote:
Keith Thompson wrote:
"me********@aol.com" <me********@aol.com> writes:
Keith Thompson wrote:
[snip] That's why we encourage people to take system-specific
discussions to system-specific newsgroups. There are
plenty of newsgroups that discuss Windows and/or DOS
programming. This isn't one of them.

And the person to scold is the OP. What kind of spiteful
person withholds an answer from some poor slob simply
because his post was off-topic? Would you ask a drowning
person to fill out a form before throwing him a life
preserver?


The OP may or may not deserve to be scolded. The person who
posted a detailed off-topic answer certainly does.

.... snip ...
And if I know the answer, I'm going to reply, damn the rules.


So you deserve scolding, for ignoring topicality (of which you are
obviously aware). You can always post an answer of the form:

"Go to group xxx. I am adding that to the distribution and setting
followups to that."

after which you can go to group xxx yourself (assuming things are
topical there) and answer away to your hearts content.

There is no need for you to foul this newsgroup with this off-topic
nonsense.

--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
More details at: <http://cfaj.freeshell.org/google/>
Jan 11 '06 #14

Chuck F. wrote:
me********@aol.com wrote:
Keith Thompson wrote:
"me********@aol.com" <me********@aol.com> writes:
Keith Thompson wrote:
[snip]

> That's why we encourage people to take system-specific
> discussions to system-specific newsgroups. There are
> plenty of newsgroups that discuss Windows and/or DOS
> programming. This isn't one of them.

And the person to scold is the OP. What kind of spiteful
person withholds an answer from some poor slob simply
because his post was off-topic? Would you ask a drowning
person to fill out a form before throwing him a life
preserver?

The OP may or may not deserve to be scolded. The person who
posted a detailed off-topic answer certainly does.

... snip ...

And if I know the answer, I'm going to reply, damn the rules.


So you deserve scolding, for ignoring topicality (of which you are
obviously aware). You can always post an answer of the form:

"Go to group xxx. I am adding that to the distribution and setting
followups to that."

after which you can go to group xxx yourself (assuming things are
topical there) and answer away to your hearts content.

There is no need for you to foul this newsgroup with this off-topic
nonsense.


Why do you continue to foul this newsgroup with that off-topic
rant about the Google reply link? It's been pointed out to you
that the information is wrong and incomplete. Why do you
continue to use it?

The OP is at least able to learn. Why can't you?

--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
More details at: <http://cfaj.freeshell.org/google/>


Jan 11 '06 #15
tomhr wrote:
.... snip ...
Hey, I can appreciate someone posting, "I don't have an answer
for you, but this other newsgroup might." But to declare that I
deserve scolding because I didn't know this was the "wrong"
group? Sheesh. May you never wind up in an emergency room
without your insurance card.


I don't believe anybody scolded _you_ for OT posting. Newbies
generally don't know the first time. But the many others who
replied with OT data rather than referring you do deserve scolding,
because they (presumably) should know better.

--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
More details at: <http://cfaj.freeshell.org/google/>
Jan 11 '06 #16
"tomhr" <to***@awesomenet.net> writes:
Guys, if I'd _wanted_ to be (knowingly) off-topic, I would have written
"George W. Bush is a slug" or "I love satellite radio."

Is getting this program to print to a USB printer "life or death"? No.
But the alternative to tweaking the DOS-platform program I have now is
to buy a Windows C compiler, learning all about how it worked, then
rewriting and debugging my old DOS-C program to work under Windows.
This would take weeks, possibly months. Posting here seemed to (newbie)
me to be the better alternative.

Hey, I can appreciate someone posting, "I don't have an answer for you,
but this other newsgroup might." But to declare that I deserve scolding
because I didn't know this was the "wrong" group? Sheesh. May you never
wind up in an emergency room without your insurance card.

I'm gone. Noway2 and mensanator, thanks for your help.


I don't recall anyone scolding you. I certainly didn't. My scolding
was directed at the person who posted an inappropriate followup rather
than telling you where to find reliable information.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 11 '06 #17
"me********@aol.com" <me********@aol.com> writes:
Chuck F. wrote:

[...]
There is no need for you to foul this newsgroup with this off-topic
nonsense.


Why do you continue to foul this newsgroup with that off-topic
rant about the Google reply link? It's been pointed out to you
that the information is wrong and incomplete. Why do you
continue to use it?

The OP is at least able to learn. Why can't you?
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
More details at: <http://cfaj.freeshell.org/google/>


I've been following both this newsgroup and the groups.google.com
problems very closely. I don't recall seeing anyone mention that the
standard Google advice or Chris F.A. Johnson's web page is incorrect.
(I remember someone recently saying that it didn't work for him, he
didn't give any details.)

If there are any errors in <http://cfaj.freeshell.org/google/> I'm
sure Chris F.A. Johnson would be interested in knowing about it. So
would I. If you have some concrete information on this, feel free to
send an e-mail message directly to me or to post to this newsgroup
(not both, please).

I know that groups.google.com has been having some problems in the
last few days; if those problems make the standard advice invalid, I'm
not aware of it.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 11 '06 #18
Keith Thompson <ks***@mib.org> writes:
"me********@aol.com" <me********@aol.com> writes:
Chuck F. wrote:

[...]
There is no need for you to foul this newsgroup with this off-topic
nonsense.


Why do you continue to foul this newsgroup with that off-topic
rant about the Google reply link? It's been pointed out to you
that the information is wrong and incomplete. Why do you
continue to use it?

The OP is at least able to learn. Why can't you?
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
More details at: <http://cfaj.freeshell.org/google/>


I've been following both this newsgroup and the groups.google.com
problems very closely. I don't recall seeing anyone mention that the
standard Google advice or Chris F.A. Johnson's web page is incorrect.
(I remember someone recently saying that it didn't work for him, he
didn't give any details.)

If there are any errors in <http://cfaj.freeshell.org/google/> I'm
sure Chris F.A. Johnson would be interested in knowing about it. So
would I. If you have some concrete information on this, feel free to
send an e-mail message directly to me or to post to this newsgroup
(not both, please).


Ok, I got an e-mail response from mensanator. As far as I can tell,
his complaint is that there's *another* workaround that Chris's web
page doesn't mention.

But it appears that the whole thing is now moot. I'll start a new
thread with the details (look for an article with "Google" in the
subject header).

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Jan 11 '06 #19
On 10 Jan 2006 15:03:27 -0800, in comp.lang.c , "me********@aol.com"
<me********@aol.com> wrote:

And yours doesn't spellcheck.


It spellchecks just fine, I don't use such a stupid facility for
trivia like emails and usenet.
Mark McIntyre
--

----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
Jan 12 '06 #20
On 10 Jan 2006 18:52:34 -0800, in comp.lang.c , "tomhr"
<to***@awesomenet.net> wrote:
May you never
wind up in an emergency room without your insurance card.


Its a sad reflection on a society, the idea that you can end up in an
ER and not get treated if you don't have your papers on you.
Mark McIntyre
--

----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
Jan 12 '06 #21
On 10 Jan 2006 14:56:24 -0800, in comp.lang.c , "me********@aol.com"
<me********@aol.com> wrote:

Keith Thompson wrote:
"me********@aol.com" <me********@aol.com> writes:
Sorry, but when I see three balls, I must juggle them. When I see
two towers, I must walk between them.


And presumably when you see two sharks you must swim to them, or three
landmines, you must hop on them. Are you really so stupid?
Drowning people don't post to Usenet; this wasn't a life-and-death
emergency.


No one is criticising you for not knowing the answer.


But we /are/ criticising you for posting an unverifiable answer in the
wrong group.

And by the way, your assumption that Keith doesn't know the answer is
egregious.
And if I know the answer, I'm going to reply, damn the rules.


So you consider yourself "above the law" and "better" than the rest of
us. What a prick you are.

Seriously, please go and read the back history of why we discourage
offtopic posting. If you still consider yours
Mark McIntyre
--

----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups
----= East and West-Coast Server Farms - Total Privacy via Encryption =----
Jan 12 '06 #22

Mark McIntyre wrote:
On 10 Jan 2006 15:03:27 -0800, in comp.lang.c , "me********@aol.com"
<me********@aol.com> wrote:

And yours doesn't spellcheck.
It spellchecks just fine, I don't use such a stupid facility for
trivia like emails and usenet.


And as a consequence, your usenet posts contain stupid typos.

And I don't bother to manually snip sigs, since they are included
in the quoting.

Let me guess, you were so diasappointed that my Google post
had quoted context that you had to grasp at the un-snipped sig
straw.

Was I close?
Mark McIntyre


Jan 12 '06 #23
<me********@aol.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
"me********@aol.com" <me********@aol.com> writes:

And the person to scold is the OP. What kind of spiteful person
withholds an answer from some poor slob simply because his
post was off-topic? Would you ask a drowning person to fill out
a form before throwing him a life preserver?


I'm bleeding profusely. Whom should I call? The blood bank,
or a paramedic? Both handle blood. Which can save me?
Were I to call the blood bank, would it be rude for them to
tell me they can't help me and tell me to call a paramedic?
-Mike
Jan 12 '06 #24

Mike Wahler wrote:
<me********@aol.com> wrote in message
news:11**********************@g44g2000cwa.googlegr oups.com...
"me********@aol.com" <me********@aol.com> writes: And the person to scold is the OP. What kind of spiteful person
withholds an answer from some poor slob simply because his
post was off-topic? Would you ask a drowning person to fill out
a form before throwing him a life preserver?


I'm bleeding profusely. Whom should I call? The blood bank,
or a paramedic? Both handle blood. Which can save me?
Were I to call the blood bank, would it be rude for them to
tell me they can't help me and tell me to call a paramedic?


Would it be rude of them to tell you how to apply a tourniquet
while waiting for the paramedics to arrive?

Sure, they don't have to help and no one would fault them
for not having tourniquet advice.

What I fail to understand is why you would yell at them
for trying to help.


-Mike


Jan 12 '06 #25
me********@aol.com wrote:
Mark McIntyre wrote:
"me********@aol.com" <me********@aol.com> wrote:

And yours doesn't spellcheck.


It spellchecks just fine, I don't use such a stupid facility
for trivia like emails and usenet.


And as a consequence, your usenet posts contain stupid typos.

And I don't bother to manually snip sigs, since they are
included in the quoting.

Let me guess, you were so diasappointed that my Google post had
quoted context that you had to grasp at the un-snipped sig
straw.

Was I close?


PLONK, for useless idiocy.

--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
More details at: <http://cfaj.freeshell.org/google/>
Jan 12 '06 #26
Mike Wahler said:
I'm bleeding profusely.


Call bind(). For further assistance, please ask in comp.unix.programmer.

--
Richard Heathfield
"Usenet is a strange place" - dmr 29/7/1999
http://www.cpax.org.uk
email: rjh at above domain (but drop the www, obviously)
Jan 12 '06 #27
"Richard Heathfield" <in*****@invalid.invalid> wrote in message
news:dq**********@nwrdmz02.dmz.ncs.ea.ibs-infra.bt.com...
Mike Wahler said:
I'm bleeding profusely.


Call bind(). For further assistance, please ask in comp.unix.programmer.


Richard, I can always count on you to make me smile. :-)

-Mike
Jan 12 '06 #28

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

Similar topics

0
by: KohlerTommy | last post by:
In my application I need to give the user the ability to print duplex if the selected printer supports duplex printing. Many of the printer options do not make much sense in my application, and...
0
by: Tessa | last post by:
Is there any security reason why you cannot print to a network printer from ASP.NET under IIS6 on Windows 2003 server? I'm using ASP.NET code to print to a server print queue using...
3
by: Sarah | last post by:
I would like my vb.net software running on an independent system be able to read the data going from a proprietary system to a dot-matrix printer. Few questions - are there any commercially...
4
by: yom | last post by:
Hi all. I have to write a Windows Application presenting a textbox to the user. Each time the user press a button on the main form I need to print the text of the textbox. I try using the...
1
by: Michael Beck | last post by:
I need to select one of about 15 printers, which I have been able to do. Then I need to set that printer as the printer to use, run a Crystal Reports reports, and track if/when the printing job...
12
by: Peter Lin | last post by:
Hey, I am just wondering if anyone has got any idea of setting up a new class so that you could just print like the old ways with the printer class, since I am writing a program that really...
5
by: Raman | last post by:
Hello friends, I want to print an ID card. I have one Windows Form that contains front and back side. The printer is printing both front and back side at a time. I am trying to send both sides...
7
by: Mark | last post by:
Hi, I am creating application in VB 2005. and when I print report it adds extra 0.45 cm margin on left and top, and the reason for this is physical margins of printer. Is it possible to change...
24
by: Tony Girgenti | last post by:
Hello. Developing a Windows Form program in VS.NET VB, .NET Framework 1.1.4322 on a windows XP Pro, SP2. Before printing a document, i want to set the font to a font that is only available...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
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...
0
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
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
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...
0
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...

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.