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

Search:

Type: Posts; User: bennyboy2

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    2
    Views
    725

    Re: Web Applications using C sharp

    Look for .asp tutorials using c sharp
  2. Re: How can I save a variable even after the program is exited?

    For stuff where you don't know where to start, google ftw.

    I also recommend getting a good beginner's book. EVERY c sharp book will tell you how variables work, and how to save information to a...
  3. access to MCI record buffer? (for mp3 encoding)

    I'm using Idael Cardoso's "yeti" c# lame_enc.dll wrapper for encoding mp3, and it works great. It compiles to 2 additional dll's, which is cool because I can link them to my project without staring...
  4. Replies
    1
    Views
    686

    Got it, but still don't fully understand it! :)

    Well, I finally figured out the relationship by pure brute force: bounced objects off the side of the screen and used message boxes to output the values. Thank God I used pi/4 rads as the fovy...
  5. Replies
    1
    Views
    686

    [dx9] help me with some trig?

    I'm writing a 3d program using meshes moving only along x,y, with z=0 at all times. I say 3-d because it uses lighting and rotations.

    I'd like to calculate the screen bounds in world space as a...
  6. Re: Beginning Graphics programming - what to use?

    I like DirectX, but that assumes you're programming for Windows.


    There are plenty of tutorials out there, and the documentation has examples you can borrow to get started. If you're an...
  7. Replies
    2
    Views
    1,828

    Re: DirectX SDK, small favor :)

    Hahaha.

    This is a joke, right? Your e-mail includes the word "copyright" and you want users to e-mail you code from Microsoft?

    Let me guess, next you'll ask how to bypass the "genuine...
  8. tcpip/winsock -- how long to keep connection open?

    Hi, guys. I'm a n00b with tcpip/winsock, and I'm curious about performance in a simple real-time game server/client.

    What I'm doing:
    -server takes control data from client (maybe 4-6 bytes) and...
  9. Replies
    1
    Views
    2,726

    WSAConnectByName

    I'm using an example function direct from MSDN to return the IP address of a named site. It compiles fine, however, I get the following error:



    I've also tried the non-unicode version...
  10. Replies
    21
    Views
    13,874

    Re: Why is .NET so popular?

    I can speak from experience on both sides of the coin as a new (less than 1 year in c++) programmer.

    With .NET, I've been able to quite easily do stuff that I simply couldn't do properly in pure...
  11. Replies
    5
    Views
    835

    Good news, kind of!

    Well, it turns out I got an error saying the program was not configured properly, which means vcredist.exe wasn't installed. I talked my father into installing vcredist and uninstalling .NET 2.0 and...
  12. Replies
    5
    Views
    835

    Re: Irritating Deployment Problems

    Thanks OReubens.

    So basically, my plan is to provide links to vcredist and .Net 2.0 and hope a) they work and b) they don't over-write or otherwise bugger up the customers' computers.

    More...
  13. Replies
    5
    Views
    835

    Irritating Deployment Problems

    Hi, guys, I run a little English school in Korea and I've written some software to allow students send homework files to my website, to allow parents to track essay scores, etc.

    I've now tried 2...
  14. Replies
    1
    Views
    793

    Static Linking and .NET versions

    In a recent post, I asked how to run an .exe without a setup, and got the answer-- use static linking. I've looked it up, and it sounds perfect, as I'm in Korea, which means everyone can download...
  15. Replies
    3
    Views
    788

    Re: Deploying with no Setup

    @OReubens
    @hoxsiew

    Thanks for those very useful answers. I'll check back in to let you know how it went. :)
  16. Replies
    3
    Views
    788

    Deploying with no Setup

    I've put a lot of work into a Setup project for a program I made for some students. As I feared, it worked great for 80% of them, but 20% couldn't get the program to install or run-- right now, I'm...
  17. Replies
    11
    Views
    4,008

    Re: Predictive Text Programming

    ROFL @GCDEF

    Roushy, the project you're working on sounds hard for a beginner. I'd recommend using Forms in Visual Studio, along with learning Regex to filter text. Forms has textboxes built-in...
  18. Replies
    3
    Views
    1,054

    Re: Notepad HELP!!!!

    Don't use notepad. Download another freeware text editor with search and replace. I'd:
    1) download Notepad++
    2) google "regular expressions" A little tricky to understand, but easy enough for...
  19. Replies
    4
    Views
    1,460

    Re: Need advice bout pack/unpack files...

    I'd recommend 3 paths:

    1) google each of the file extensions with "format," "player," "viewer" or "editor" :
    .acv format
    .acv editor
    etc.

    See if you can successfully modify some/all of the...
  20. Replies
    2
    Views
    653

    Re: running a file from memory

    If you program in VS2008 using Forms, there is a WebBrowser control that you can drag and drop onto your form. You don't even have to load the webpage yourself-- just provide the WebBrowser object...
  21. Re: eMail problem well beyond my meager debugging capabilities ....

    Hi, ThermoSight:

    I'm currently having trouble getting emails to work at all.
    Can you tell me what you use for the host, and possible share some of your working code (preferably the vc++ version)?...
  22. Replies
    7
    Views
    2,377

    Re: [RESOLVED] windows form strange layout

    Sorry... I don't want to be a flamer.

    I have a folder on my website where I keep all my screenshots for old forums-- so my old threads can still be useful if someone else wants to read them. What...
  23. Re: Edit form control after Application::Run has been called on Form

    My guess is you forgot to close a bracket?
    Anyway, when you have a syntax error like missing ";" don't look at the line it says... start going back until you find your error.

    ***
    re: header

    I...
  24. Thread: Close form?

    by bennyboy2
    Replies
    11
    Views
    1,465

    Re: Close form?

    @Darwen:

    (a diversion, please forgive me)

    C++ seems fine to me. The beauty of .NET ( in my super-limited experience ) is that it doesn't seem to matter what language I'm using. Can you...
  25. Replies
    20
    Views
    3,681

    Re: Homework Function Help.

    I think your teacher is trying to teach you the importance of coffee. Wake up!

    Spelling things correctly isn't always important, but spelling variables the SAME is. ;p
Results 1 to 25 of 43
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured