commucation system

09/12/2013 19:18 Rhyder`#1
someone know about this?
[Only registered and activated users can see links. Click Here To Register...]

when i click ( below the yellow arrow) APP_CHAT_LOG will not show... how to fix this problem?

Here is the code:
Code:
	if( g_WndMng.m_pWndChatLog == NULL )
	{
		g_WndMng.m_pWndChatLog = new CWndChatLog;
		
		if( g_WndMng.m_pWndChatLog )
		{
			g_WndMng.m_pWndChatLog->Initialize( NULL, APP_CHAT_LOG );
			
			CRect rectRoot = m_pWndRoot->GetLayoutRect();
			CRect rect = GetWindowRect(TRUE);
			CRect rect2 = g_WndMng.m_pWndChatLog->GetClientRect(TRUE);
			
			int x = 0;
			int y = rect.top;
			
			if( (rect.right+rect2.Width()) < rectRoot.right )
				x = rect.right;
			else
				x = (rect.left - rect2.Width() );
			
			CPoint point( x, y );
			g_WndMng.m_pWndChatLog->Move( point );
			pWndCheck3->SetCheck(false);
		}
	}

	if( g_WndMng.m_pWndChatLog)
	{
		CWndButton* pWndCheck3  = (CWndButton*)GetDlgItem( WIDC_CHECK3 );
		if( pWndCheck3 )
			pWndCheck3->SetCheck(g_WndMng.m_pWndChatLog->SetVisible);
		    g_WndMng.m_pWndChatLog->SetVisible(false);
	}
09/12/2013 19:47 Sedrika#2
Why don't you just write in english so we could all understand you?
09/12/2013 21:41 Chriѕ#3
Er sagt glaub ich, wenn er auf den APP_CHAT_LOG klickt öffnet er sich nicht oder zeigt ihm nicht den Log an.
09/12/2013 22:48 Wanetrain#4
Quote:
Originally Posted by Metamoor View Post
Er sagt glaub ich, wenn er auf den APP_CHAT_LOG klickt öffnet er sich nicht oder zeigt ihm nicht den Log an.
Laut dem Code MUSS es sich öffnen, ich glaub er versteht aber weniger wozu es da ist. :D
09/13/2013 01:40 Misec#5
Also entweder öffnet sich bei ihn kein Fenster, oder er möchte diesen Button weg haben. oo:
09/13/2013 06:23 Rhyder`#6
But how should i fix this issue?
09/13/2013 14:18 Pixelfehler#7
->this [Only registered and activated users can see links. Click Here To Register...] ?
09/13/2013 18:14 Rhyder`#8
Quote:
Originally Posted by Pixelfehler View Post
->this [Only registered and activated users can see links. Click Here To Register...] ?
yes... that one... how should i do mine like that?
09/13/2013 19:04 ademir321#9
Noob, it's is simple to fix -> [Only registered and activated users can see links. Click Here To Register...]
09/13/2013 20:18 Teare#10
You can also write friendly.
09/14/2013 04:17 Rhyder`#11
Quote:
Originally Posted by ademir321 View Post
Noob, it's is simple to fix -> [Only registered and activated users can see links. Click Here To Register...]
I did what you did but the button are already press it will destroy when you press skip :3
09/14/2013 18:18 ademir321#12
use variable = !variable;
09/15/2013 16:51 Rhyder`#13
Quote:
Originally Posted by ademir321 View Post
use variable = !variable;
Look--> [Only registered and activated users can see links. Click Here To Register...]

after i press chat log will open.. and when i press it back it wont remove...