Where's the Edit Points Bar?! [LibreOffice Calc] - libreoffice

I am trying to edit a curve. LibreOffice Calc help says I need the Edit Points Bar. It also says it will come up when I click "edit control points". It's a big fat lie. Where's my Edit Points Bar?!

unfortunately in Calc, the edit points bar is not functioning. It would be perfect, if you could put a comment in the related bug entry: https://bugs.documentfoundation.org/show_bug.cgi?id=36943
This would show that there are people who need that feature. Maybe this directs developers on that issue.

Related

Justification Issues when aligning

I am trying to cleanly add reference tags in the links I have on various e books and websites. In order to align them, I hit tab on the next lines of the link. The problem is the justification breaks when I do this. Need advice, thank you
https://docs.google.com/document/d/1cLAXNuxo6ACpIndk3Y_V_R6f-RatXMGMreGoMpHONYA/edit?usp=drive_web (link to the word file)
If you're using MS WORD then at the top click on the icon and in the bottom you will file two option.Click on word options and go to the advanced tab.There is one column named as Compatibility,There you'll find layout options.Just search for
Do full justification the way WordPerfect 6.x for windows does.
Hope this will help you out.

Drag selected text to move it?

Is it possible to drag selected text to move it? This is in almost every other editor (not to mention text input fields in browsers.) I was surprised not to find it in VS Code.
Here is a gif example.
This is now supported as of Feb 2017 release (1.10.1) but it is disabled by default.
To enable it: Go to File > Preferences > Settings and add this line "editor.dragAndDrop": true
Source: https://code.visualstudio.com/updates/v1_10#_preview-drag-and-drop-selected-text
Looks like it's not yet implemented, but there's an open issue about it.
If you want to help without diving into the internals, go 👍 the issue to add to its social signal.
I don't believe so. Their site says that it is keyboard-optimized and keyboard-centric, so their idea might be that you should highlight some text, cut it, and past it where you want it rather than dragging it.
I talk about this problem on Github Microsoft page and Microsoft engineers see this. I hope to solve it. (Please support by 👍 on this page.)

Marking/commenting Matlab code?

Is there any way to mark Matlab code (in Matlab) via some kind of add-on? I'm looking for something similar to what Microsoft Word has with its "Review" mode where you can highlight a certain phrase/section and make a comment on the side. When I say "comment", I don't mean the regular code comments that you do with "%" in Matab.
I've googled for this, but I couldn't find anything. Anyone know if something like this exists that I may have missed? It would really help me when I'm reading someone else's code and I have to keep track of things / make comments for certain lines. Even if commenting isn't possible, it would be nice to be able to highlight certain lines via some kind of "highlighter" like the one in Word.
No. This isn't possible.
In fact, most editors and IDEs (if not ALL of them) that I know don't even support this feature as each IDE will have to be specific in the way this is implemented (à la Trojanian). The only thing that I can think of is if you print out the code in PDF, then use bubbles within the PDF viewer to tack on your comments.
However, if you want to highlight a specific line in your editor, you'll have to set this up in your settings. Go to preferences, then in the Editor / Debugger options, choose the Display option, then choose Highlight Current Line. Choose whichever colour you see fit. I'm running MATLAB R2013a on Mac OS, and this is the window I get:
You'll see the Highlight Current Line feature. Change that to whichever colour you want. I have it as gray because I do like having the current line highlighted.

How to combine multiple series types(bar and line) in a chart using Crystal Report

I've tried to use two series type in my chart but I don't know how, it's my first time using Crystal Report so i don't know if it's possible. I've seen some questions here in stackoverflow but they are saying i need to right click in my chart ->'Chart Options' -> 'Axis' but when i click there are just 3 options.
Template
General
Titles
I don't know if my version is updated and this action does not exist.
I believe i dont need to put any code here but if i need just tell me ok?
Thanks in advanced!
Not sure if you want to show some of the data as lines and some of the data as bars, if that is the case, follow these steps:
go to Preview mode for the report in the designer
right click on the bar that you wish to change to a line and choose Series Options
in the Show Selected Series As dialogue, choose Line
If you want to show all data as lines AND bars, then you should take a look at this.
Hope that helps,
Chris
EDIT:
Here is a screenshot of a report I quickly put together. I have 3 axis and 2 are bar and one is line. Unfortunately one axis has no data. I used the steps from above and it works just fine.
EDIT 2:
Here are screenshots of the process:
Insert the chart
Select a bar of the chart
Choose the display type
One axis now showing as a line
That's the best I can do for you.
EDIT 2:
After a lengthy email exchange, it turned out that he is trying to do this in Crystal Reports for Visual Studio. Unfortunately you can't do it in VS, at least up to version 2010. I suggested a workaround (link) in hopes that he can achieve his goal. Maybe an inquiry to SAP will shed some more light on this.

is there any eclipse plugin available for writing a memo on any line of code?

Doe anybody know of an eclipse plugin, which can be used to insert short text (in the form of memo) to remember what that line of code does or a block of code does to help me understand the existing code better and i can also refer it back later on.
Just like "Task" can be added on a line of code, although i can use "tasks" for this purpose, but that is not very convenient and intuitive.
If you want to add a short text to "remember what that line of code does or a block of code does to help me understand the existing code better", use comments. That's what they're for, and practically every formal language in the world has them.
If you want the ability to quickly jump to an arbitrary point in the code, using bookmarks is a convenient option - right click the bar immediately left of the text and choose to add a bookmark. You can then easily jump between bookmarks with the "bookmark view", which you can enable from the Window -> Show View menu.
The closest thing I can think of is bookmark support. There is native bookmark support in Eclipse and also several other vendors supply more function.
I'm assuming that there's a very good reason that you don't want to or can't modify the code.