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

Which newsgroup / forum ....

I see many different questions here. Some of us are obviously *very* new
to vb and others are 'old pros'. As you've seen from my 'frustrated'
posts, I'm obviously stuck on a problem that invariably gets handed back to
me with the same solution - which I don't understand how to make work for
what I'm trying to do.

</frustration> are there other newsgroups / forums that any of you would
recommend that will take the time (have the patience) to help us *at our
<my> level* or tolerantly explain why we can't do what we're trying to do
the way we're trying to do it.

I *do* appreciate the responses that I've gotten, I just don't see how to
implement them into what I'm trying to do. thanks //al
Nov 21 '05 #1
4 948
Here is a fabulous forum for VB.NET. Its a Microsoft run website & a few
Microsoft programmers answer your questions - 5 stars:

http://www.gotdotnet.com/Community/M...oard.aspx?id=8

A great forum for beginners questions is:

http://www.developerfusion.co.uk/forums/forum-7

There is another Microsoft run forum, but it has never ever seemed to get
off the ground. Its split into different areas like, forms, security,
controls..:

http://www.windowsforms.net

One thing about WinForms is that it is moderator edited & takes a while for
your post to go through. Once 'Nata1' (moderator) sees that you aren't
SPAMMING then you won't be moderated & your posts show up immediately.

---------------------------------------------------------------------

What question are you asking which gets the same answer you don't understand?
Nov 21 '05 #2
On Fri, 11 Feb 2005 18:15:03 -0800, Crouchie1998 wrote:
Here is a fabulous forum for VB.NET. Its a Microsoft run website & a few
Microsoft programmers answer your questions - 5 stars:

http://www.gotdotnet.com/Community/M...oard.aspx?id=8

A great forum for beginners questions is:

http://www.developerfusion.co.uk/forums/forum-7

There is another Microsoft run forum, but it has never ever seemed to get
off the ground. Its split into different areas like, forms, security,
controls..:

http://www.windowsforms.net

One thing about WinForms is that it is moderator edited & takes a while for
your post to go through. Once 'Nata1' (moderator) sees that you aren't
SPAMMING then you won't be moderated & your posts show up immediately.

---------------------------------------------------------------------

What question are you asking which gets the same answer you don't understand?


It's the same old 'I've gotten some information fron a form and I'm trying
to print lines of text from within a <literal> mess of calculations. It's
a matter of print a line or three, perform more calcs and print a few more
lines of text. (I realilze GDI+ and draw - not print a line). With the
exception of one from Allen everything I get back is how to print a:
1) rtf document
2) block of text encoded in the program
3) big X on a page
4) pretty picture
I can see the call to draw the line of text and increment the pixel
position for the next line in all of the examples (except the x of course),
but fail to see how to extract just that portion of the sub and encapsulate
the remaining calcs / prints within the open doc / close doc structure.

The one from Allen was interesting in that goes direct to the printer (it
says) but again, it's printing a graphic and I can't convince my
BrotherPrinter that it's a HP (control codes, etc) and don't really want to
try that route.

I'm pushing 60, programmed in COBOL, (GW)BASIC(A), Fortran, etc from my
20's up till about 10 years ago when I took a break... and cannot get my
head around how to do things 'the VB way' (or is that 'the VISUAL way'??).
Nov 21 '05 #3
"al jones" <al**********@shotmail.com> wrote in message
news:q7***************************@40tude.net...
<<>>
What question are you asking which gets the same answer you don't
understand?


It's the same old 'I've gotten some information fron a form and I'm trying
to print lines of text from within a <literal> mess of calculations. It's
a matter of print a line or three, perform more calcs and print a few more
lines of text. (I realilze GDI+ and draw - not print a line). With the
exception of one from Allen everything I get back is how to print a:
1) rtf document
2) block of text encoded in the program
3) big X on a page
4) pretty picture
I can see the call to draw the line of text and increment the pixel
position for the next line in all of the examples (except the x of
course),
but fail to see how to extract just that portion of the sub and
encapsulate
the remaining calcs / prints within the open doc / close doc structure.

