AbsoluteCPP 22 Newbie Poster

Now i know what is UDP. And i found one more thing useful.
enet purpose is to provide a relatively thin, simple and robust network communication layer on top of UDP (User Datagram Protocol). The primary feature it provides is optional reliable, in-order delivery of packets.

ENet is NOT intended to be a general purpose high level networking library that handles authentication, lobbying, server discovery, compression, encryption and other high level, often application level or dependent tasks.

AbsoluteCPP 22 Newbie Poster

First i will create a window and message loop using GTKMM, after that i will check that the camera is attached with PC or not using OpenCV. Then i will establish a network connection (UDP Protocol? Socket? i dont know what are these, but i am reading about this from wikipedia). Then i will find all IP addresses that are currently active, okay.
After that a window will appear having the list all active IP address with their HostName, user will select any host with witch he want to chat, and send request to that particular host, if request accepted then a window will appear having a video frame on it...

Am i right??
Correct me if i am wrong some where..

Thanks

AbsoluteCPP 22 Newbie Poster

Thanks programmersbook
What i have understand yet.

1. (wxWidgets/QT) in my case GTKMM because i have used already.

2. ffmpeg. for video encoding and decoding

boots libs for what purpose??
And how to get data from LAN??
How to get from video camera attached to PC??

What will be the Data flow diagram??

AbsoluteCPP 22 Newbie Poster

Is there any other alternative of "ffmpeg" that can be used with C++???

AbsoluteCPP 22 Newbie Poster

This must be a frequently asked question, but I can't find the answer in the FAQ, or in the recent archive of this list, or by using
google with the keywords I thought of.

I would like to use libavcodec.dll and libavformat.dll in my Windows
XP Visual C++ 2008 project. However, I would prefer not to download a whole new compiler environment and compile ffmpeg from sources, just to get the dlls.

Is there anyplace I can find relatively recent precompiled dll's
and a matching header file?

AbsoluteCPP 22 Newbie Poster

Description
I want to have a video conference system.

  1. That is the client-server model.
  2. The client can send audio/video/document(like ppt.doc.xls..)/application sharing/chat functions.
  3. The client's window can receive 16 videos(from other clients).
  4. The client can work on windows platform.
  5. The server can work on windows or linux(it's better).
  6. The video can support 160*120/320*240/640*480...

I copied this description from Here
The problem is, when i read such a description i completely get confused that how and where to start.
Suppose this task is assigned me to complete, so please provide me the guide lines where to start.

I know windows API little bit and made small projects during study session, but i don't know how to render video on the Window.

Question is: What i need to know to complete this project??

Thanks..

AbsoluteCPP 22 Newbie Poster

Code View
In the linked page u can see that source code is properly formated, how to do that??

I am making my web, i want to know that how can i show the c++ source code on my web with proper format.

Q: How to show a formated source code on a HTML Page.

Thanks.

AbsoluteCPP 22 Newbie Poster

Can we catch event from Flash to C++,

For example if a user press a button in Flash, we want to activate a method in our C class,
I search on google but i did to get any thing satisfactory.
They only show how to play a Flash movie in MFC dialog using ShockWave ActiveX Control.

Now i am able to run a flash *.swf file on MFC dialog using ShockWave ActiveX Control.
What i want now, if i press a button in Flash then there must be method in c that must be execute.

Hope u understand what i am asking for.

Thanks.

AbsoluteCPP 22 Newbie Poster

I know Win32 API and MFC,
But with them i am not able to make such a rich GUI.

Here, what i have done in MFC
[IMG]http://img98.imageshack.us/img98/4835/30722030.png[/IMG]


It is not for a web, it is desktop application.

iamthwee commented: wow give this guy a medal +22
AbsoluteCPP 22 Newbie Poster

We have seen websites using Flash, very cool Menus, slides and much more. How to do this in C++.

I am making a Contact Book.
I want to create eye chating cool look GUI for it's front end.

I have made a class named ContactManager
this class get contact information in form of string store it to file and reterive back.

I implemented this in Console.
Now i want it to be like Desktop application.

Need Guidence.

Thanks.
Muhammad Ahmed.

AbsoluteCPP 22 Newbie Poster

I have my back ground in VC# is desktop application development.

In VC#

if(user.Text == "admin")
{
	form f = new AdminForm();
	f.show();
}
else if(user.Text == "Facaluty")
{
	form f = new FacForm();
	f->show();
}

on different user level i can open differnt form according to their level, each form have differnet look and feel, and differnet content on them.


Current i am developing a web, familar with PHP basics.
What i want suppose
there are three element on the web page
1. user name feild
2. user filed password
3. drop down list having option i)Adimn, ii)Faculty, iii)Student
and a Login button.

i want to open different pages on differnt dropdown list options for examples
if user select admin from drop down list and press Login button then admin.php page should be open, and if user select student from the list then press the Login Button then Students.php page should be open.

How to do that, need guide lines. I want to learn, any tutorial any thing that will help me.

Thanks.

AbsoluteCPP 22 Newbie Poster

Suppose i have a class called Vector3

methods and attributes are defined in Vce.h file,
methods of this class are implemeted in Vec.cpp file,

now i want to distribute this class to my other xxx(what so ever),

What i want:
1.Allow them to see what methods and attributes are available in this class.
2. Allow them to use methods of these class into their code

What i don't want:
1. I don't want to allow them to see how methods are implemeted.
2. Dont want to allow them to edit this class, but they can enhance the class compability by making their own derived classes using this class as a base.

How to achive this??
I have listen some what that dll and lib files are used for this kinda stuff but don't know how?

Any tutorial, or article related this plz put the link here.

Thanks.
Muhammad Ahmed

AbsoluteCPP 22 Newbie Poster
AbsoluteCPP 22 Newbie Poster

I have listen that different types of application architectures are running now a days, i want to know about them completely, If some one have any link or any book related to them plz post it here.

I try google but tilll not found any thing useful,
i only found this .NET Application Architecture: the Data Access Layer till now.

Share some thing for better understanding of application architectures.

I am building "Hotel System", i want to make it tottaly organized.
Using VC#, .NET and MY Sql Server for development purpose.

Thanks.