// GMap2
function changeMouse()
{
map.getDragObject().setDraggableCursor(”crosshair”);
}
function resetMouse()
{
map.getDragObject().setDraggableCursor(””);
}
ref: http://econym.org.uk/gmap/cursors.htm
// old version
function changeMouse()
{
map.setOptions({ draggableCursor: ‘crosshair’ });
}
function resetMouse()
{
map.setOptions({ draggableCursor: ” });
}
ref: http://stackoverflow.com/questions/2557679/how-do-i-change-the-mouse-cursor-when-i-mouseover-on-a-particular-area-in-google
for (var i = overlayPlacemarkTemp.length-1; i >= 0; i–)
{
if (overlayPlacemarkTemp[i].getIcon().image.indexOf(pt) != -1)
{
// map === remove overlay
myGMap.removeOverlay(overlayPlacemarkTemp[i]);
// remove []
overlayPlacemark.remove(i);
//overlayPlacemarkTemp.length = overlayPlacemarkTemp.length – 1;
}
}
http://code.google.com/intl/th-TH/speed/public-dns/
ไปตั้งค่า DNS เป็น 8.8.8.8 กับ 8.8.4.4 นะครับ ผลคือเน็ตผมเร็วขึ้นกว่าเดิมมากๆเลย
class=”brush: c-sharp; ”
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WindowsFormsApplication1
{
/* test hilighter */
class ClassAddress
{
public string Name { get; set; }
public string Street1 { get; set; }
[...]
See more themes goto link below
http://www.hanselman.com/blog/VisualStudioProgrammerThemesGallery.aspx
http://blog.wekeroad.com/2007/10/17/textmate-theme-for-visual-studio-take-2/
Try this :
Select * from Table1 WHERE (ColumnName like N’%Values%’)
Select * from Table1 WHERE (ColumnName = N’%Values%’)
or
Select * from Table1 Where (ColumnName collate Thai_bin like N’%Values%’)
Select * from Table1 Where (ColumnName collate Thai_bin = N’%Values%’)