I'm using matlab 7.0.1 (R14 sp1) I want to CONVERT my GUI to a stand alone application (.exe file) that dosent need Matlab to run. I uesed the mcc function but I faild I uesd this code mcc -m mygui.m it creates an .exe file and some other files when I run the .exe file, a black window appears for seconds then nothing happen plz I need ur help -- modified at 15:51 Tuesday 19th June, 2007
suroor453
Posts
-
how to make stand-alone application with matlab? [modified] -
why this HTML code works with Hotmail while it dosnt work with Yahoo! ??!!sorry...I didnt understand I just want a way to make the words move from down to up in Yahoo mail I can make them move from left to right or write to left but i cant do that for up to down or down to up plz heeeeeeeelp
-
why this HTML code works with Hotmail while it dosnt work with Yahoo! ??!!I'm using the following HTML code in emails to make the words move from up to down.... it works with Hotmail but it dosent work with Yahoo!....why? I used the code which make the words move from right to left and it works with both Yahoo! and Hotmail why the code of up to down or down to up dosent work with Yahoo??!! while the code of right to left or left to right works with Yahoo the code is :
WRITE HERE
-
how to make .exe file by MatLabthank u very much ......u r helpful
-
how to make .exe file by MatLabTim Paaschen wrote:
You will have to buy the MatLab compiler.
I have matlab 6.5 and matlab 7 is that what u mean??? thank u 4 ur help
-
how to make .exe file by MatLabI didnt understand I wrote help mcc on my matlab command window.... I read what is written.... but how can I convert a matlab project to .exe file that dosent need matlab program to run... note: I'm using matlab 6.5 or 7
-
how to make .exe file by MatLabI want to make my project (witch I did it with Matlab) I want to make it runs on any PC without the need of Matlab program to be on this PC. in other words...I want to make my project an (.exe) file. how can I do that please???
-
How can I use the objects which I made by 3DMax into Open GL ??!!I'm allready use openGL with c# I have visited this link before, but it deals with VC++ and there is no comments in the code source. if there is onther tutorial which deals with C# plz inform us thanks
-
How can I use the objects which I made by 3DMax into Open GL ??!!I made objects By 3D Max and I want to use these objects in Open GL... I'm useing C# I Appreciate any help
-
How to export 3D Max object to Open GL C# ??!!I'm using Open GL with C# and I want to import objects from 3D Max. How Can I do that??
-
how to add a templet to the ASP.net ?please help
-
I want to conact Mr.Andrew Peaceplease I'v read an articale by Andrew Peace http://www.codeproject.com/cpp/linkedlist.asp[^] and I want to ask him about somthing in this artical
-
how to sort a linked list?is this sort int or sting? I need to soet strings
-
how to sort a linked list?how can I switch to std::list, and use std::sort. ??! I didnt understand.....sorry
-
how to sort a linked list?I have a linked list each node of it hase (name,phone....) I want to sort it by name struct PhoneBookEntry { CString Name,Email,Website,Adress; CString OfPhone,HoPhone,Mobile; }; typedef CList PhoneBook; PhoneBookEntry* InputEntry() { PhoneBookEntry* pEntry = new PhoneBookEntry; cout << " Enter New Contact Details:" << endl; cout << " Name : "; char cName[100]; gets(cName); return pEntry; } void main() int nChoice switch (nChoice) { case 1: // add contact PhoneBookEntry *pEntry; pEntry = InputEntry(); g_PhoneBook.AddTail(pEntry); break; case 2: // list entries pos = g_PhoneBook.GetHeadPosition(); while (pos) { PhoneBookEntry* pEntry = g_PhoneBook.GetNext(pos); PrintEntry(pEntry); } break;
-
add class to a projectthere are 3 header files and 2 module files(.cpp) how can I import these files to my workspace(I'm using VC++ 6)
-
add class to a projecthow can I add this console app. to my project as a class????!!!!
-
add class to a projectI have download a demo console applic. from this site,but I want to add it to my project(console applic.) as a class
-
Save & OpenI want to save the entry details on the hard disk after entering it then when I open the programe again I want the details to be entered to the list again I APPROCIATE ANY HELP #include #include typedef CList PhoneBook; struct PhoneBookEntry { CString Name,phone; }; //***********************main************ switch (nChoice) { case 1: // add entry PhoneBookEntry *pEntry; pEntry = InputEntry(); g_PhoneBook.AddTail(pEntry); break; case 2: //list entries pos = g_PhoneBook.GetHeadPosition(); while (pos) { PhoneBookEntry* pEntry = g_PhoneBook.GetNext(pos); PrintEntry(pEntry); } } //*********************************** PhoneBookEntry* InputEntry() //func. to enter details { PhoneBookEntry* pEntry = new PhoneBookEntry; cout << "Enter new entry details:" << endl; cout << " Name: "; char cName[100]; gets(cName); cout << " Phone: "; char cOfPhone[100]; gets(cOfPhone); pEntry->Name = cName; pEntry->Phone = cOfPhone; return pEntry; } //**********************************************
-
Save & Openi made a linked list of nodes...! but i need to save my list of nodes on hard disk... and i need to load this list when i open my program... (it is a phonebook program in console application)