Click here to Skip to main content
15,906,333 members
Home / Discussions / C#
   

C#

 
QuestionWPF datagrid popup dropdown from from a combobox Pin
dhaessel7-Nov-10 18:15
dhaessel7-Nov-10 18:15 
AnswerRe: WPF datagrid popup dropdown from from a combobox Pin
dhaessel7-Nov-10 18:32
dhaessel7-Nov-10 18:32 
GeneralRe: WPF datagrid popup dropdown from from a combobox Pin
Richard MacCutchan7-Nov-10 22:40
mveRichard MacCutchan7-Nov-10 22:40 
AnswerRead the instructions! (My vote of 1) Pin
OriginalGriff7-Nov-10 22:53
mveOriginalGriff7-Nov-10 22:53 
QuestionC# safe deployment (FOXPRO) Pin
michael_jhons7-Nov-10 9:07
michael_jhons7-Nov-10 9:07 
AnswerRe: C# safe deployment (FOXPRO) Pin
Eddy Vluggen8-Nov-10 1:04
professionalEddy Vluggen8-Nov-10 1:04 
QuestionMessage Removed Pin
7-Nov-10 7:32
ZeroOne87-Nov-10 7:32 
AnswerRe: left Circular shift ?? Pin
PIEBALDconsult7-Nov-10 7:50
mvePIEBALDconsult7-Nov-10 7:50 
AnswerRe: left Circular shift ?? Pin
Pete O'Hanlon7-Nov-10 8:21
mvePete O'Hanlon7-Nov-10 8:21 
GeneralRe: left Circular shift ?? [modified] Pin
ZeroOne87-Nov-10 8:51
ZeroOne87-Nov-10 8:51 
GeneralRe: left Circular shift ?? Pin
Henry Minute7-Nov-10 9:04
Henry Minute7-Nov-10 9:04 
GeneralRe: left Circular shift ?? Pin
ZeroOne87-Nov-10 9:47
ZeroOne87-Nov-10 9:47 
GeneralRe: left Circular shift ?? Pin
Henry Minute7-Nov-10 9:49
Henry Minute7-Nov-10 9:49 
GeneralRe: left Circular shift ?? Pin
Pete O'Hanlon7-Nov-10 9:13
mvePete O'Hanlon7-Nov-10 9:13 
GeneralRe: left Circular shift ?? Pin
ZeroOne87-Nov-10 9:54
ZeroOne87-Nov-10 9:54 
GeneralRe: left Circular shift ?? Pin
OriginalGriff7-Nov-10 21:42
mveOriginalGriff7-Nov-10 21:42 
GeneralRe: left Circular shift ?? Pin
ZeroOne88-Nov-10 11:10
ZeroOne88-Nov-10 11:10 
GeneralRe: left Circular shift ?? Pin
harold aptroot7-Nov-10 10:11
harold aptroot7-Nov-10 10:11 
AnswerRe: left Circular shift ?? Pin
Dave Kreskowiak7-Nov-10 8:26
mveDave Kreskowiak7-Nov-10 8:26 
AnswerRe: left Circular shift ?? Pin
Henry Minute7-Nov-10 8:53
Henry Minute7-Nov-10 8:53 
AnswerRe: left Circular shift ?? Pin
AspDotNetDev7-Nov-10 11:48
protectorAspDotNetDev7-Nov-10 11:48 
GeneralRe: left Circular shift ?? [modified] Pin
ZeroOne87-Nov-10 12:04
ZeroOne87-Nov-10 12:04 
it is very good idea
it has never crossed my mind ,it so easy and so small

i do this
public static String CircularShift(string Subject, int Count)
{
    int l = Subject.Length;
    char[] text = new char[l];
    for (int i = 0; i < l; i++)
    {
        text[i] = Subject[(i + Count) % l];

    }

    String output = "";
    for (int i = 0; i < l; i++)
    {
        output += text[i];
    }

    return output;
}


but i will use your idea .

thank you very much.
an thx for every one who trying to help .

modified on Sunday, November 14, 2010 1:36 PM

AnswerRe: left Circular shift ?? Pin
Luc Pattyn7-Nov-10 12:15
sitebuilderLuc Pattyn7-Nov-10 12:15 
GeneralRe: left Circular shift ?? Pin
ZeroOne87-Nov-10 12:31
ZeroOne87-Nov-10 12:31 
GeneralRe: left Circular shift ?? Pin
PIEBALDconsult8-Nov-10 14:13
mvePIEBALDconsult8-Nov-10 14:13 

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.