Posted on November 20, 2009 by ehausig
I found this discussion thread while looking for ways to construct hyperlinks for tracking numbers on a web page:
http://community.salesforce.com/sforce/board/message?board.id=practices&thread.id=7643
UPS, FedEx and DHL each use a slightly different url format. I took their example and built a simple SQL case statement:
select
tracking_url = case when x.shipping_method = 'FedEx'
then 'http://www.fedex.com/Tracking?ascend_header=1&clienttype=dotcom&cntry_code=us&language=english&tracknumbers=' & x.tracking_number
when x.shipping_method = 'UPS'
then 'http://wwwapps.ups.com/WebTracking/processInputRequest?HTMLVersion=5.0&sort_by=status&loc=en_US&InquiryNumber1=' & x.tracking_number & '&track.x=32&track.y=7'
when x.shipping_method = 'DHL'
then lhttp://track.dhl-usa.com/TrackByNbr.asp?ShipmentNumber=' & x.tracking_number
else
'Unknown shipping method!'
end
from
dbo.orders x
Filed under: SQL Server | Tagged: code, example | Leave a Comment »
Posted on November 20, 2009 by ehausig
Posted on November 20, 2009 by ehausig
While I was researching public-facing sites that leverage SharePoint, I stumbled across one in Hebrew. I think it demonstrates how flexible SharePoint can be with regards to site design:
http://www.cellcom.co.il/Pages/default.aspx
Filed under: MOSS/SharePoint | Tagged: example | Leave a Comment »
Posted on November 18, 2009 by ehausig
Posted on November 18, 2009 by ehausig
Posted on November 18, 2009 by ehausig
I was cleaning up my brother’s iMac and found that audio conferencing worked inĀ iChat, but video conferencing would now. I opened the Audio/Video preferences of iChat aound received the following message:
“This computer does not support video conferencing”
I found the solution to the problem on this discussion thread:
http://discussions.apple.com/thread.jspa?threadID=1460351
In summary, here are the steps I followed to resolve the issue:
- Located the following file on my MacBook Pro:
/System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component
- Zipped it up and attached it to an email message and mailed myself.
- Logged into my brother’s iMac, retrieved the email message, saved and unzipped the file.
- Copied the file to the following folder, overwriting the existing file that was there:
/System/Library/QuickTime/
- Launched iChat and the video conferencing now works!
Note that iChat must be closed for you to overwrite the file, otherwise you’ll get a “permissions” error message. Also, there appeared to be several conditions under which this message can occur–this is just the fix that worked for me.
Filed under: OSX | Tagged: problem | Leave a Comment »