For Programmers: Free Programming Magazines  


Home > Archive > Visual Basic Enterprise > September 2005 > Help system









You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

 

Author Help system
josh7

2005-09-07, 7:02 pm

I am using help system in my application. I am using visual basic 6.When I
press F1, I can see the help system.But when I click the application, the
help system is going behind the application.What should i do to have the help
system on top of the application.
Thanks

Ken Halter

2005-09-07, 7:02 pm

"josh7" <josh7@discussions.microsoft.com> wrote in message
news:B35FBE30-F7E1-42F2-B251-24385B380D24@microsoft.com...
>I am using help system in my application. I am using visual basic 6.When I
> press F1, I can see the help system.But when I click the application, the
> help system is going behind the application.What should i do to have the
> help
> system on top of the application.
> Thanks


If you're using this class module, there's an AlwaysOnTop property (or
similar) you can set.

Help Technology Centre - HTML Help Visual Basic Class Module
http://www.mvps.org/htmlhelpcenter/...p/hhvbclas.html

--
Ken Halter - MS-MVP-VB - http://www.vbsight.com
DLL Hell problems? Try ComGuard - http://www.vbsight.com/ComGuard.htm
Please keep all discussions in the groups..


Ralph

2005-09-07, 7:02 pm


"Ken Halter" <Ken_Halter@Use_Sparingly_Hotmail.com> wrote in message
news:%235WT%23M%23sFHA.2076@TK2MSFTNGP14.phx.gbl...
> "josh7" <josh7@discussions.microsoft.com> wrote in message
> news:B35FBE30-F7E1-42F2-B251-24385B380D24@microsoft.com...
I[color=darkred]
the[color=darkred]
>
> If you're using this class module, there's an AlwaysOnTop property (or
> similar) you can set.
>
> Help Technology Centre - HTML Help Visual Basic Class Module
> http://www.mvps.org/htmlhelpcenter/...p/hhvbclas.html
>
> --
> Ken Halter - MS-MVP-VB - http://www.vbsight.com
> DLL Hell problems? Try ComGuard - http://www.vbsight.com/ComGuard.htm
> Please keep all discussions in the groups..
>
>


"If you're using this class module, ..."
And if you are not, immediately do so. <g>

-ralph


Ken Halter

2005-09-07, 7:02 pm

"Ralph" <nt_consulting64@yahoo.com> wrote in message
news:_JGdna5Au6hr-YLeRVn-rw@arkansas.net...
>
> "If you're using this class module, ..."
> And if you are not, immediately do so. <g>
>
> -ralph


It's pretty darn handy eh? <g>

--
Ken Halter - MS-MVP-VB - http://www.vbsight.com
DLL Hell problems? Try ComGuard - http://www.vbsight.com/ComGuard.htm
Please keep all discussions in the groups..


Ralph

2005-09-07, 7:02 pm


"Ken Halter" <Ken_Halter@Use_Sparingly_Hotmail.com> wrote in message
news:O5eUto$sFHA.3752@TK2MSFTNGP09.phx.gbl...
> "Ralph" <nt_consulting64@yahoo.com> wrote in message
> news:_JGdna5Au6hr-YLeRVn-rw@arkansas.net...
>
> It's pretty darn handy eh? <g>
>
> --
> Ken Halter - MS-MVP-VB - http://www.vbsight.com
> DLL Hell problems? Try ComGuard - http://www.vbsight.com/ComGuard.htm
> Please keep all discussions in the groups..
>
>


Definitely.

Back when VB originally switched from their old help to html help, being the
guru that I am, I copied some snippets from a magazine and wrote my own.
After many years of patching, copy 'n pasting, swearing, and often coding
myself into a hole.

I stepped back and thought I might take a look around to see what the others
were doing...

The only problem was, it took me awhile to clean out all that copyright
stuff, change comments, rename variables, move things around, etc until it
looked like something I wrote. <g>

-ralph


Kevin Provance

2005-09-12, 7:00 pm

>> The only problem was, it took me awhile to clean out all that copyright
stuff, change comments, rename variables, move things around, etc until it
looked like something I wrote. <g> <<

