Click here to Skip to main content
15,900,378 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to compress a byte array? Pin
alexey N12-Apr-06 1:32
alexey N12-Apr-06 1:32 
QuestionPractical Cryptography Pin
Trance Junkie11-Apr-06 23:21
Trance Junkie11-Apr-06 23:21 
Question"&" character in Visual Studio Pin
AesopTurtle11-Apr-06 22:53
AesopTurtle11-Apr-06 22:53 
AnswerRe: "&" character in Visual Studio Pin
alexey N11-Apr-06 22:58
alexey N11-Apr-06 22:58 
AnswerRe: "&" character in Visual Studio Pin
shaluhyd12-Apr-06 3:26
shaluhyd12-Apr-06 3:26 
AnswerRe: "&" character in Visual Studio Pin
alexey N17-Apr-06 1:46
alexey N17-Apr-06 1:46 
QuestionUltra WebGrid Hyperlink Pin
cppdotnet11-Apr-06 22:10
cppdotnet11-Apr-06 22:10 
AnswerRe: Ultra WebGrid Hyperlink Pin
Scott Hanslip12-Apr-06 7:43
Scott Hanslip12-Apr-06 7:43 
If you want to define a different hyperlink per row you can use the InitializeRow event. Here is an example from the Infragistics website:

<br />
private void UltraWebGrid1_InitializeRow(object sender, Infragistics.WebUI.UltraWebGrid.RowEventArgs e)<br />
{<br />
e.Row.Cells[0].Value =<br />
    "<a href='http://www.infragistics.com/go.aspx?id="<br />
    +<br />
    e.Row.Cells[0].Value.toString()<br />
    +<br />
    "' >" + e.Row.Cells[0].Value.toString() + "</a>";<br />
}


Check out here for more info.

Hope that helps!

-- modified at 13:45 Wednesday 12th April, 2006
GeneralRe: Ultra WebGrid Hyperlink Pin
cppdotnet12-Apr-06 8:10
cppdotnet12-Apr-06 8:10 
QuestionMaximized form without border, not in fullscreen mode Pin
loutremaline11-Apr-06 21:36
loutremaline11-Apr-06 21:36 
AnswerRe: Maximized form without border, not in fullscreen mode Pin
alexey N11-Apr-06 23:25
alexey N11-Apr-06 23:25 
GeneralRe: Maximized form without border, not in fullscreen mode Pin
loutremaline12-Apr-06 1:19
loutremaline12-Apr-06 1:19 
GeneralRe: Maximized form without border, not in fullscreen mode Pin
alexey N12-Apr-06 17:44
alexey N12-Apr-06 17:44 
GeneralRe: Maximized form without border, not in fullscreen mode Pin
loutremaline12-Apr-06 20:57
loutremaline12-Apr-06 20:57 
GeneralRe: Maximized form without border, not in fullscreen mode Pin
alexey N12-Apr-06 22:44
alexey N12-Apr-06 22:44 
GeneralRe: Maximized form without border, not in fullscreen mode Pin
loutremaline12-Apr-06 22:56
loutremaline12-Apr-06 22:56 
GeneralRe: Maximized form without border, not in fullscreen mode Pin
alexey N13-Apr-06 0:15
alexey N13-Apr-06 0:15 
Questionopening and compiling VS 2005 projects with VS 2003 ? Pin
hasantayyar11-Apr-06 21:02
hasantayyar11-Apr-06 21:02 
AnswerRe: opening and compiling VS 2005 projects with VS 2003 ? Pin
hasantayyar11-Apr-06 21:08
hasantayyar11-Apr-06 21:08 
GeneralRe: opening and compiling VS 2005 projects with VS 2003 ? Pin
CWIZO11-Apr-06 22:29
CWIZO11-Apr-06 22:29 
GeneralRe: opening and compiling VS 2005 projects with VS 2003 ? Pin
hasantayyar11-Apr-06 22:46
hasantayyar11-Apr-06 22:46 
GeneralRe: opening and compiling VS 2005 projects with VS 2003 ? Pin
CWIZO11-Apr-06 23:01
CWIZO11-Apr-06 23:01 
QuestionDllImport call unmanaged code Pin
Killer311-Apr-06 20:42
Killer311-Apr-06 20:42 
AnswerRe: DllImport call unmanaged code Pin
alexey N11-Apr-06 20:51
alexey N11-Apr-06 20:51 
GeneralRe: DllImport call unmanaged code Pin
Killer311-Apr-06 21:10
Killer311-Apr-06 21:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.