Questions tagged [context-sensitive-help]

25 questions
1
vote
1 answer

How can I provide context-sensitive help within a .NET application that loads content from external URLs?

We have a Plone-based intranet populated with documentation for our .NET app, but currently there is no connection between the context-sensitive (F1) help in the .NET app and the Plone content. Rather than having to create and "push"-distribute (a)…
dysolution
  • 11
  • 2
1
vote
1 answer

Context-sensitive help for menu items in Windows Forms

I am implementing context-sensitive help for an existing WinForms app built in Visual Studio .NET. I have added a HelpProvider to the form and set the HelpNamespace property to a wonderful .chm that covers every control and menu item on the form. I…
JonP
  • 627
  • 6
  • 13
1
vote
3 answers

Context Sensitive Help in pure E4 Eclipse RCP Application

I'm new to Eclipse E4 RCP and am looking for some guidance on how to implement a light-weight context-sensitive help solution in a pure E4 Eclipse RCP application. I'm hoping to have this work in a similar format to other applications that I've…
Marv
  • 77
  • 9
1
vote
1 answer

HelperProvider always open the index file

I want to build a context sensitive help for a winforms application, to do this I use a class with a reference to the HelperProvider component, HelpNamespace is set to the index html file and when a form is loaded I register each control in the form…
DevTun
  • 865
  • 1
  • 8
  • 24
1
vote
0 answers

Visual C++ IDE: add custom context-sensitive-helper

I would like to be able to get context-sensitive help for the OpenCV functions inside Visual Studio IDE (i.e. press F1 inside the editor). Does Visual Studio support adding custom help sources and if yes, how? Thanks!
cDc
  • 317
  • 3
  • 9
0
votes
1 answer

Context sensitive help in GWT application

I need to provide context sensitive help in my GWT application. For this every GWT view will have many help links each of which will open a dialog box with appropriate help text (different for each link). The problem is I cannot have so many…
nabeelmukhtar
  • 1,371
  • 15
  • 24
0
votes
1 answer

Replacement for VS + Resharper

I'm a long time c# dev, who are currently looking into possibly expanding to java, or typescript. I am currently relying a lot on the efficiency of resharper/VS to do a lot of manual things for me, such as: Ctrl + t to search for file/class/method…
0
votes
0 answers

How can I add a context sensitive help button for a specific dialog control

I have an MFC app (10 year old app), which has context sensitive help for each dialog. I want to add help on a specific combobox, as well as a little question mark button next to this control. Users can either select the combobox and hit F1, or…
user1961169
  • 783
  • 6
  • 17
0
votes
2 answers

Good way to add context-sensitive help to an existing Windows Forms application?

I have to add database-driven tooltips to an existing WinForms App, big one. C# and .NET 3.5 I'd like to avoid having to drop new controls for this, and the user has to be able to edit the help tooltips. My best guess is to wrap the existing…
GR7
  • 5,083
  • 8
  • 48
  • 66
-3
votes
1 answer

Context Sensitive Lindenmayer System

I'm working on implementation the ContextSensitive L-system from "Algoritmic Beauty of Plants", but I don't get the same results as in the book. If i correctly understood when I have axiom like this: 0 < 1 > 0 -> 1F1 1 < 0 > 1 -> 1 1 < 1 > 1 ->…
Menos
  • 361
  • 2
  • 7
1
2