ok i know Thank YOU for YOUR big help Have a nice day
Pierre besquent
Posts
-
Team Foundation server ???? -
Team Foundation server ????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
-
Test ToolsHi 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
-
Ext.ux.maximgb.treegrid.GridPanel Search functionnalityHi 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
-
FireFox-Javascript issueHi 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
-
Open my website with FireFox navigatorHi, 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
-
FireFox-Javascript issueHi 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
-
Open my website with FireFox navigatorHi, that will delete the localhost as trusted server and my first problem is rentering :) ty
-
Open my website with FireFox navigatorHi Pete, Always commenting :) . this is all related with c# because I develop my application with c#. Try to help me ty
-
Open my website with FireFox navigatorHi, 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
-
Open my website with FireFox navigatorHi 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
-
String value in C#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
-
String value in C#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
-
String value in C#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
-
String value in C#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
-
Icon on the left of the fieldLable of a textFieldHi 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
-
Space in a c# wordAddIn projectHi 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 :)
-
Rename a file from his String Path [Resolved]Hi, File.Move is good solution also File.CopyTo(olderpath, NewPath) is also well working) Ty
-
Rename a file from his String Path [Resolved]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
-
System.Math.Max(System.Threading.Interlocked.Increment(ref i), i - 1); functionalityHi, 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