Advanced Forum Search Results
-
hi,
SelectionStart method of text box is doesn't give me right cursor(caret) position coordinates to display pop u up list box their
Thanks
-
Hi
Thanks for replay
But I got three errors when I use following lines of code.
TextBox TB = new TextBox ();
int len = TB.SelectionLength;
int start = TB.SelectionStart; //character index.
int curLine = TB.GetLineIndexFromCharacterIndex ( start );
TB.ScrollToLine ( curLine );
String S1 = TB.GetLineText ( curLine );
String ...
-
Hi,
The following code
void hlb_MouseEnter(object sender, MouseEventArgs e)
{
Point position = e.GetPosition(null);
string a =position.X.toString();
string b =position.Y.toString();
}
Gives me the mouse cursor position,
But I need the cursor position that blinks in text box
so please give me ...
-
Hi,
Thanks for replay
The following code
void hlb_MouseEnter(object sender, MouseEventArgs e)
{
Point position = e.GetPosition(null);
string a =position.X.toString();
string b =position.Y.toString();
}
Gives me the mouse cursor position,
But I need the cursor position that blinks in text box
so ...
-
Hi,
I am working in silverlight 2 beta 2,
I make multiline text box and I want to display list box at
cursor postion,
So how I got the cursor position and how I display the list box at different positions
please give me suggesstion
Thanks
-
Hi,
Thanks for replay,
But can you teach me in some detail.
Thanks
-
Hi all,
I am working in silverlight beta 2.
I have create a web service and then
I read the files from directory using
string path=@"c\Inetpub\wwwroot\"
system.io.dictory.getfiles(path)
method
but I want to use url in path like
string path="http://localhost/"
system.io.dictory.getfiles(path)
but it gives me ...
-
Thanks for replay,
In this thread the information about obfuscator is given,
But I obfuscate the dll using Dotfuscator(In visual studio 2008) tool, successfully,
But the obfuscated dll is not works
so please suggest me about security of dll in xap file which download on client machine.
Thanks
-
Thanks for replay,
But the dll is showing all the classes and code behind source.
and user can easily trace it.
So please suggest me right solution to
secure my application.
Thanks
-
Thanks for replay,
The xap file containsMySilverlightProject.dllAppManifestAnd other system dlls(silverlight).In it MySIlverlightProject.dll contains all the code flow.
So the client can trace all the code and flow from this dll
when this dll download on client machine.
So please suggest me right solution to make secure my ...