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

Search:

Type: Posts; User: Edders

Page 1 of 16 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    9
    Views
    56,012

    Re: For fun: "Name that product"

    It is "Urban" spelled backwards, but no idea why I came up with it at the time! :-)
  2. Replies
    9
    Views
    56,012

    Re: For fun: "Name that product"

    Ortem? Or something similar like for example Nabru?
  3. Replies
    3
    Views
    1,508

    Re: Sound sinchronization

    Hello,

    I think the problem is that the playsound function isn't intended as a "real-time" sound output function. It needs to load the sound data and initialise the sound system before it can start...
  4. Replies
    1
    Views
    1,495

    Re: Transmitting Microphone Data

    Yes, it is possible - but you need to write two programs for it.

    - One program that runs on the computer with the microphone. It needs to record the audio from the microphone and then send that...
  5. Thread: MAC filtering

    by Edders
    Replies
    6
    Views
    1,209

    Re: MAC filtering

    Amleto is correct - this is exactly what ARP is designed for. If you use a network analyser like Wireshark then you can see this in action. When your computer wants to connect to a computer with IP...
  6. Thread: UDP connection

    by Edders
    Replies
    1
    Views
    833

    Re: UDP connection

    In the snippets of code you posted I spotted a few things -

    - Your client does not need to call bind().
    - You do not need to create a new socket for every UDP packet you send.
    - In the client...
  7. Thread: urgent VPN

    by Edders
    Replies
    2
    Views
    910

    Re: urgent VPN

    Hello and welcome to the board! Could you maybe translate your post to English please?
  8. Replies
    14
    Views
    10,992

    Re: Fan Page on FaceBook for Codeguru

    I became a registered-through-facebook fan as well!
  9. Replies
    11
    Views
    1,813

    Re: Broadcast receive problem

    From MSDN -

    Error 10035 - WSAEWOULDBLOCK - This error is returned from operations on nonblocking sockets that cannot be completed immediately, for example recv when no data is queued to be read...
  10. Thread: SOHO backups...

    by Edders
    Replies
    2
    Views
    995

    Re: SOHO backups...

    The system we use at the office is far from high-tech. We have an image disk with the operating system part of each server, so we can easily setup a new one. The data on each server is backed up to a...
  11. Replies
    5
    Views
    16,997

    Re: Slow socket performance

    I'd first check with a packet sniffer that the data actually leaves the server properly, then I'd concentrate on the receive part of the client. Since the system works fine locally but not over the...
  12. Replies
    10
    Views
    2,053

    Re: Broadcasting in UDP

    @VictorN - are you sure about your statement that "most of network administrators do NOT allow any UDP" as I've never come across that situation. Or did you mean broadcast messages?
  13. Replies
    1
    Views
    1,516

    Re: LaunchApp not working in InstallShield

    You are posting in the wrong thread I'm afraid. This thread is about the new upcoming version of VC, and not about a version that is more than 10 years old.

    Please try the Visual C++ forum, I'm...
  14. Replies
    9
    Views
    2,861

    Re: hijacking car remote signals

    And of course... Don't leave anything valuable behind in any car.. Not only for the high-tech thieves, but also the ones who use a brick or crow-bar to "unlock" your vehicle.
  15. Re: finding problem in recieving message via socket

    A lot of people will ignore your post since it contains code without code tags. Please edit your fist post and add the code tags and ensure your code is formatted correctly. How to do this you can...
  16. Thread: Spawning rc.exe

    by Edders
    Replies
    6
    Views
    1,933

    Re: Spawning rc.exe

    Good work JetCoder - digging up 5 year old threads...
  17. Replies
    8
    Views
    1,696

    Re: product key help

    You can calculate a key by using the hardware in the computer. Things like the MAC address and motherboard + HD info can be used for this. You can concatenate all this info in a string and then MD5...
  18. Replies
    8
    Views
    1,696

    Re: product key help

    This is how it usually works...

    - App generates a unique ID string at first start and shows this to the user in the "please register me" window.
    - User copy/paste the unique ID into a form on...
  19. Replies
    9
    Views
    5,354

    Re: Car Race Algorithm

    In case you missed the message dlorde posted directly above yours I'll repeat it here as it contains important information regarding your request..
  20. Replies
    3
    Views
    1,292

    Re: Scan NIC for IPs

    There is no fail safe method to detect all devices attached to a network. Still, you can use the IP address and netmask of the NIC to find out what the range of possible IP addresses is for the...
  21. Replies
    8
    Views
    2,303

    Re: What's faster, if statement or assignment?

    I agree with RFIDtag30 on this - it is better to write code that is easier to understand. If all you want is to set a particular variable to a preset value then do that.

    For example, on some...
  22. Replies
    4
    Views
    1,407

    Re: Soliciting cool application features

    Only general advice I'm afraid. Before all else, check what the competition is capable of and try to find out which part of the functionality is the most important for the user. Having a lot of very...
  23. Replies
    2,690
    Views
    1,011,127

    Re: What Song Are You Listening To Now¿

    Dan Whitehouse - Still Thinking of you.
  24. Replies
    9
    Views
    1,867

    Re: Urgent Urgent Emergency...

    I think you should be banned for the way you use the word "urgent" in the subject line. This kind of faulty spelling teaches the kids the wrong things. Someone with your experience should know better...
  25. Replies
    31
    Views
    2,806

    Re: Thread topicallity, accuracy and integrity....

    Disclamer: I do not have the answers, only some personal views on the matter.

    I was already using this site for years and years before I actually posted for the first time. Most of the answers...
Results 1 to 25 of 394
Page 1 of 16 1 2 3 4





Click Here to Expand Forum to Full Width

Featured