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

Search:

Type: Posts; User: ccubed

Page 1 of 10 1 2 3 4

Search: Search took 0.03 seconds.

  1. Thread: Pass Variables

    by ccubed
    Replies
    1
    Views
    755

    Pass Variables

    So I have a registration script in PHP that does the registration process and then redirects the person to a registration success page. The url looks like this when they're sent there.


    ...
  2. Replies
    7
    Views
    3,163

    Re: Problem with Registration Form

    Problem solved. Apparently, There's a difference in how information is sent via URLs in a web environment and just the files. After changing the <?php thing and putting it in my webserver to test it...
  3. Replies
    7
    Views
    3,163

    Re: Problem with Registration Form

    Oh, yeah, it's a typo. However, even changing that doesn't fix the problem.
  4. Replies
    7
    Views
    3,163

    Re: Problem with Registration Form

    The basic phpinfo function works fine, I can post the output from that if you want. Also, I completely plan on using POST, but at the moment GET allows me to debug for this problem easier because I...
  5. Replies
    7
    Views
    3,163

    Re: Problem with Registration Form

    Even when done in an HTTP environment it doesn't work.



    http://dcl/registration.php?UNAME=Coop&EMail=X&#37;40aol.com&CType=Warrior&Ref=Alzan


    Not sure if it matters, but i'm using the latest...
  6. Replies
    7
    Views
    3,163

    [RESOLVED] Problem with Registration Form

    Okay, So I have an HTML form like this.



    <HTML>
    <HEAD>
    <title>Simple reg Test</title>
    </HEAD>
    <BODY>
    <h1>Register below!</h1>
  7. Replies
    4
    Views
    2,627

    Re: Find All Computers on a Network

    Awesome. Thanks you two.
  8. Replies
    4
    Views
    2,627

    [RESOLVED] Find All Computers on a Network

    In Vista, when I go to start->network, I have a list of computers that are currently connected to the same access point I am. Even though we are on different workgroups, they still show up. On my...
  9. Replies
    3
    Views
    846

    Re: Send Socket Call

    Imports System.Net.Sockets

    Public Class Form1

    Dim socket As New System.Net.Sockets.TcpClient
    Dim send As Byte()

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As...
  10. Replies
    3
    Views
    846

    Send Socket Call

    Imports System.Net.Sockets

    Public Class Form1

    Dim socket As New System.Net.Sockets.TcpClient
    Dim send As Byte()

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As...
  11. Replies
    2
    Views
    1,096

    Re: Speech Recognition Event Problem

    I'm thinking maybe it needs grammar. I figure that since it was a built in class it might automatically load a base grammar set but now i'm not so sure. So I guess my question changes to how I could...
  12. Replies
    2
    Views
    1,096

    Re: Speech Recognition Event Problem

    Okay, So I got the WithEvents down, but now it won't recognize anything I say. It just stops and never triggers the gotspeech sub. Can anyone help?



    Imports System.Speech

    Public Class Form1...
  13. Replies
    2
    Views
    1,096

    Speech Recognition Event Problem

    So I'm trying out SAPI 5.3 in Vista and I was trying to write something simple to start out with. I get the synthesizer working to where it speaks, but now i'm trying to get the recognizer working so...
  14. Replies
    3
    Views
    1,030

    Re: Try, Catch Problem

    thanks.
  15. Replies
    3
    Views
    1,030

    [RESOLVED] Try, Catch Problem

    I have a try catch block that should, when it doesn't work, display a message saying the file couldn't be found. Unfortunately, all it does is just go back to asking for a file. Here's the code, why...
  16. Replies
    6
    Views
    1,550

    Re: Background Switcher

    Strange problem. so i found some code and actually got it to work good, but now I have another small problem. It works in so much as it will set the registry value, but the desktop won't update...
  17. Replies
    6
    Views
    1,550

    Re: Background Switcher

    So will this allow me to center the pictures based on both screen's resolution? I've seen things that do it. Also, how do I even go about centering the desktop background in code? I've tried the...
  18. Replies
    6
    Views
    1,550

    Re: Background Switcher

    Okay, so how do i get the width's of the two screens?
  19. Replies
    6
    Views
    1,550

    Background Switcher

    So i currently have this background switcher that works. Thing is, what's supposed to center it in the screen actually tiles it and i don't know why. Ultimately, i'd like to be able to have a...
  20. Replies
    4
    Views
    996

    Re: Size of Std Output

    I knew about those, but I should've thought more about GetStdHandle and GetConsoleScreenBufferInfo. My solution was to do this:



    HANDLE hMap = GetStdHandle(STD_OUTPUT_HANDLE);


    Which works,...
  21. Replies
    4
    Views
    996

    Re: Size of Std Output

    So there's no console buffer? Even if it is some sort of pseudo-file, given the console buffer you can take over that buffers standard output and put what you want there. I guess my question really...
  22. Replies
    4
    Views
    996

    [RESOLVED] Size of Std Output

    When you create a c++ console application, there is already a Std output buffer in the console window created. Is there anyway to get the size of that buffer or its handle so I could manipulate it...
  23. Replies
    30
    Views
    4,707

    Re: Double output problem

    Somehow, that seems like something our professor should have distinguished. He just used it like it determined decimal places and didn't affect the number at all.
  24. Replies
    30
    Views
    4,707

    Re: Double output problem

    Yes, but this particular line never had setprecision greater than 2 and i've checked and it has exactly two decimal places when it's returned. For some reason, it gets retrned and then output does...
  25. Replies
    4
    Views
    3,151

    Re: Convert Double to String

    I can't use sprintf. I wish I could.
Results 1 to 25 of 227
Page 1 of 10 1 2 3 4





Click Here to Expand Forum to Full Width

Featured