Tag: line
-
How To Search For ID Values In A Different Worksheet With Excel VBA
This Excel VBA function allows you to take a column of values (e.g. ID numbers) in one worksheet, and use that to get corresponding values that are in a second worksheet. If you understand SQL, it’s something like: SELECT b.country FROM idtable as a, countrytable as b WHERE a.id=b.id I’ll explain the scenario further with […]
-
How To Redirect or Disable BBPress Registration Page
BBPress is a great forum software that integrates nicely with WordPress. The problem is, it’s not as full-featured as the other forum software available. One of my gripes is the inability to change certain options. For instance, if you’ve integrated BBPress with your WordPress blog, then you want to redirect or disable the default BBPress […]
-
How To Activate/Install GD Library In WAMP Under Windows
Some projects require activation of the GD library, and this is especially true when you have to do image manipulation with your PHP script. If you’re using WAMP (Windows Apache MySQL PHP) in Windows, then good news: WAMP comes with GD library, just that it’s not activated by default. To activate the GD library, go […]