Maybe I'm speaking out of turn here, but isn't that considered unethical?
Credit should be given where credit is due. If someone did that to my hard
work, I would be a little nonplussed about it.

- Kev


Ken Halter

2005-09-12, 7:00 pm

"Kevin Provance" <casey@tpasoft.com> wrote in message
news:uIUlBN%23tFHA.204@TK2MSFTNGP10.phx.gbl...
> stuff, change comments, rename variables, move things around, etc until it
> looked like something I wrote. <g> <<
>
> Maybe I'm speaking out of turn here, but isn't that considered unethical?
> Credit should be given where credit is due. If someone did that to my
> hard work, I would be a little nonplussed about it.
>
> - Kev


imo, that only applies to code that you're going to publish. My "copy" of
that class is stripped of all code that I don't personally use and the stuff
I do use has been modified to my "standards" (which is almost identical to
the published hungarian rules) CodeSMART has something called a 'Naming
Standards Manager' that will flag stuff that doesn't conform to your
company's standards... so, I use that and fix it until it stops complaining
<g> I don't intend to publish the results (or give a copy to anyone) and
claim them as my own.... or suggest people use my copy instead of the HTML
Help Center's copy. I admit that it's a bit of a "grey area" but.... who
writes code anymore? <g> Most apps are compiled from snips you get here,
there and everywhere.

--
Ken Halter - MS-MVP-VB - http://www.vbsight.com
DLL Hell problems? Try ComGuard - http://www.vbsight.com/ComGuard.htm
Please keep all discussions in the groups..


Bob Butler

2005-09-12, 7:00 pm

"Ken Halter" <Ken_Halter@Use_Sparingly_Hotmail.com> wrote in message
news:O84qsX%23tFHA.2952@TK2MSFTNGP10.phx.gbl
> "Kevin Provance" <casey@tpasoft.com> wrote in message
> news:uIUlBN%23tFHA.204@TK2MSFTNGP10.phx.gbl...
>
> imo, that only applies to code that you're going to publish. My
> "copy" of that class is stripped of all code that I don't personally
> use and the stuff I do use has been modified to my "standards" (which
> is almost identical to the published hungarian rules) CodeSMART has
> something called a 'Naming Standards Manager' that will flag stuff
> that doesn't conform to your company's standards... so, I use that
> and fix it until it stops complaining <g> I don't intend to publish
> the results (or give a copy to anyone) and claim them as my own....
> or suggest people use my copy instead of the HTML Help Center's copy.
> I admit that it's a bit of a "grey area" but.... who writes code
> anymore? <g> Most apps are compiled from snips you get here, there
> and everywhere.


"snips" from "here, there and everywhere" I agree would just be
incorporated. Larger chunks of code that come with copyright notes at the
very least need to keep the original copyright with additional comments that
the code has been modified or "adapted from" or something along those lines.
Even if you don't intend to distribute source in any form now who knows what
may happen down the line. It'd be way too easy to pull part or all of the
code out and used later as an example.

--
Reply to the group so all can participate
VB.Net: "Fool me once..."

Ralph

2005-09-12, 9:57 pm


"Kevin Provance" <casey@tpasoft.com> wrote in message
news:uIUlBN%23tFHA.204@TK2MSFTNGP10.phx.gbl...
> stuff, change comments, rename variables, move things around, etc until it
> looked like something I wrote. <g> <<
>
> Maybe I'm speaking out of turn here, but isn't that considered unethical?
> Credit should be given where credit is due. If someone did that to my

hard
> work, I would be a little nonplussed about it.
>
> - Kev
>


Hey, I was only joking to illustrate my jealousy as mine tended to fail and
his didn't. Also it is close to 70k, with a couple hundred defined constants
and enums - anyone that would set down and change them all would have a real
case of the green eye.

In fact I have always used that particular class essentially intact - just
as it comes, the only change to my copy is Rational Rose tags - that makes
the code essentially unreadable anyway. (I did remove the Declare
Statements - but that is because the Voices wouldn't stop until I did.)

Besides why fool with it, it works, and I had already put all of my time on
a chm helper that I wanted to.

-ralph


Sponsored Links







Also available: Server administration forum archive | Web Design forum archive | Software forum archive | Hardware reviews archive

Copyright 2009 codecomments.com