카테고리 없음2014. 2. 25. 21:48

해답은 정말로 간단한 곳에 있었다...  


function varargout = test(varargin)

% Begin initialization code - DO NOT EDIT

gui_Singleton = 1;

gui_State = struct('gui_Name',       mfilename, ...

                   'gui_Singleton',  gui_Singleton, ...

                   'gui_OpeningFcn', @test_OpeningFcn, ...

                   'gui_OutputFcn',  @test_OutputFcn, ...

                   'gui_LayoutFcn',  [] , ...

                   'gui_Callback',   []);

if nargin && ischar(varargin{1})

    gui_State.gui_Callback = str2func(varargin{1});

end


if nargout

    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});

else

    gui_mainfcn(gui_State, varargin{:});

end

% End initialization code - DO NOT EDIT



% --- Executes just before test is made visible.

function test_OpeningFcn(hObject, eventdata, handles, varargin)


% Choose default command line output for test

handles.output = hObject;


% Update handles structure

guidata(hObject, handles);


% UIWAIT makes test wait for user response (see UIRESUME)

uiwait(handles.figure1);



% --- Outputs from this function are returned to the command line.

function varargout = test_OutputFcn(hObject, eventdata, handles) 


% Get default command line output from handles structure

global data

varargout{1} = data



Posted by 오늘보다 나은 내일
카테고리 없음2014. 2. 18. 13:17

설치와 실행부터 해서 네트워크까지 심플하게 정리


출처 : http://aroundck.tistory.com/98








Posted by 오늘보다 나은 내일
카테고리 없음2014. 2. 15. 00:40

스타크래프트 한번 해볼까라는 생각에 ISO 다운. 씨디키는 이전에 사놨던게 있고.


7 이나 8에서 문제가 생긴다는 것을 들은 기억이 났다. 그래서 VMware 에 설치


그런데... 게임을 실행해보니  전체 화면이 아니다  ㅡ,.ㅡ 


바로 구글링


1. 게스트의 해상도를 호스트의 해상도와 동일하게 해준다.

2. VMware  Edit -> Preferences -> Display 에서  autofit window 해제, autofit guest 해제 

   full  screen 은 stretch guest로 선택

3. C:\사용자\계정이름\appdata\roaming\vmware\preference.ini 수정 

   prer.autoFitFullScreen = "fotHostToGuest" 로 수정. 없으면 추가  

Posted by 오늘보다 나은 내일