Forum Replies Created
- AuthorPosts
Werner
ParticipantIt 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 #27840Werner
Participantselect * 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}'%
Werner
ParticipantMissing: “Edit this toolbar…”
in the context menu.Werner
Participantwith $(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!
}Werner
ParticipantWerner
ParticipantThank you, it worked.
Werner
ParticipantThank you, it worked.
Werner
ParticipantI have problems with the highlight display.
The characters are not displayed in color.Werner
ParticipantWonderful that works, thank you very much
Werner
ParticipantWith $(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!
}Werner
ParticipantI sent an email to tech@emurasoft.
Werner
ParticipantThe paste button always inserts the same value from the clipboard selection list!
Werner
ParticipantThank you for the correction, they have an excellent tool here.
Werner
ParticipantVersion 20.4.905
Error in Narrowing
Background and color are whiteWerner
Participantthe same problem is here (Version 20.4.902)
Werner
ParticipantThank you, it worked.
Werner
ParticipantWidows-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).”
Werner
ParticipantThank you very much
you’re Santa Claus yet
or a programmer with a heart?Werner
Participantnotepad++ can this
Werner
ParticipantThe source (C++) can be found under:
http://www.hartwork.org/doku.php?id=downloads
(ColorPicker EmEditor Plugin)- AuthorPosts