The one from Allen was interesting in that goes direct to the printer (it
says) but again, it's printing a graphic and I can't convince my
BrotherPrinter that it's a HP (control codes, etc) and don't really want
to
try that route.

I'm pushing 60, programmed in COBOL, (GW)BASIC(A), Fortran, etc from my
20's up till about 10 years ago when I took a break... and cannot get my
head around how to do things 'the VB way' (or is that 'the VISUAL way'??).


It's the object orientated way mate.
Can't say as I've ever tried to do what you're doing so I don't have
anything ready to roll.

In DotNet everything is an object.
Even what you might think of as a variable.
So you declare something. stick a value in it and can convert it using
methods of that variable.
whatever.tostring
That's of weird if you think in cobol terms.

What you're looking for is some sort of file object.
You got to open it, chances are open is some sort of method.
You'll then use methods of this to bung data into the file.

All output I ever did to a printer was from crystal reports.
Seeing as that handles the actual writing to the printer that bit 's easy.
You could write the data to a table, base a report on that table and it'd do
the biz.
Bit long winded though.
Unless - and this is why I mention it - you write the guff away to a
database anyhow.
In which case a form write the data away and a crystal report prints it
starts to look a lot more logical.

Otherwise I think I'd write the stuff to a flat file.
Then chuck the flat file at the printer, and I guess you already have some
info on how to do that.
Nov 21 '05 #4
Al,

I think that it is the way you ask your question that makes it almost
impossible for most of us to answer them.

You do them as far as I have seen them in the way of. "I have done this, and
that, unfortunatly I cannot succeed".

And than we see some code we cannot go in either direction because probably
most of us don't understand it (anymore)..

When you ask, I want to achieve this or that, than it becomes suddenly much
more easier to answer you, and than it is as well not important if you are a
beginner or a pro. Mostly it is even posibly to give you a link with
samples.

I hope this gives some ideas for you.

Cor
Nov 21 '05 #5

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

Similar topics

14
by: Hafez | last post by:
Hi there every body I'm new in programming in windows. I know how to program with C and C++ in DOS but I don't know select which one for programming in windows: Visual C++ ,C# or Delphi. ...
0
by: Kokopiko | last post by:
Is there any possibility to export all posts from phpBB forum to local news group server ?? We`ve got news group and phpBB forum eighter on the local area network. Some people rather like WWW...
7
by: tommy | last post by:
hello again, i have a small selfbuilded forum for vba. my questions is: is it possible to connect my forum to the microsoft-newsgroup -- like all the posting in my forum will we posted to the...
44
by: sasan3 | last post by:
Please read below for my collective response to recent posts on this topic. First a repeat of my suggestion: "Anytime you feel you are in a position to answer a question, but don't feel like...
84
by: pamelafluente | last post by:
With reference to the CDMA (computer.databases.ms-access) newsgroup "charter", as posted on http://www.mvps.org/access/netiquette.htm, Mike Noel has honored my just-created Forum of posting "a...
2
by: SparkPlug | last post by:
Given the following as true... 1. the importance of good software design & architecture, and learning good habits early on - even right at the beginning of a development career 2. the lack of...
14
by: Osiris | last post by:
time for a Joomla newsgroup ! support the initiative on news.groups and nl.newsgroups. search there with keyword "joomla" and give your opinion, with solid arguments.
31
by: Don Leverton | last post by:
Hi Folks, I've been away from this NG for quite a while, persuing other interests etc. I have made a few posts / replies here lately, and find this whole NG thing a little awkward and...
9
by: Jim Langston | last post by:
Does anyone know of a newsgroup appropriate for discussing DevC++? I looked for a Dev C++ newsgroup and mingw newsgroup but couldn't find one. -- Jim Langston tazmaster@rocketmail.com
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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
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
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

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.