spam this
Last night I was experiencing trouble with Outlook 2007. If I would close the app and then try to open it again it would appear to close down but would not start again. Checking in the Windows Task Manager Processes I noticed that OUTLOOK.EXE *32 was still running and after killing the process I could start Outlook again. The problem persisted. I googled the problem but none of the fixes mentioned had any effect.
After a few more reboots I just started looking at Outlook’s settings. Under Tools -> Trust Center... -> Add-ins -> Manage: COM Add-ins I started disabling things but I noticed that Windows Search Email Indexer wouldn’t respond to unchecking or removing so I went to Start Orb -> Right click on Computer -> Manage -> Services and Applications -> Services -> Windows Search -> Right click -> Properties -> Startup type = Disabled
I could then uncheck or remove Windows Search Email Indexer. You can restart or leave the Windows Search service off (I left it off). Now Outlook starts faster, closes completely and allows me to restart it anytime I like.
In fact after disabling the Windows Search service everything seems snappier and I don’t see the spinning blue chakram all the time.
Hope this helps someone out there. 
Posted in Random by Mark (13Jun08 @ 0802)
Print
| Trackback | Permalink | No Comments
Open Trackback Alliance
To get your article listed below please visit this link and link up your best work.
The following articles do not necessarily represent the views of imaginekittymagazine.
- The Trouble With Angels: Prize Game Up At "Dead Guy"...
For those of you who aren’t regulars but may want a chance to win the prize T-shirt, you need to get on over to Dead Guy On The Sidebar and get your...
- Cao's Blog: “He’s our brother”...
Read this piece “Notes from a War Diary” by Ollie North. There are several little stories there, but the last one is the one that touched me the most....
- 123beta: Please Send Money...
Dear good person from North America, I’m an honest, hard-working Nigerian King, just waiting for my bank to release millions of dollars to me to help my family and...
- 123beta: Budda Bing Bang Boom...
Time to resurrect an oldie but a goodie… Dedicated to the flying Imams….
- 123beta: Open Trackback Weekend #29...
I hope everyone had a great Thanksgiving! Please feel free to leave a post and I’ll be sure to send a trackback your way. …
- The Business of America is Business: End It Like Beckham...
In a bid to boost its competitiveness, its image, and its gate receipts, Major League Soccer (MLS) is changing its rules. The rules concern not...
- Test Track: I got in a fight with my dad. :(...
I remember I was hammering on a fence in the backyard when my dad approached me. He was carrying a letter or something in his hand, and he looked worried. I continued...
- BRING IT ON: Mark 11:23-24
Mark 11:23-24 For verily I say unto you, That whosoever shall say unto this mountain, Be thou removed, and be thou cast into the sea; and shall not doubt in his heart,...
- Renaissance Blogger: Another Strike Against Children’s Innocence...
I don’t think I’ve seen anything that has bothered me as much as this toy being marketed to four and five year olds as a fitness product. From the...
- Committees of Correspondence: You can't always get what you want......
“The Lesser of two Evils” is a saying that has been cropping up in recent years. This is what is called a “cliche”. Cliches...
Trying to install Uru, I know, it’s about 5 years old but I just got it mostly because I just started using a PC and Uru was never released for Mac, I constantly received this error:
Feature: DefaultFeature
Component: AGameFiles
File: D:\data2.cab
Error: Data error (cyclic redundancy check).
None of the solutions online were of any help so I simply tried to copy the files to my hard drive and install them from there. The only problem is data2.cab couldn’t be read on any of my PCs (2 laptops and one desktop). I was able to copy the file from the CD to my Mac’s hard drive so I just shared it over to the PC and installed it from the hard drive. It worked so I suppose if anyone needs a copy of data2.cab and don’t have a Mac, just drop me a line and I’ll put it online somewhere for download.
On an interesting side note I was also able to get Uru to run on my Vista 64-bit machine by bypassing the “Play URU - Complete Chronicles” and instead starting it up using the UruExplorer application.
Posted in Random by Mark (08Mar08 @ 2103)
Print
| Trackback | Permalink | No Comments
I just received my copy of Office Ultimate 2007 (yes, I bought a 2007 app in 2008 … *sigh* why do they name them with years?) and everything went fine with no problems until I tried the second disk (which contains Accounting and Business Contact Manager). Accounting installed and then BCM threw an exception “Setup failed to install Business Contact Manager for Outlook 2007″.
I tried again and again and looked for solutions online (none worked). A good friend had a look at the install log and noticed something. This line:
MSI (s) (6C:28) [08:22:19:591]: Product: Business Contact Manager for Outlook 2007 — Error 1913.Could not update the INI file C:\Windows\SysWOW64\mapisvc.inf
He asked me to check if mapisvc.inf existed (it did) and if I could change it (I couldn’t). I couldn’t edit, move or delete it. I checked the properties and it was owned by “SYSTEM” which I changed to my user account and then I was able to move the file. Before trying to reinstall BCM I moved mapisvc.inf out of my SysWOW64 folder and created a new copy of it and dropped that in SysWOW64.
I was then able to install BCM with no further problems.
Now all I have to do is come up with a reason to use it. 
Posted in Random by Mark (19Jan08 @ 0022)
Print
| Trackback | Permalink | No Comments
This one had me stumped for a few minutes. I had a text box that would post to a google search. Entering text in and hitting the enter key would just post back to the page and have no effect.
Hmm. Frustrating. I don’t expect everyone to type in their search criteria and grab the mouse to click the tiny little button so here’s what you have to do.
<asp:Panel ID="searchPanel" DefaultButton="topSearchButton" runat="server">
<asp:TextBox ID="topSearch" columns="21" CssClass ="formbox" runat="server" EnableViewState="False" />
<asp:ImageButton ID="topSearchButton" ImageURL="images/bg/buttonGoHome.gif" OnClick="topSearchButton_Click" CSSClass="buttonGoHome" AlternateText="Submit" runat="server" />
</asp:Panel>
OnClick event:
protected void topSearchButton_Click(object sender, ImageClickEventArgs e)
{ Response.Redirect("http://www.google.com/u/xxx?domains=www.xxx.edu&sitesearch=www.xxx.edu&q=" + topSearch.Text);
}
The DefaultButton attribute names the ID of the button you want to fire. The only issue is it doesn’t work on a text box (or any other form item) it only works on a Panel. I suppose it makes sense because you usually don’t just have one form field and a button, it’s usually many text boxes, any of which can fire the click event using the enter key.
I figured there was no point in having ViewState on a text box that posts to another site so EnableViewState should be set to False in this case.
Posted in ASP.NET by Mark (15Jan08 @ 2311)
Print
| Trackback | Permalink | No Comments
Ok, listen! You’ve got a lot done with standards compliance in ASP.NET. Really, bravo. There’s one thing I’d like though. Can we get rid of the useless form that makes non-form elements process on the server side? That’d be fantastic and I’d appreciate it very much.
Seriously, we already have to put runat=”server” on all of the tags so why not have that trigger the processing instead of keeping it in a useless, non-semantic, out of place form … unless of course we actually are using a form on the page.
OK, Thanks.
Much love,
imaginekittymagazine
Posted in ASP.NET by Mark (14Jan08 @ 1710)
Print
| Trackback | Permalink | No Comments
Recently I was given the task of printing address labels from a database using Avery 5160 labels. These labels are 3 columns of 10 rows. 2.625″ x 1″ (66.6mm x 25.4mm).
I was having trouble with carriage returns. First problem is that the ASP version of FPDF doesn’t seem to recognize the \n line feed. It was easy enough to replace it with Chr(10) but I suppose I had a misconception of how FPDF handles line feeds in that it used the entire height of the multicell height for every line of text.
At first I used this incorrect code to test (notice the carriage return has no effect):<%@language=vbscript%>
<!--#include file="fpdf.asp"-->
<%
Dim i,pdf
Set pdf=CreateJsObject("FPDF")
pdf.CreatePDF "P","cm","Letter"
pdf.SetPath("fpdf/")
pdf.SetTopMargin(1.27)
pdf.SetLeftMargin(.42)
pdf.SetRightMargin(.42)
pdf.Open()
pdf.AddPage()
pdf.SetFont "Times","",9
for i=0 to 40
labelText = "Client #" & i & Chr(13) & "<--carriage return there address" & Chr(10) & "City, State Zip "
pdf.MultiCell 6.66,2.54,labelText,1,L
Next
pdf.Close()
pdf.Output()
Set pdf = Nothing
%>
with the results shown below:

Then after googling a bit I found a php version of a script for creating a PDF for Avery 5160 labels and ported it to ASP:<%@language=vbscript%>
<!--#include file="fpdf.asp"-->
<%
Set pdf = CreateJsObject("FPDF")
pdf.CreatePDF "P","mm","Letter"
pdf.Open()
pdf.AddPage()
pdf.SetFont "Arial","B",10
pdf.SetMargins 0,0
pdf.SetAutoPageBreak(0)
x = 0
y = 0
' instead of for next call names and addresses from database
for a = 1 to 40
' Make label text
LabelText = "Contact Name" & a & chr(10) & "Entire Company Name" & a & chr(10) & "1313 Mockingbird Lane" & chr(10) & "Chicago, IL 60617"
LeftMargin = 4.2
TopMargin = 12.7
LabelWidth = 66.6
LabelHeight = 25.45
' Create Co-Ords of Upper left of the Label
AbsX = LeftMargin + ((LabelWidth + 4.22) * x)
AbsY = TopMargin + (LabelHeight * y)
pdf.SetXY AbsX+3,AbsY+3
pdf.MultiCell LabelWidth-8,4.5,LabelText,0,L
y=y+1
if (y=10) then
x=x+1
y = 0
if (x = 3) then
x = 0
y = 0
pdf.AddPage()
end if
end if
next
pdf.Output()
Set pdf = Nothing
%>
Just change the for-next loop to a database call and you’re in business.
I find FPDF extremely useful and am sure to use it in the future.
Posted in Classic ASP by Mark (14Dec07 @ 2016)
Print
| Trackback | Permalink | 1 Comment
I just built a Windows machine from parts and installed Windows Vista Ultimate 64bit. The only problem I was having was the FTP service would not stay active upon shutdown or restart. I had to start it manually every time.
If anyone else is wondering, here is how to make it work (if you already have FTP installed and just need it to start on reboot then start at step 7):
- Control Panels
- Programs
- Turn Windows features on or off
- locate and check FTP Publishing Service
- Click OK to install the items you selected
- You may or may not have to start FTP through IIS 6 but it may work without this step
- Start Menu
- right-click “Computer”
- Select “Manage”
- Select “Services” under “Services and Applications”
- double-click “FTP Publishing Service”
- Change “Startup Type” to “Automatic”
- Click OK
Let me know if this helps. I don’t know, it may be obvious to everyone that knows Windows but I’ve been a Macintosh guy since I bought my second computer back in 1995 (I had a Texas Instruments TI-99/4A before that). I’m used to starting FTP with one click in the Sharing control panel.
For comparison here’s how turn on FTP under Mac OS X:
- Apple Menu
- System Preferences…
- Sharing
- Click the “FTP Access” checkbox
This also opens the port in the firewall and keeps it active any time the Mac is started.
Posted in Random by Mark (01Nov07 @ 1625)
Print
| Trackback | Permalink | No Comments
Today was an eventful day. I drove to Cleveland, reunited with my father’s side of the family and got arrested. More on that arrested part to come.
For the labor day weekend my father decided to host a small family reunion. My sister flew in from California and I drove in from Pittsburgh to visit my father, his wife and my little brother and sister. Shortly after arriving we packed the whole family into my father’s Buick and headed off to the grocery store to buy some ingredients to make monkeybread. (It’s my little sister’s birthday today and that was her cute/bizare birthday request.)
Next to the grocery store was a Circuit City. (The Brooklyn, Ohio Circuit City to be exact.) Having forgotten that it was my sister’s birthday I decided to run in and buy her a last minute gift. I settled on Disney’s “Cars” game for the Nintendo Wii. I also needed to purchase a Power Squid surge protector which I paid for separately with my business credit card. As I headed towards the exit doors I passed a gentleman whose name I would later learn is Santura. As I began to walk towards the doors Santura said, “Sir, I need to examine your receipt.” I responded by continuing to walk past him while saying, “No thank you.” …
Please see the rest of the story on Michael Righi’s blog: Papers Please: Arrested At Circuit City
This is just the beginning of the story which escalates to him being illegally detained by the store manager and then illegally arrested by a police officer for refusing to show a driver’s license even though he was not driving a car.
I most likely would have donated to his cause had he not involved the ACLU and promised to give them any remainder. I’ll not be party to their Fabianistic tactics and stand against their communist background.
I can’t blame Michael Righi for getting involved with the ACLU though, he is, after all, from Pittsburgh.
Trackbacks sent to:
The Crazy Rants of Samantha Burns
Posted in Random by Mark (09Sep07 @ 2012)
Print
| Trackback | Permalink | 1 Comment
« Previous Entries
Amazon Wishlist
Hello, friends! I've decided to put my Amazon wishlist online. If you feel nice today you can purchase one of the items listed and it will be shipped to my door. My birthday is May 13th and I will gladly accept gifts for any Christian or Jewish holiday. Thank you for your support.
Disclaimer: All product data in this section belongs to Amazon.com or respective site(s). No guarantees are made as to accuracy of prices or product information. Prices listed are accurate as of the date/time indicated or otherwise within the last 24 hours. Prices and product availability are subject to change. Any price displayed on the Amazon website at the time of purchase will govern the sale of this product.