No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
$scope.works = [ { wproperties:'<span>text #1</span><span>text #2</span><span>text #2</span><span>text #3</span>' } ] <span ng-bind-html="work.wproperties"></span> span is printing as null, who can help me? controllers and ng-app working so ng-bind-html not working..
Hi, I want to show/hide my MFC Dialog from another class; Main App : HomeWorkApp Main Dlg : HomeWorkDlg #include "HomeWorkDlg.h" #include "HomeWorkApp.h" CWorkUser::CWorkUser() { // Initialize MFC Dialog here.. // How ?? MainDlg->ShowWindow(SW_SHOW); } CWorkUser::~CWorkUser() { // Finalize MFC Dialog here.. } Thanks..
Working css : <style type="text/css"> body { width:550px; margin-left:auto; margin-right:auto; } ul.main { } ul.main li { list-style-type:none; border:1px solid #333; float:left; width:10em; text-align:center; cursor:pointer; } ul.main li ul.sub { display:none; color:#F00; margin-left:-41px; } ul.main li:hover ul.sub { display:block; } ul.main li:hover ul.sub li a { text-decoration:none; color:#F00; } ul.main …
Hi, I want to learn window count of one process, who have any idea about this?
How can i disable or hide mfc application taskbar icon? seems like "ShowInTaskBar = false";
Hi guys, i want to create mfc application in custom DLL, another C++ application init dll dialog will be shown is it possible?
Hi every body, i want to get a data from List<T> so; class Npc : IDisposable { public short id; public float fX; public float fZ; public float fY; } internal List<Npc> m_arNpcArray = new List<Npc>(); I want to get data like this; m_arNpcArray.GetData(int id); GetData() { for(int i = …
BYTE GetByte(char* sBuf, int& index) { int t_index = index; index++; return (BYTE)(*(sBuf+t_index)); } int GetShort(char* sBuf, int& index) { index += 2; return *(short*)(sBuf+index-2); } and i cannot convert this
You can use windows forms. `this.hide();`
The End.