CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: kabilius

Page 1 of 6 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    4,675

    Combine Audio and Video files

    Hi all,

    Let's say I have an audio file (.WAV file) that's 6 seconds long, and a video file (.AVI file) that's 1 minute long.
    Is it possible to merge the two files into a 1 minute 6 seconds file...
  2. Replies
    2
    Views
    783

    Re: "Copy" a HTML page

    Hi Hannes,

    I think you have deciphered my ambiguous language correctly.
    I guess there just isn't a easier to do what I want than SHDocVW and MSHTML, thank you for pointing me to the right...
  3. Replies
    2
    Views
    783

    [Resolved]"Copy" a HTML page

    Hi all,

    I want to parse a webpage and extract relevent data from it. My current approach is to download the source of the webpage (HTML codes), then use some keywords to extract the necessary...
  4. Replies
    3
    Views
    3,641

    Re: Webclient Download file

    Hi RaleTheBlade,

    Yes, I ended up taking your suggestion of controlling the download myself.
    Originally, I was hoping for a Windows API which automatically blocks my thread before the current...
  5. Replies
    3
    Views
    3,641

    Webclient Download file

    Hi all,

    I am using .NET 3.5.
    In my program, I need to download 5 files on a website, then parse the files after each download.
    I started out using the WebClient class, and I have code similar to...
  6. DataGridView exception when removing DataRow

    Hi all,

    I am using .NET 3.5 <-> VS2008.

    I have a DataGridView which ties to a DataTable, and I constantly add and remove DataRows from the DataTable.
    Adding DataRows seems to work fine, but...
  7. Replies
    4
    Views
    780

    Re: Right click on MenuItems

    Hey Talikag,

    Thanks for introducing ToolStripMenuItem to me.
    I briefly looked at ToolStripMenuItem, but it seems not as flexible as MenuItem. (it seems like it cannot have sub menus, so that can...
  8. Replies
    4
    Views
    780

    Re: Right click on MenuItems

    I wish I could, but I don't think MenuItems tracks MouseDown / MouseUp events. It only has Click events...
  9. Replies
    7
    Views
    955

    Re: real basic help for a student

    Oops, I missed the attachment..

    I still don't know what is the exact failure mode you are encountering, but I think here is a problem you want to fix.
    I think you meant to put the "else" at line...
  10. Replies
    7
    Views
    955

    Re: real basic help for a student

    Your program sounds simple enough, why not post a small sample of the non-working code?
    People here, won't write it for you, but if you have an obvious mistake, they will usually point it out to you...
  11. Replies
    4
    Views
    780

    Right click on MenuItems

    Hi all,

    I built a ContextMenu and added some Menuitems to it, and now I am trying to create a menu for each menuitems in the ContextMenu.
    When I right-click on the menuitems, I want to create...
  12. Replies
    0
    Views
    2,239

    Prevent Out of memory exception

    Hi all,

    I am using .NET 3.5.

    I have a program that can hog lots the memory if too much data is requested. A client system obviously do not have a infinite amount of memory, so I am wondering if...
  13. Replies
    0
    Views
    707

    Grid column formatting

    Hi all,

    I am trying to setup a certain time-format in my column, so that all the data displayed in this column have the same format.
    "Second" is the smallest unit I want to display. For example,...
  14. Replies
    3
    Views
    1,061

    Re: debug c# with VS2008

    Hi eclipsed4utoo,

    Thanks for the reply.
    I guess "managed" code just doesn't allow us to have the kind of memory access I am looking for.

    I set a break point in the SizeChange event, and got...
  15. Replies
    3
    Views
    1,061

    [SOLVED] debug c# with VS2008

    Hi all,

    I am using .NET 3.5 with VS2008.

    I have a variable mySize decared as follows


    Size mySize = new Size(30, 30);
  16. Replies
    0
    Views
    613

    disabling context menu

    Hi all,

    I am using .NET 3.5

    Here is the reason why I want to disable context menu: Context menus are modal and prevents anything from running until they are dismissed. If I activate a context...
  17. Replies
    3
    Views
    1,174

    Re: Scrollbar + Home/End key

    Hello HanneSThEGreaT,

    Yes, you are correct. I guess it will confuse the users a bit since all other application uses this logic.

    So I guess I shouldn't change it afterall. :)
    Thank you for the...
  18. Replies
    3
    Views
    1,174

    [RESOLVED] Scrollbar + Home/End key

    Hi all,

    I have both horizontal and vertical scrollbar in my grid. When I press the "End" key on the keyboard, the horizontal scrollbar scrolls to the end its position.
    Is it possible to change...
  19. Replies
    0
    Views
    1,397

    Question about EditStreamSetInfo()

    Hi all,

    I am working with an AVI file. There are 9 frames in the AVI file and each frame last 3 seconds.
    I want the frames to start playing 6 seconds after the AVI file is played, so I change the...
  20. Replies
    10
    Views
    1,848

    Re: Parent access child's methods

    Hmm, I guess when you guys keep asking questions, you are finding out more about what I am doing. :)

    Here is a concept on what I am doing.



    ParentOne distance = new ChildTwo();
    distance.
    ...
  21. Replies
    10
    Views
    1,848

    Re: Parent access child's methods

    Hmm, I guess I should have said, "class ChildTwo has a property in it that does not exist in the interface"
    My code is something like this right now.



    public class ChildTwo : ParentOne
    {
    ...
  22. Replies
    10
    Views
    1,848

    Re: Parent access child's methods

    BigEd,
    Thank you for the recommendation. polymorphism is just what I needed.



    The reason I cannot create an interface object is because the method CalculateDistance() has a class variable...
  23. Replies
    10
    Views
    1,848

    Parent access child's methods

    Hi all,

    I am trying to access a child's method from parent.. (it seems like the wrong thing to do, but I am kind of out of ideas)

    Here is the scenario.
    A parent, ParentOne, has 2 sub-classes -...
  24. Replies
    1
    Views
    3,769

    Re: C# object to get PCM of a WAV file

    Hi all,

    After studying DirectShow for a night, I was able create a source filter to read the content of an audio file; however, I am still abit unclear about how exactly direct show works.

    I...
  25. Replies
    1
    Views
    3,769

    C# object to get PCM of a WAV file [.NET ver 3.0]

    Hi all,

    .NET version 3.0
    I am trying to get the PCM of a .WAV file, so that I can calculate the waveform.
    Is there a .NET or COM object that returns the PCM of a WAV file? or do I have to parse...
Results 1 to 25 of 139
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured