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

Search:

Type: Posts; User: blueday54555

Page 1 of 37 1 2 3 4

Search: Search took 0.07 seconds.

  1. Replies
    1
    Views
    974

    Re: HTML Payment Drop-Down Box

    So you need a form with a drop down list,
    like in the thread "How to return a result from a drop down listbox in HTMl?"
    from yesterday directly under your posting!
    ...
  2. Replies
    1
    Views
    666

    Re: Need Help w/While Loop & Switch

    1. I have no idea why you are using a while loop.
    2. How a while loop works, here you will see why your while loop will never end!...
  3. Re: How to return a result from a drop down listbox in HTMl?

    there is no difference in submitting a Edit/Input field or a Drop-Down-List selection

    form.html


    ..............
    <form action="submit.php" method="post">
    <select name="dropdown">
    <option...
  4. Replies
    1
    Views
    768

    Re: [PHP] Problem using sessions

    Well there are many reasons.
    Did you check-out

    http://de.php.net/manual/en/function.session-start.php

    and read the comments?
  5. Replies
    3
    Views
    13,778

    Re: Stored procedure in PHPMyAdmin

    Using phpMyAdmin to Create Stored Procedures:

    http://test.nth-design.com/2009/02/25/creating-sp-in-phpmyadmin/
  6. Thread: Asp mysql

    by blueday54555
    Replies
    2
    Views
    1,709

    Re: Asp mysql

    If I am not wrong
    An_exception_occurred:_'rs.Open' has the error code 800A01FB.

    So check out this link
    http://www.aspfaq.com/show.asp?id=2327
  7. Replies
    2
    Views
    869

    Re: Database Q's

    Here are several ways to connect to a MSSQL Server
    http://www.webcheatsheet.com/PHP/connect_mssql_database.php

    I didn't get the 2.Part of your question.
    did you want to learn the basic structur...
  8. Replies
    3
    Views
    879

    Re: Help! Php sql

    To that what PeejAvery mentioned already,
    it seems to me that there is a lack of basic php/sql knowledge,
    there are better ways to reach what you want.

    Is there a special reason why you put the...
  9. Re: PHP Development & Debugging - Best IDE?

    Well there is no "The Best IDE",
    every one has its pro/cons, that's a point you have to find out yourself.

    e.g. A nice IDE is the Eclipse based http://www.aptana.com/php/ editor.
  10. Replies
    2
    Views
    1,514

    Re: save flash frame as jpeg / bmp

    Well depending on what you want to reach in particular,
    and on your access on the server you can check-out this

    http://www.phpro.org/tutorials/Video-Conversion-With-FFMPEG.html
  11. Re: Find out the width and height of a video

    getid3() is not only about id3 tags!

    From the HP
    "getID3() is a PHP script that extracts useful information from MP3s & other multimedia file formats"

    e.g.


    <?php...
  12. Re: Find out the width and height of a video

    Well depending on the video formats you have you can use

    http://getid3.sourceforge.net/
  13. Replies
    2
    Views
    887

    Re: mobile upload script

    As far as I get it you want to
    - check an email account for mails with attached pics/vids
    - upload this attached pics/vids on a website

    So what is the problem with the posted code in...
  14. Replies
    3
    Views
    1,176

    Re: A Question about PHP

    As PeejAvery already mentioned it looks like a configuration problem.
    Give us some more information about your installation (iis version, php version aso.) and configuration.

    And check-out this
    ...
  15. Re: Unresolved External symbol _cxxFrameHandler3

    Did you checked if you link against the *.lib you need for your project?
    Make sure your include- and library paths are set correctly and then
    add the lib to your linker settings.
    Alternatively...
  16. Re: structs verses classes? When to use them?

    Check-out this
    http://www.codeguru.com/forum/showthread.php?t=332571
    http://www.thescripts.com/forum/thread131240.html
  17. Replies
    12
    Views
    1,043

    Re: Automatically sends (server)

    If you use a linux server you can use crontab for this
    check-out this tutorial
    http://www.sitepoint.com/article/introducing-cron
  18. Replies
    1
    Views
    707

    Re: Disable combo box item?

    check-out this
    http://www.codeproject.com/combobox/disableditemscombobox.asp
  19. Replies
    4
    Views
    1,277

    Re: Passing Variables (JS --> PHP)

    Additional to PeejAvery answer here are two small examples

    http://www.smallbizonline.co.uk/php_javascript_variables.php
    http://www.webcheatsheet.com/php/passing_javascript_variables_php.php
  20. Replies
    3
    Views
    742

    Re: reading files in a folder

    Well on Windows systems you can use
    FindFirstFile() FindNextFile() here is an example
    http://msdn2.microsoft.com/en-us/library/aa365200.aspx

    and check-out this in the codeguru faqs
    "Windows SDK...
  21. Replies
    3
    Views
    1,420

    Re: Disable Automated Signup...

    What you search is a CAPTCHA ("Completely Automated Public Turing test to tell Computers and Humans Apart")
    http://en.wikipedia.org/wiki/CAPTCHA

    Here are some examples on how to realize a captcha...
  22. Replies
    2
    Views
    3,265

    Re: IHTMLDocument2 load from memory

    Well try this

    in your header


    void DisplayDirect(CString sHtml);
    HRESULT LoadHtmlFromStream(IStream* pStream);
  23. Replies
    3
    Views
    1,400

    Re: Create a local windows user account

    Have you tried NetUserAdd?
    http://msdn2.microsoft.com/en-us/library/aa370649.aspx
  24. Replies
    9
    Views
    2,155

    Re: CListCtrl help!

    You have to use SetItemState()
    e.g.


    ................
    list->SetFocus();
    list->SetSelectionMark(index);
    list->SetItemState(index,LVIS_SELECTED, LVIS_SELECTED);
    list->EnsureVisible(index,...
  25. Replies
    9
    Views
    2,155

    Re: CListCtrl help!

    You can use the EnsureVisible() function for this.
    http://msdn2.microsoft.com/en-us/library/tbtcxzsf(VS.80).aspx

    Use the search function ('EnsureVisible CListCtrl') for more examples.
Results 1 to 25 of 901
Page 1 of 37 1 2 3 4





Click Here to Expand Forum to Full Width

Featured