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

Search:

Type: Posts; User: Neolitz

Search: Search took 0.04 seconds.

  1. Replies
    0
    Views
    675

    [Ask] Movie Player

    I just Wonder How i can create movie player like MPC..
    i tried wmp but it wont work for movie like mkv dll..
    and i tried directx. but when i played it on other pc [old] . it wont work
    but mpc...
  2. Replies
    3
    Views
    1,001

    Re: problem of exe and DLL

    well i know that ilmerge cant do that
    combine exe+dll

    but can i make the dll in the .cs or other way to make the things easier.
    ilmerge is my alternative.

    still thanks for advice :D
  3. Replies
    3
    Views
    1,001

    problem of exe and DLL

    here comes the problem:
    i wanted a program = exe without dll
    but as i use an external dll. the program will need the dll to running

    anyone know how to make exe without dll
    and not merge it....
  4. Re: Need help My program takes 30% of my i7 2600k processor

    i can't really give the full code because its like 1500++ line.
    so i dont even think it will help..

    so i figure and take what they do.
    some of them still a function.. so

    ill explain a little...
  5. Need help My program takes 30% of my i7 2600k processor

    i wonder why my processor takes 30% of my processor
    i even use i7 2600k

    when i tried at my pc at work it takes almost 100%
    but the pc didnt lag at all..

    i use a timer - inverval 100
    and use...
  6. Re: Having issues in data handling of windows forms.

    the only way the others FORM can controls FORM1
    is to give them by parameter


    class Form1
    {
    Form2 fr;
    public Form1()
    {
    fr = new Form2(this);
  7. Replies
    4
    Views
    1,435

    Re: Need help for Loading bar

    i've tried with thread. but
    when i do the datagridview i created show a new row but empty data.. even when i tried access it it crash..

    so i was think of background thread..
  8. Replies
    4
    Views
    6,067

    Re: String manipulation in c#

    well this how i do it..



    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;

    namespace nileshvk
  9. Replies
    4
    Views
    1,396

    Re: need help regarding event

    how i do that?

    anyway about the video.play();
    if i dont call it the video wont play ..
  10. Replies
    4
    Views
    1,435

    Re: Need help for Loading bar

    Im truely sorry to forget attach the code..

    @foamy.
    yours idea is nice. i really want to implement it. but how..

    this code below will get all File name in the items you drop into
    but when on...
  11. Replies
    4
    Views
    6,073

    Re: Trim ComboBox items

    the foreach will work with >>
    now for the > try to do this

    instead of do it to all data in the combo box we will do to the item selected and insert it to the list



    String temp =...
  12. Replies
    4
    Views
    6,073

    Re: Trim ComboBox items

    use this




    String data = "Processor:12000";
    String result = data.substring(data.lastIndexOf(":")+1);
  13. Replies
    5
    Views
    1,264

    Re: HELP! Question about C#

    this how i use the oledb[access]
    hope this helps you



    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
  14. Replies
    4
    Views
    1,396

    need help regarding event

    i've come across trouble again this time.

    my problem :


    i want to make a Movie Player using Micorost.directx.audiovideoplayback.dll
    whats make it trouble is => i want to double click to make...
  15. Re: How to open file location from list view item using context menu strip?

    from what i read. i think you got the problem for
    right click -> show the contextmenustrip and open the folder
    so i tried make a simple program with internal documentation on it.

    try to run it...
  16. Replies
    4
    Views
    1,435

    Need help for Loading bar

    i've got a problem
    i tried to create a music player, and i already finish it.
    and still searching for bug.
    but i got problem if the user place folder with ton of recursive folder and like > 300...
  17. Re: Working with Generic List collection and LINQ (Need Help)..

    try using this

    foreach (var item in reordered)
    {
    newOutput.Items.add(item);
    }

    instead of

    foreach (var item in reordered)
Results 1 to 17 of 17





Click Here to Expand Forum to Full Width

Featured