Laur's blog
  • Home
  • About
  • Support my work
Sign in Subscribe

iterate

A collection of 3 posts
Outlook VBA: Iterate recursively over folders
folders

Outlook VBA: Iterate recursively over folders

Note: This is a post transferred from Laurii for historical and consolidation purposes. As part of the program I've started, I had to perform a recursive walking of all sub-folders from a starting point in a .pst file. Code looks like this: Sub WalkFolders(fnum) Dim olApp As
May 31, 2016 2 min read
List Alarms in Android
alarmclock

List Alarms in Android

The other day I thought it would be a good idea to list set alarms in android, so I whipped up the following code: @TargetApi(Build.VERSION_CODES.LOLLIPOP) private void listAlarms() { for (AlarmManager.AlarmClockInfo aci = mAlarmManager.getNextAlarmClock(); aci != null; aci = mAlarmManager.getNextAlarmClock()) { Log.d(TAG, aci.getShowIntent().toString()); Log.
Jan 21, 2015 1 min read
PostgreSQL: Call a Stored Procedure for Every Row
call

PostgreSQL: Call a Stored Procedure for Every Row

I guess that newbies in PostgreSQL like me have first question when they create a store procedure: How do I call it? The answer is simple; you just execute SELECT your_procedure_name(parameters); Then, usually immediately the second question pops up: I wrote a procedure which I need to
May 13, 2014 1 min read
Page 1 of 1
Laur's blog © 2025
  • Sign up
Powered by Ghost