sorry, just an error while i tried to post my message. I received error updating...
CHEICKNA TRAORE
Posts
-
How a window can keep focus ? -
How a window can keep focus ?Hi every body, I use this code to stay my window on top :
::SetWindowPos(m_hWnd ,HWND_TOPMOST,294,251,415,240,SWP_SHOWWINDOW);
is there any way so that my window keep alwas the focus? Thanks in advance georges -
How a window can keep focus ?Hi every body, I use this code to stay my window on top :
::SetWindowPos(m_hWnd ,HWND_TOPMOST,294,251,415,240,SWP_SHOWWINDOW);
is there any way so that my window keep alwas the focus? Thanks in advance -
How my window keep focus ?Hi every body, I use this code to stay my window on top :
::SetWindowPos(m_hWnd ,HWND_TOPMOST,294,251,415,240,SWP_SHOWWINDOW);
is there any way so that my window keep alwas the focus? Thanks in advance Georges -
Problem tu use fmode functionHi, I have a problem to use fmode function in visual C++ If i use : fmode(-2,10) i obtain 0. But in using Microsoft Excel MODE function like this : MODE(-2;10) i obtain 8 Where is the problem. Thanks in advance
-
Problem to use ListSubItem Object in ListViewHi, I try to use ListsubItem object but i always this following error message: Compilation error method or data member not found Can anybody help me please thanks in advance Cheickna This is my code Dim si As ListSubItem Dim li As ListItem Dim i, J As Integer For i = 1 To 20 Set li = ListView1.ListItems.Add(Text:="Item " & i) For J = 1 To 4 Set si = li.ListSubItems.Add(Text:="Subitem " & J) si.ForeColor = vbRed Next J Next i
-
i want some lesson for dynamic declarationHi, I have an array like this : char sArray[4][5]; I want to declare this array with new or malloc like this :
char** sArray=NULL; sArray = new char[20]; or sArray = (char*)malloc(20);
Can anybody help me to write correct declaration Thanks in advance -
Problem with float ( differnce between float and integer)Hi, Here is code : CString Valeur="1250.20"; int Fractional = ((atof(Valeur) - atoi(Valeur)) * 100); Value of Fractional variable after thsi operation is 19 ( False ) I must be 20 Where is my error Thanks in advance
-
How to get The list of domains on networkHi, I want to get the list of domains in network. For example, on my network there are 25 computers and three domains ( Development, Customer and Save ). How programatically can i list in a listbox or example ( or in array) theses domains names? Thank in advance
-
Computers names on networkHi, I work in Visual C++ 6.0 and i want to get all computer names on a network How can i get (enumerate) theses machines names?. Is there network browsing dialogs in C++ std or MFC ? Thanks in advance