Search found 1356 matches

by Stefan
18 Nov 2013 15:33
Forum: Wishes
Topic: SC: get(SystemInfo, setting); getreg(path, name);
Replies: 1
Views: 1064

SC: get(SystemInfo, setting); getreg(path, name);

For international and general selective scripting, can we get a command like get(" SystemInfo ", setting); setting could be for example one of: ( //with example result) OS // W2k, XP, Win7 Bit// 32, 64 locale// 407, 409 LocaleName// de-DE, en-US localeID// 1031,1033 sThousand// ., , sDecim...
by Stefan
18 Nov 2013 14:49
Forum: Bug Reports
Topic: SC Format: number fraction handling?
Replies: 42
Views: 4842

Re: SC Format: number fraction handling?

Oh great! This should really solve that other issue I had with one of the script I posted. Apparently people who were under the German locale but were using commas as separator and periods for decimal places end up causing the script to fail. I could not really find a way to make it independent. Yo...
by Stefan
16 Nov 2013 23:38
Forum: Bug Reports
Topic: SC Format: number fraction handling?
Replies: 42
Views: 4842

Re: SC Format: number fraction handling?

Hi, with the following code $NUM = 17.5; $strDays = format($NUM, "#,0.00"); msg($NUM<br>$strDays); I expected the output for $strDays to be " 17,50 " instead of " 175,0 ". Please note that "#,0.00" is only an example, not the syntax to use. format() Returns a...
by Stefan
08 Nov 2013 19:04
Forum: Tips & Tricks, Questions & Answers
Topic: How to Add Entries to Context Menu
Replies: 2
Views: 1752

Re: How to Add Entries to Context Menu Win7 64-bit

I use a separate program to copy my files (Teracopy) but when I right-click on files that I want to copy, the program does not appear in the Context menu. In other Explorer applications, the program appears in the list. Is there a way I can get Teracopy to appear in the Context Menu in XYplorer? I ...
by Stefan
08 Nov 2013 14:49
Forum: Tips & Tricks, Questions & Answers
Topic: What's the difference between run and openwith?
Replies: 3
Views: 992

Re: What's the difference between run and openwith?

I had should add that I am confused often too (more then once) with different languages (coding and human) but it's getting better over time. Trust me.



 
by Stefan
08 Nov 2013 14:43
Forum: Tips & Tricks, Questions & Answers
Topic: What's the syntactical difference betw. this coding styles?
Replies: 4
Views: 1095

Re: syntactical difference between different coding style?

1. Is the following code valid: 2. If not, why not? :roll: 3. Why does zer0's code fail? :oops: *I* can't tell. I didn't had an closer look at this. But probably because he use different parameters of that called application? See, only the blue once are XY varables (plus $cf to add the path), the o...
by Stefan
08 Nov 2013 13:06
Forum: Tips & Tricks, Questions & Answers
Topic: What's the difference between run and openwith?
Replies: 3
Views: 992

What's different between scripting commands run and openwith

What's the difference between run and openwith? You don't design a scripting language and just decide "I need this, and that, and perhaps..." It' s a improvement over years and driven by new cognitions and user wishes. So over time we get several commands to chose from. Like in most other...
by Stefan
08 Nov 2013 12:57
Forum: Tips & Tricks, Questions & Answers
Topic: What's the syntactical difference betw. this coding styles?
Replies: 4
Views: 1095

syntactical difference between different coding style?

What's the syntactical difference between - different personal predilections in coding style - XY commands are (often) case sensitive - XY command parameters "should" be put into quotes to be future proof - using () parenthesis is only cosmetic nature (IMHO), but shows better what belongs...
by Stefan
08 Nov 2013 12:45
Forum: Tips & Tricks, Questions & Answers
Topic: QNS: How to exact match?
Replies: 9
Views: 2134

Re: QNS: How to exact match?

Read the help under "Main Topics" about "Quick Name Search" to discover more examples with jokers and regex. :blackstorm: BTW, Stehan, by 'jokers,' do you mean Batman? I'm confused! :roll: No, I meant "wildcard character" like '*' and '?', in german called 'Joker', and...
by Stefan
06 Nov 2013 20:46
Forum: Tips & Tricks, Questions & Answers
Topic: QNS: How to exact match?
Replies: 9
Views: 2134

Re: QNS: How to exact match? Quick Name Search

I don't know if I get you correctly? Please describe yourself more clearly and provide better examples How do you utilize Quick Name Search (QNS)? To do an exact match from the address bar, just write the exact name into the address bar like: C:\Temp\exactname.txt and exactname.txt will be highlight...
by Stefan
06 Nov 2013 12:48
Forum: Tips & Tricks, Questions & Answers
Topic: Make Sysnative
Replies: 11
Views: 2733

Re: Make Sysnative

No, Sysnative has to be created by the user, it is not shipped with Windows 7 I did not say this. I meant, for a 32-bit app, the folder sysnative already exists natively and points to System32. Try on 64-bit Win7: - open WinEx and create a dir "C:\Windows\ System32 \ aaaa Sys32, this is SysNat...
by Stefan
06 Nov 2013 12:39
Forum: Tips & Tricks, Questions & Answers
Topic: Make Sysnative
Replies: 11
Views: 2733

Re: Make Sysnative

As far as I get this all together, me thinks:

XY = 32-bit = sysnative already exists and point to System32 folder?




 
by Stefan
25 Oct 2013 19:25
Forum: Tips & Tricks, Questions & Answers
Topic: Keyboard Shortcut Not Shown in Menu
Replies: 1
Views: 608

Re: Keyboard Shortcut Not Shown in Menu

armsys wrote:Does XY display keyboard shortcuts in the Menu items?
See help menu.





 
by Stefan
25 Oct 2013 11:12
Forum: Tips & Tricks, Questions & Answers
Topic: Should <curitem> return the current path?
Replies: 5
Views: 1378

Re: Should <curitem> return the current path?

In the past 5 1/2 years there has many things changed (if it was implemented at all?). If you need such a var, maybe you can utilize such a code? ::if("<curitem>"==""){$cur="<curpath>";}else{$cur="<curitem>";} msg $cur; or formated another way if( "<curit...
by Stefan
25 Oct 2013 08:29
Forum: Wishes
Topic: Timestamping
Replies: 2
Views: 831

A script to change all timestamps to current time

apply a timestamp to all three (Created/Modified/Accessed) timestamps simultaneously If you want you can add a User Button with such a script to change all timestamps to current time: timestamp timestamp [type], [date], [itemlist] type [optional] c|m|a or any combinations in any order (cm, am, cma,...