由买买提看人间百态

topics

全部话题 - 话题: mycursor
(共0页)
c***z
发帖数: 6348
1
It took me a whole day. Either I am retarded or SQL is. Why it is so
complicated just to loop over all columns!
I am posting here to help people facing similar problems. If you have a
better solution, please do share! Thanks!
Below is the SQL code:
DECLARE @ColName VARCHAR(150)
DECLARE @sqlStatement VARCHAR(MAX)
SET @sqlStatement = 'initial part of you query, for example select, insert
update etc. '
DECLARE myCursor CURSOR STATIC FOR
SELECT name FROM syscolumns WHERE id = (SELECT id FRO... 阅读全帖
r***t
发帖数: 104
2
来自主题: Flash版 - question about AS3 setCursor
hi, I am a newbie for Actionscript, when I use the setCuror function try to
set a custom cursor, both
system cursor and custom cursor appeared on my component. any one know what
is wrong with that?
I also tried to call Mouse.hide(), but system mouse is still there.
the code is like this:
private function onMyRollOver(e:MouseEvent):void
{
cursorManager.setCursor(mycursor);
Mouse.hide();
}
(共0页)