Forum Replies Created
- AuthorPosts
- WernerParticipant
It is possible that this error is caused by Windows!
Edition Windows 11 Home Insider Preview
Version 22H2
Operating System Build 25262.1000
Windows Feature Experience Pack 1000.25262.1000.0October 3, 2021 at 2:18 am in reply to: Input placement is not where intended when inserting between quotes #27840WernerParticipantselect * from information_schema.columns where column_name like '%\$0'%
you must protect the dollar sign \$ as it is used as a placeholder.
select * from information_schema.columns where column_name like '%${1:variable}'%
WernerParticipantMissing: “Edit this toolbar…”
in the context menu.WernerParticipantwith $(CurText) it’s the same problem.
JavaScript Macro:
#title=”Search engine”
#tooltip=”Search”,1031
if (document.selection.Text !=”) {
var string = document.selection.Text;
string = string.replace(/ /gi, “%20”);
alert(string);
var url = ‘https://www.bing.com/search?q=’ + string;
window.open(url, ‘w’); // not work!
}WernerParticipantWernerParticipantThank you, it worked.
WernerParticipantThank you, it worked.
WernerParticipantI have problems with the highlight display.
The characters are not displayed in color.WernerParticipantWonderful that works, thank you very much
WernerParticipantWith $(CurText) it’s the same problem.
JavaScript Macro:
#title=”Search engine”
#tooltip=”Search”,1031
if (document.selection.Text !=”) {
var string = document.selection.Text;
string = string.replace(/ /gi, “%20”);
alert(string);
var url = ‘https: //www. bing.com/search?q=’ + string;
window.open(url, ‘w’); // not work!
}WernerParticipantI sent an email to tech@emurasoft.
WernerParticipantThe paste button always inserts the same value from the clipboard selection list!
WernerParticipantThank you for the correction, they have an excellent tool here.
WernerParticipantVersion 20.4.905
Error in Narrowing
Background and color are whiteWernerParticipantthe same problem is here (Version 20.4.902)
WernerParticipantThank you, it worked.
WernerParticipantWidows-Insider Feedback (Microsoft):
“Windows has several audio volume APIs – IAudioEndpointVolume, IChannelAudioVolume, ISimpleAudioVolume, and IAudioEndpointVolume. These APIs can be used to change the volume and/or mute state of the stream, app, or audio device.
In build 17063 a change was made to these APIs to have them return S_FALSE (1) if the requested change was a no-op.
This broke apps (like Firefox) which request changes (that may be no-ops) and then explicitly check the return value against S_OK (0).”
WernerParticipantThank you very much
you’re Santa Claus yet
or a programmer with a heart?WernerParticipantnotepad++ can this
WernerParticipantThe source (C++) can be found under:
http://www.hartwork.org/doku.php?id=downloads
(ColorPicker EmEditor Plugin) - AuthorPosts