Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

Pierre besquent

@Pierre besquent
About
Posts
61
Topics
23
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Team Foundation server ????
    P Pierre besquent

    ok i know Thank YOU for YOUR big help Have a nice day

    C# csharp sysadmin collaboration help question

  • Team Foundation server ????
    P Pierre besquent

    Hello, I have many c# projects. I want know to create a Team Foundation project. I can't understand what it mean the Team Foundation Server. is it my IP @?? I want u help regards

    C# csharp sysadmin collaboration help question

  • Test Tools
    P Pierre besquent

    Hi my freinds, Happy new year 2012 First. I develop some websites with .NET technologie. I want to automatise my tests. I search on the internet for test tools. i find many (NEOTYS, QF-test, NUNIT...). But i don't know what is the most performant tool. In fact, i have some rules in my deveopement (for example, in my interfaces, all textFields should be align , numbers should be rigth align...). I want to use a tool that has double function : test, network and code test. If u have prepositions , plzzzzz tell me about I am really needing this in my work. Regards

    C# csharp sysadmin tools tutorial question

  • Ext.ux.maximgb.treegrid.GridPanel Search functionnality
    P Pierre besquent

    Hi every body, ANy one tried implementing search functionality in Ext.ux.maximgb.treegrid.GridPanel .? i m using treegrid i need to implement search functionality.. as i m new to ext js dont know how to proceed. any one know how to implement.? if any one have tried it then plz post code or the plugin (as grid-filter plugin I have). Thanks

    JavaScript javascript css design tutorial question

  • FireFox-Javascript issue
    P Pierre besquent

    Hi Manfred, I work with the EXT JS Framework, but some instructions differ from browser to browser.So if i develop a version of my application for each browser, that will be sooooo expensive in the two sides time and code. ty

    JavaScript javascript question csharp help

  • Open my website with FireFox navigator
    P Pierre besquent

    Hi, ty very much for u help.my website works well.but still some bugs related surely to a compatibility a compatibility of Javscript and FireFox.The main is that when I RAPIDLY naviagte on my website, all works well but after some time (<= 1mn), all is blocked and no navigation allowed. that stufies me veryyyyyyy much :) ty

    C# question csharp help

  • FireFox-Javascript issue
    P Pierre besquent

    Hi everybody, I develop a website with c# langage and Javascrip. It is opened with IE navigator well but in FireFox, most pages are not opened. How can I make my JS code compatible with Firefox navigator? ty

    JavaScript javascript question csharp help

  • Open my website with FireFox navigator
    P Pierre besquent

    Hi, that will delete the localhost as trusted server and my first problem is rentering :) ty

    C# question csharp help

  • Open my website with FireFox navigator
    P Pierre besquent

    Hi Pete, Always commenting :) . this is all related with c# because I develop my application with c#. Try to help me ty

    C# question csharp help

  • Open my website with FireFox navigator
    P Pierre besquent

    Hi, It works well.The problem now is that any of my website'pages is opened juste the first one.I want to add in u knowledge that my website connects to a local server (not localhost) which extracts a Javascript Framework ,saved there. How can I deal with that? ty

    C# question csharp help

  • Open my website with FireFox navigator
    P Pierre besquent

    Hi everybody, I develop a website with c# langage. It is opened with IE navigator but when I try to open it with the FireFox navigator even I make it my default browser, it demandes required Authentification : entre Login and password for http://localhost. I configure a windows authentification but still the same problem. How can I depass this problem? ty

    C# question csharp help

  • String value in C#
    P Pierre besquent

    Hi, thanks for the clarification but still not clear HOW to test if arr [0] == '0' or not?? still my debugger returns to me arr [0] = 48 '0'. ty

    C# csharp tutorial question

  • String value in C#
    P Pierre besquent

    Hi, viewing thing in your IDE?what u mean. I debug and I found that arr[0] = 48 '0' even if chaine = "001". I know what i write so this it is my probleme: WHY it considerate arr [0] = 48 '0'?????? ty

    C# csharp tutorial question

  • String value in C#
    P Pierre besquent

    Hi, yes that what I search arr [0] appears to me always != '0' even I enter chaine = "001" it appears to me arr [0] = 48 '0' what can I do? ty

    C# csharp tutorial question

  • String value in C#
    P Pierre besquent

    Hi everyBody; I want to browse my string like this:

    // Extraire la suite de Zero au début du nombre.
    int k = 0;
    char car = ' ';
    string successZero = string.Empty;
    char[] arr;
    arr = chaine.ToCharArray(0, chaine.Length);
    if (arr [0] != '0')
    {
    while (k < chaine.Length)
    {
    car = arr [k];
    if (car == '0')
    {
    successZero += car;
    car = ' ';
    k ++;
    }
    else
    break;
    }
    }
    else
    successZero = "";
    return successZero;

    but if I enter "001" the arr [0]= 48 '0' and NOT '0' only I don't know it appears to me that 48 (I know it is the ASCII of 0) but I want to discutate sur arr[0] == '0' or not How to remidiate to that? ty

    C# csharp tutorial question

  • Icon on the left of the fieldLable of a textField
    P Pierre besquent

    Hi guys, I work with EXT JS Framework.I want to place my icon on the left of the fieldlabel of my textField.my code is :

    var labelDownloadReport = new Ext.ux.StaticTextField ({
    readOnly : true,
    scope : this,
    fieldLabel : '<a href="javascript: app.Communication.Edit_Cb.downloadReport">Télécharger </a>',
    labelSeparator : '',
    hidden : this.isNew (),
    height : '0',
    width : '450',
    ctCls : 'app-icon-attachment',
    renderer : app.Communication.Edit_Cb.downloadReport
    });

    my css is :

    .app-icon-attachment
    {
    width : 11px;
    height : 11px;
    background-repeat : no-repeat;
    text-align : right;
    background-position : left;
    padding-left : 10%;
    padding-right : 10%;

    background-image    : url('../../img/communication/attachment.png') !important;
    

    }

    the problem is the icon is always placed on the right of the textField ty

    JavaScript javascript css design help

  • Space in a c# wordAddIn project
    P Pierre besquent

    Hi guys, I devekop a c# wordAddIn project. I want to get space BEFORE generation bookmarks.I had developed a method that adds space after generating bookmarks :

    public static void CreateSimpleField (string itemName, string bookmarkName, Word.Application application)
    {
    object index = 1;

            if (application.Windows.get\_Item(ref index).View.ShowBookmarks == false)
                application.Windows.get\_Item(ref index).View.ShowBookmarks = true;
    
            Word.Selection      currentSelection = application.Selection;
            Word.Range          rng = currentSelection.Range;
            
            rng.Text = itemName;
            
    
            while (application.ActiveDocument.Bookmarks.Exists(bookmarkName))
            {bookmarkName += "\_";}
    	    
            Object              range = rng;
            application.ActiveDocument.Bookmarks.Add (bookmarkName, ref range);
            // Ajouter un espace.
            int             indexRange = rng.End + 1;
            currentSelection.s.SetRange(indexRange, indexRange);
            currentSelection.TypeText(" ");
        }
    

    How to transform it to get space BEFORE bookmarks? Also, when I generate, it appears like this :

    [bookmarkName]

    How can I remove the accolade []???? ty :)

    C# question csharp database tutorial

  • Rename a file from his String Path [Resolved]
    P Pierre besquent

    Hi, File.Move is good solution also File.CopyTo(olderpath, NewPath) is also well working) Ty

    C# question help

  • Rename a file from his String Path [Resolved]
    P Pierre besquent

    Hi guys, How can I rename my file defined by my string Path? I want to pass from : TXTFile_rfcyxt55efrem1fj4sycjv5527-04-2011_17h-4641_0.txt to Entite1.txt ty for u help

    modified on Thursday, April 28, 2011 4:47 AM

    C# question help

  • System.Math.Max(System.Threading.Interlocked.Increment(ref i), i - 1); functionality
    P Pierre besquent

    Hi, If u can give me the // algorithme of this.I can do this like this simply

    Math.Max( ref i , i-1)
    i ++;

    why using of Interlocked.Increment??????? ty

    C# csharp
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups