Disable UltraGrid splitter effect - vb.net

I have an UltraWinGrid in my project and I need to stop the user creating a "mirror" split (hard to explain, so image attached)
This was done by clicking and dragging the small rectangle above the scroll bar - is this an extra band being created?
How do I disable the ability to do this?

Thanks to #AndrewMorton in the comments. This is the guide for correcting this issue, should anyone else face this in the future.
1) Go to the form design view and click the "Start" button on the UltraWinGrid
2) Click on "Feature Picker" at the resulting window.
3) Finally, find the "Scrolling" options and expand this, and untick the two CheckBox options under "Scroll Style".
Save the changes and test and you should find that the issue is resolved.

Related

Intellij quick documentation is displayed in a separate panel instead of a popup

When I click Option-Q on an identifier to display the Quick-Documentation Popup instead of it showing up in a small dialog directly above the identifier it is showing in a large separate panel to the left.
This is suboptimal because the content is not where I wanted to look for it and because the new panel overlays the entire right side of the editor panel (and its contents).
Is there a Preferences setting for getting this to be a popup again?
Aha! There's a configuration menu that can be accessed by Right clicking on the top bar of the tool window. The first option Open as Popup is the one I wanted:

Location of YouTrack "Time Tracking Settings"

I want to tell YouTrack about the number of hours in a working day and I've found this.
But I'm completely unable to reach such a page though the UI. I see I can PUT such info, but I've no wish to go there. My project Dashboard looks nothing like the one in those docs
I've googled my heart out looking for an answer, and I've clicked everything in sight inside YouTrack ... with no success. Any feedback much appreciated
Turns out my "Administration", "Help" and "Services" icons are all invisible on my dashboard! But hover the mouse over them and the mouse icon changes and the hover-over text appears!
Once I click on the invisible "Administration" icon I see "Project-Related Settings / Time Tracking" and all is good

Disabling Menu Item

One of my e-books explains how to add a new menu item. Well, that's not very difficult to figure out. It's not difficult to figure out how to link an IBAction to a new menu item, either. But this book and Google search results don't explain how to disable a menu item. More particularly, I want to disable Preferences and Quit, depending on where window currently appears. If the application currently shows the Preferences window, I want to disable these menu items.
Suppose that I have an IBOutlet named preferencesMenu and then that I have
[preferencesMenu setEnabled:NO];
, that won't disable the menu item in question. So how do you disable a particular menu item?
Thank you for your advice.
Tom
NSMenuItems disable themselves automatically only if both their target and selector are nil and NULL respectively.
[preferencesMenu setTarget:nil];
[preferencesMenu setAction:NULL];
Which a quick test reveals leads to this:
Just set the target to nil. I'll do the job.
[preferencesMenu setTarget:nil];

How to disable autocompleet intellisence when pressing spacebar in vb.net

While creating test in vb.net i found it pretty annoying when you start typing and autocompleet changes a class to something similar looking even it is a class you don't want.
Image to illustrate :
In the picture you can see I am trying to setup a controller (this controller does not exist at the moment) so when i press the spacebar i will get DienstControllerFacts.
How do you disable this sort of auto-correction?
I can't see your image, but I think this gives you some keyboard shortcuts for dealing with your issue, and this shows you how to modify the settings.
Did you tried to selecting Common tab instead of All tab in the intellisense window?

openWYSIWYG - dynamic positioning

I am making a webpage that has different areas that can be clicked on to change the contents.
I want to set it up so that when you click on an area, an openWYSIWYG editor appears in the middle of the screen with the rest of the page greyed out.
I have achieved this except for the positioning of the editor. When you click on a section I have a div with 50% opacity cover the page and a textarea appear in the middle. But when I try to attach the editor to the textarea, it loses it's position and falls behind the div not in front of it like the textarea is.
Can anyone suggest a way of centring the openWYSIWYG editor?
You're looking for Modal positioning. Here's one solution:
http://jqueryui.com/demos/dialog/#modal-form
Basically, apply the Jquery Dialog to the div that holds your WYSIWYG. Don't forget a submit button.
Just a quick heads up--I went through quite a bit of headache dealing with WYSIWYG editors for client-facing sites a few months back. It seems that clicking the "paste from WORD" button was a very difficult task to figure out. Word-pasted code can wreak havoc on websites, overrunning text fields in the database. I gave it a try on their demo (which also doesn't support webkit based browsers) and the result wasn't pretty. The only two options I found to solve this were to sanitize code on the back end, or to use CKEditor. I chose the latter because it was so easy. Take a look at CK, it's a great piece of free code.