topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Friday April 26, 2024, 2:24 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - skwire [ switch to compact view ]

Pages: prev1 ... 3 4 5 6 7 [8] 9 10 11 12 13 ... 222next
176
N.A.N.Y. 2016 / Re: NANY 2016 Release: sTray
« on: February 22, 2019, 09:15 AM »
Just updated to 1.0.0.3

This error should have been fixed in v1.0.2.  Have you tried that version?

http://www.dcmembers...wire/download/stray/

177
@berkland: Both of those text files you attached are HTML files, not URL files.  A URL file is just a renamed INI file and the contents of one looks something like this:

[InternetShortcut]
IconFile=C:\Users\skwire\AppData\Local\Xmarks\favicons\2h5x8-m8tUI.ico
IconIndex=0
URL=http://en-us.www.mozilla.com/en-US/firefox/about/

To view a URL file, you should be able to just drag and drop the URL file onto a text editor like Notepad.


178
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« on: February 14, 2019, 02:23 PM »
Everything looks good and working fine now on W7 W8.1 and W10. Thanks for the fixes and thanks for adding the icon selection option. I appreciate that.

@click-click: Good to hear and thanks for the report.

Forgot to post this notice a few days ago:

Website & Download
v1.8.1 - 2019-02-11
    * Tray icon options have changed.  You can now display either or both icons.
    ! On a delayed startup, tray icon was showing blank instead of the N/A icon. (Thanks, T. Elliot)
    * Added a small delay when updating location time.

179
Nothing changed.  What now?

Open up one of those URL files with a text editor and see if an "IconFile=<some path here>" line is there.  If so, this might be a refresh issue with Windows Explorer.

180
@berkland: I think I fixed the issue you were experiencing.  Please try the version at  http://www.dcmembers.../scurled/SCURLed.zip and let me know if it works now.

181
N.A.N.Y. 2019 / Re: NANY 2019 Release: SCURLed
« on: February 10, 2019, 09:48 PM »
1.) SCURLed should have a function to open the base directory of InternetExplorer Favorites resp. Firefox/Chrome Bookmarks and read them all automatically (full dir tree).

I'll think about this for Internet Explorer favourites.  Firefox and Chrome, however, do not use URL files for their bookmarks.

2.) SCURLed should have function to find all .LNK files starting from a base directory (e.g. partition D:\) and load them automatically.

I will add this in a future release.

Is it by design that the filename of .url files cannot be edited (that editbox is grayed out when I run the program)?

I left this out for now until I get some feedback on the LNK/URL data handling.  I will add the ability to change the name in a future release.

182
I selected 68 URL files in my TEST folder using File | Open URL Files, but the SCURLed.exe window would not re-open with the selcted files.

Do they load if you select them in Windows Explorer and then drag-n-drop them onto the URL list in SCURLed?

183
Post New Requests Here / Re: NetTraffic xml export to Excel
« on: February 09, 2019, 04:36 PM »
I'm pretty positive that "ts" value is a Unix timestamp.  Here's an AutoHotkey example showing how to convert it:

Code: Autohotkey [Select]
  1. myTimestamp := "636850944"
  2. sFormatString := "dddd, MMMM d, yyyy @ H:mm"
  3. FormatTime, myFormattedTime, % timeUnix2Human( myTimestamp ), % sFormatString
  4.  
  5. MsgBox, % myFormattedTime
  6.  
  7. timeUnix2Human( unixTimestamp )
  8. {
  9.     returnDate = 19700101000000
  10.     returnDate += unixTimestamp, s
  11.     Return returnDate
  12. }

This snippet returns a value of: Wednesday, March 7, 1990 @ 23:02

The year seems a bit off, but does that sound about right, @itge13?

184
Post New Requests Here / Re: NetTraffix xml export to Excel
« on: February 08, 2019, 05:30 AM »
What is NetTraffix?

185
Why is this not working with URL files?

Are you certain you're on the URL tab?  LNK files get loaded to the LNK tab; URL files get loaded to the URL tab.

2019-02-07_165335.png

187
Great to hear.  I'll mark this as done.   :Thmbsup:

188
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« on: February 06, 2019, 12:44 PM »
Here's an interim build of sWeather which gives the user control over which of the tray icons are shown.  You can choose either or both.  However, I had to use the older Tray() library I talked about previously, so I'm limited in how much I can display in the tray icon tooltip.  In other words, I have to use the shorter format of the two tooltips you would see in the older version.  C'est la vie.  If you'd like to try it out, download this:

http://www.dcmembers...Weather_v1.8.0.2.zip

If you do try it out, please let me know if it works properly for you.

189
Hello, itge13, and welcome to the DonationCoder site.   :)

Is there a way to switch Taskbar Button Grouping with a hotkey between "combine" and "not combine" w/o restarting explorer? Preferebaly as AHK

