Maybe Im wrong, but for something like that you will need to find out the exact: location / size / contents of the MPEG file header.. Then its just a matter of creating a class / struct that will hold the information once you read it in from the file. Hardest Part of your Problem is finding out Where the information is stored (location of the header) and what the data structure is. Might involve a little decodeing, but do some searches on the web and youll be fine. recurse.org - Recusion For the Rest Of Us.
Ryan Baillargeon
Posts
-
reading mpeg header -
Help! Database QuestionI have a question I am running a dual processor Xeon processor running IIS 5.0 and serving pages / info from an Access DB. I havnt run into any problems yet, but here is my question. Is there a maximum of concurrent users that can query the DB at one time? Are there any relevant restrictions that using an Access DB over say SQL server that I should be aware of. Can anyone provide me with information as to the benefits related with running a SQL Server over an access DB? It seems that when I am page loading from a MAC the server really chugs? any insight? I can use many PC's concurrently, but when I access the website with a MAC its quite a different story.. Any Help / Finger pointing to help would be appreciated. recurse.org - Recusion For the Rest Of Us.
-
HElp! Database QuestionI have a question I am running a dual processor Xeon processor running IIS 5.0 and serving pages / info from an Access DB. I havnt run into any problems yet, but here is my question. Is there a maximum of concurrent users that can query the DB at one time? Are there any relevant restrictions that using an Access DB over say SQL server that I should be aware of. Can anyone provide me with information as to the benefits related with running a SQL Server over an access DB? It seems that when I am page loading from a MAC the server really chugs? any insight? I can use many PC's concurrently, but when I access the website with a MAC its quite a different story.. Any Help / Finger pointing to help would be appreciated. recurse.org - Recusion For the Rest Of Us.
-
Is there any way to get a server (stores username and password) besides buying one?it really depends on how your clients are accessing your server. Im sure you could definately program in some HTML scripting into your client game to connect to and login into a server (simply running IIS on NT) but thats not really a secure means of accomplishing that. If your client connects through his webv browser, then this is the best wat to handle it. Just research using ASP to create login pages and user accounts in win2000. If your client is conecting through an application like Quake CLient / Server technology then you will need to program a Server Application to handle that. recurse.org - Recusion For the Rest Of Us.
-
Access DB - Please Help!I have a question I am running a dual processor Xeon processor running IIS 5.0 and serving pages / info from an Access DB. I havnt run into any problems yet, but here is my question. Is there a maximum of concurrent users that can query the DB at one time? Are there any relevant restrictions that using an Access DB over say SQL server that I should be aware of. Can anyone provide me with information as to the benefits related with running a SQL Server over an access DB? It seems that when I am page loading from a MAC the server really chugs? any insight? I can use many PC's concurrently, but when I access the website with a MAC its quite a different story.. Any Help / Finger pointing to help would be appreciated. recurse.org - Recusion For the Rest Of Us.
-
Ouput Help Please!Thanks for all the previous help, My App is in its final stage. I have a reporting module in my app that generates a CTreeCtrl View of all the Work the User has done during their session, and is Serializeable as well. When the User CLick on a Node of the tree I have a function that will output detailed information on the Action. INformation stored in Objects in an Obrray. My Problem is a simple One. Where Can I put My output!!? I can get the text and write the text but what I would like is an ajoined CEdit or Similar CWnd Derived object to output the text to. How can I do this? WHat is the Best Method? I require it to be MultiLine as My output will look like this Date: blaha alblka Computer Name: ksdfjlkasjd Action: COPY FILE STEP 1: OPEN FILE :: SUCCESS!! STEP 2: OPEN DEST :: SUCCESS!! STEP 3: OPEN FILE :: SUCCESS!! and so on. Now Is there a way to use Set Window Text or similar function that will output a MultiLine String or a series of strings.. any help / suggestions would be appreciated. thanks. recurse.org - Recusion For the Rest Of Us.
-
CListCtrl - Delete Selected Items???The post Below this describes how to do this Task Recursively, but that has a lot of overhead if your list of selected Items is really large. I figured out the "mIchael Dunn" method sometime this morning and that works very well. Using GetFirstSelected() over and over. The List Method is probably the best way to go however. Thanks EVERYONE. recurse.org - Recusion For the Rest Of Us.
-
CListCtrl - Delete Selected Items???Okay, I got it working, BUt this is how.. good old recursion. All I did was read to the end of the selected list and then recursively delete from there.. heres the code: Does anyone have a better IDEA ? void CChildView::OnRemItems() { POSITION pos = m_SpewWnd.QueueView.GetFirstSelectedItemPosition(); DelQ(pos); Invalidate(); } void CChildView::DelQ(POSITION pos) { while (pos != NULL) { int nItem=m_SpewWnd.QueueView.GetNextSelectedItem(pos); DelQ(pos); m_SpewWnd.QueueView.DeleteItem(nItem); } } Is this the asinine way to do this? I like recursion But I dont think MS had this in Mind at all. recurse.org - Recusion For the Rest Of Us.
-
CListCtrl - Delete Selected Items???Thats what my code looks like exactly except for a TRACE I did on Position to Check for NULL. However, I did use your code exactly and my problem still remains. I am only deleteing every other Item that is selected, SO if I am deleteing item 123456 which are all selected using that code above leaves 246 intact and still selected. Am I a BOOB? This is irking me especially since its one of my last bugs, and I cant implement anything else until this is solved. Here Ill even copy out my code for you. I really need help on this. void CChildView::OnRemItems() { POSITION pos = m_SpewWnd.QueueView.GetFirstSelectedItemPosition(); while (pos != NULL) { int nItem=m_SpewWnd.QueueView.GetNextSelectedItem(pos); m_SpewWnd.QueueView.DeleteItem(nItem); } Invalidate(); } Maybe you could also tell me how to get that code selected while posting.. =) recurse.org - Recusion For the Rest Of Us.
-
CListCtrl - Delete Selected Items???Maybe its 3:30 and My Head is Not Straight, But Im having trouble Figureing this one out. This is my First VC++ App and things are going quite well. ;P My Problem is I have a CListCtrl that is representing "Tasks" in a Queue. I would like the USer to Be Able to Delete any number of Selected Items in the Queue. So if they Select Five Items and Click "Remove" those Items and Their Corresponding Data will be deleted. My problem is Navigating Through the Selected Item List. In Other CListCtrls I use I use the Same Method of moving through the Item List with no Problem. Whats the best Method for Deleteing Items from a CListCtrl that are Selected. GetNExtSelected or using the LVIS_SELECTED mask to identify selected Items and remove them? quick sample code would be appreciated. recurse.org - Recusion For the Rest Of Us.