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

Search:

Type: Posts; User: kevin619

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    245

    Secure HTML and CSS Website by hackers

    Hey, Friends one of my website is copying by different Indian web designers and developers, i found almost 4 website who are copied my client website design. Let me know if there is any method to...
  2. Replies
    4
    Views
    1,036

    Re: MFC Context Menu

    Start Microsoft Visual C++ MFC Application named ControlContext
    Create it as Dialog Box without the AboutBox
    Set the Dialog Title to Context-Sensitive Menu on Controls
    Add a button to dialog box....
  3. Replies
    5
    Views
    1,359

    Re: Graph a Set of Values from an Array

    Sorry I don't know about C++ because I have no more idea about it.
  4. Replies
    17
    Views
    2,109

    Re: Quick Array Copy

    > Dear developers,
    > I have a question. Is there a faster array copy than a for loop. What
    > would you suggest for this code sample?
    >
    > void get(char* src, char* dest, int i) {
    > for (int j =...
  5. Re: I have small image and big image. How i can search small image on big image and

    What is the format of the image? BMP, JPG, GIF TIF PNG etc.
  6. Replies
    2
    Views
    909

    Re: Real time ray tracing how does it done

    You can find the tutorial Jacco Bikker made here: http://www.flipcode.com/archives/Raytracing_Topics_Techniques-Part_1_Introduction.shtml

    It's kinda advanced since it goes through almost all...
  7. Replies
    3
    Views
    1,590

    Re: Child Window with a Transparent Background

    hi world !

    [ autoit ] ( Popup )
    #include <GuiConstants.au3>
    $Main_GUI = GUICreate("Main")
    $Btn_Exit = GUICtrlCreateButton("E&xit", 10, 10, 90, 20)
    GUISetState(@SW_SHOW, $Main_GUI)...
  8. Replies
    8
    Views
    1,331

    Re: Unable to read UDP broadcasts

    This code now works. Problem resolved:


    static void Main(string[] args)
    {
    try
    {
    var multicastAddress = IPAddress.Parse("239.255.255.250");

    string...
  9. Thread: 2D array

    by kevin619
    Replies
    7
    Views
    1,409

    Re: 2D array

    We want to store information about what pieces are in which locations. The most natural way to store it would be to index locations by the row and column. This is easily done with a 2-dimensional...
  10. Re: I like to develop simple video application with transitions , which libraries tou

    Without a better idea of what you want, me neither, but this really isn’t Qt related. That you make your GUI in Qt, does not make questions on what other libs to use on-topic here.
  11. Re: how to Clip window to primary display monitor

    This step-by-step article describes how to configure and use multiple monitors in Windows XP.

    Windows XP makes it possible for you to increase your productivity by using multiple monitors to...
  12. Re: how to Clip window to primary display monitor

    This step-by-step article describes how to configure and use multiple monitors in Windows XP.

    Windows XP makes it possible for you to increase your productivity by using multiple monitors to...
  13. Replies
    2
    Views
    744

    Re: How to link points with polyline?

    I just did a quick Google search ("join points in ESRI") and got a hit. You'll have to do the read up yourself, but at a glance. It looks to me like it will do the trick. Here ya go:

    Points to...
  14. Replies
    2
    Views
    1,022

    Re: Browsing Media Server Content

    Asset is a UPnP (DLNA compatible) audio server, UPnP is a method of sharing media content between devices. Typically audio files are stored on a computer, server or NAS, multiple audio devices around...
  15. Re: The best program that can log my network activities

    If you think you have a virus then do a full scan with your Antivirus software then with Malawarebytes' AntiMalware and/or SUPERAntispyware
  16. Re: How to retrieve codec name of an .avi file using VC++/mfc programming.

    I have already a same problem.
  17. Replies
    6
    Views
    1,748

    Re: Graphics Programming

    Which type of application do you want to make and in which language.
  18. Replies
    4
    Views
    705

    Re: Originate TCP messages from either end?

    The TCP three-way handshake in Transmission Control Protocol (also called the TCP-handshake; three message handshake and/or SYN-SYN-ACK) is the method used by TCP set up a TCP/IP connection over an...
  19. Replies
    15
    Views
    1,558

    Re: creating multiple ports at server and client

    If you want to listen on multiple ports in an efficiant way (=SingleThreaded) it may be a good idea to have a look at java.nio.SocketChannel and Selector, but I assume this is overkill for a low load...
  20. Replies
    2
    Views
    1,022

    Re: Browsing Media Server Content

    To use VLC to browse UPnP servers like MediaTomb, you must turn on the Universal Plug n Play Services Discovery module. To do so, open VLC, go to Tools and Preferences, select All under Show...
  21. Replies
    8
    Views
    1,633

    Re: Business plan to work at home

    One of the best things you can do for yourself before you start your business is to sit down and write your business plan.

    Many people who want to start a home business ask if they really NEED a...
  22. Re: A simple database server management software?

    MySQL is a good choice for a low maintenance database that is widely supported, and free.
  23. Re: How to read text file, line by line using NASM

    section .bss
    buffer: resb 2048 ; A 2 KB byte buffer used for read

    section .data
    buflen: dw 2048 ; Size of our buffer to be used for read

    section .text
    global _start
    _start:
    ;...
  24. Re: please explain me this multi-digit print program

    This is not valid assembly code
  25. Re: how to layout SVG rects horizontally/vertically?

    you can do it in html and save then to SVG.
    See this http://www.hiqpdf.com/demo/ConvertHtmlToSvg.aspx
Results 1 to 25 of 30
Page 1 of 2 1 2



HTML5 Development Center

Click Here to Expand Forum to Full Width