Here's some AHK code to do what you want.  I've successfully tested this on Windows 7 so please let us know if it works on your Windows 10 machine.

Code: Autohotkey [Select]
  1. #k:: ; Win+K -- change as necessary
  2. {
  3.     ; 0 = Always combine, hide labels
  4.     ; 1 = Combine when taskbar is full
  5.     ; 2 = Never combine
  6.     RegWrite, REG_DWORD, HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, TaskbarGlomLevel, % ( ( Toggle ) ? ( "0" ) : ( "2" ) )  
  7.     SendMessage, 0x1A, , , ,  % "ahk_class Shell_TrayWnd" ; WM_SETTINGCHANGE := 0x1A
  8.     WinSet, Redraw, , % "ahk_class Shell_TrayWnd"
  9.     Toggle := !Toggle
  10. }
  11. Return

190
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« on: February 01, 2019, 12:55 PM »
Seems to only happen on W10. I don't see this happening on Win7. Will check W8.1 in a minute.
Win8.1 also shows this symptom.

I use and develop on a Windows 7 box, so it worked for me.  I'll see if I can get access to a Windows 10 machine to test.

191
I will try to upload that "tool" somewhere once I am finished.

Nice job -- looking forward to it.   :Thmbsup:

192
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« on: January 31, 2019, 06:02 PM »
This should fix it.  The TimezoneDB API should only get queried when the main window is activated/focused.  Thank you for reporting this bug.

Website & Download
v1.8.0 - 2019-01-31
    ! Reduced the number of times the TimezoneDB API was queried.  (Thanks, click-click)

193
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« on: January 31, 2019, 05:04 PM »
Never mind...I can see the same behaviour here.  I'll work on a fix.

194
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« on: January 31, 2019, 04:54 PM »
Why is Sweather now connecting out so often?

Those aren't weather data requests; they're requests to timezonedb.com which is used for the "location time in time in the titlebar" option.  I added a fix in v1.7.8 because that text wasn't always showing properly in the titlebar.  To fix it, I now request the location time any time the sWeather window is activated.  That is, sWeather does not keep an internal clock of its own.  I didn't think this would be much of an issue since the amount of data is only around 250 bytes per request.  In your screenshot above, were you focusing the sWeather window repeatedly?  If not, there's a problem, and I can look into fixing it.  Here's an example of data that's returned:

<result>
<status>OK</status>
<message/>
<countryCode>US</countryCode>
<zoneName>America/Chicago</zoneName>
<abbreviation>CST</abbreviation>
<gmtOffset>-21600</gmtOffset>
<dst>0</dst>
<timestamp>1548952639</timestamp>
</result>

That's it.  I suppose I could add a check that makes it not requery for time data unless a certain amount of time has passed but the drawback would be that the time would not be accurate.  Is 250 bytes of data per hit too much?  Are you constantly focusing the sWeather window during the day?

195
Is there a need to actually display both A and B lists in a listview?  The reason I ask is that loading 100000+ lines, without some tricks, can take a while.

196
I need a tool to compare list of strings (numbers and chars).
Maybe someone is interested?  ;)  :Thmbsup:

Do you have any sample files we can work with?

197
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« on: January 30, 2019, 11:30 PM »
Everything looks great now! Haven't come across any issues on Windows 8.1. Works just like it did before the change in the API.

Good to hear and thanks for the report.

On tip I wanted to mention is if anyone is updating the software, if you save the files "config.ini" and "locations.lst" then all your settings will carry over to the new update. So just make a back up of those files, then use them to overwrite the new ones when you install an updated version.

Thanks for the tip, though there shouldn't be any need to back up those files beforehand.  The zip file download doesn't contain a config.ini nor a locations.lst, so you can simply unpack the zip file to your sWeather install folder.  Now, that said, one should always have backups.   :Thmbsup:

198
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« on: January 30, 2019, 03:33 PM »
Hi, selesn777, and welcome to the DonationCoder site.   :up:

Can you please tell me how to set the temperature display only in Celsius?

From the main sWeather window, choose Options > Configure from the menu.  In the Options window, enable the "Use metric units" option and, optionally, enable the "Add 'C' or 'F' to temperatures" option.





199
N.A.N.Y. 2009 / Re: NANY 2009 Release: Comparer
« on: January 28, 2019, 03:14 PM »
Could some moderator please update the Download Link at first post?

Done.   :)

200
Skwire Empire / Re: Release: sWeather (tray-based weather app)
« on: January 28, 2019, 08:55 AM »
For me everything seems fine EXCEPT I noticed the icons in the lower right (for linking to the yahoo website) no longer appear.

Good eye.   ;)

Website & Download
v1.7.9 - 2019-01-28
    ! Statusbar icons were missing.  (Thanks, Mboxer511)


Pages: prev1 ... 3 4 5 6 7 [8] 9 10 11 12 13 ... 222next