Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

suroor453

@suroor453
About
Posts
24
Topics
12
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • how to make stand-alone application with matlab? [modified]
    S suroor453

    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

    C / C++ / MFC help tutorial question

  • why this HTML code works with Hotmail while it dosnt work with Yahoo! ??!!
    S suroor453

    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

    Web Development html question

  • why this HTML code works with Hotmail while it dosnt work with Yahoo! ??!!
    S suroor453

    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

    Web Development html question

  • how to make .exe file by MatLab
    S suroor453

    thank u very much ......u r helpful

    Algorithms question tutorial

  • how to make .exe file by MatLab
    S suroor453

    Tim 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

    Algorithms question tutorial

  • how to make .exe file by MatLab
    S suroor453

    I 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

    Algorithms question tutorial

  • how to make .exe file by MatLab
    S suroor453

    I 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???

    Algorithms question tutorial

  • How can I use the objects which I made by 3DMax into Open GL ??!!
    S suroor453

    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

    C# question csharp help

  • How can I use the objects which I made by 3DMax into Open GL ??!!
    S suroor453

    I made objects By 3D Max and I want to use these objects in Open GL... I'm useing C# I Appreciate any help

    C# question csharp help

  • How to export 3D Max object to Open GL C# ??!!
    S suroor453

    I'm using Open GL with C# and I want to import objects from 3D Max. How Can I do that??

    C# question csharp tutorial

  • how to add a templet to the ASP.net ?
    S suroor453

    please help

    ASP.NET csharp asp-net help tutorial question

  • I want to conact Mr.Andrew Peace
    S suroor453

    please 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

    C / C++ / MFC c++ com

  • how to sort a linked list?
    S suroor453

    is this sort int or sting? I need to soet strings

    C / C++ / MFC data-structures tutorial question

  • how to sort a linked list?
    S suroor453

    how can I switch to std::list, and use std::sort. ??! I didnt understand.....sorry

    C / C++ / MFC data-structures tutorial question

  • how to sort a linked list?
    S suroor453

    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;

    C / C++ / MFC data-structures tutorial question

  • add class to a project
    S suroor453

    there are 3 header files and 2 module files(.cpp) how can I import these files to my workspace(I'm using VC++ 6)

    C / C++ / MFC

  • add class to a project
    S suroor453

    how can I add this console app. to my project as a class????!!!!

    C / C++ / MFC

  • add class to a project
    S suroor453

    I have download a demo console applic. from this site,but I want to add it to my project(console applic.) as a class

    C / C++ / MFC

  • Save &amp; Open
    S suroor453

    I 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; } //**********************************************

    C / C++ / MFC data-structures

  • Save &amp; Open
    S suroor453

    i 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)

    C / C++ / MFC data-structures
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups