Search results

  1. adatapost

    FIle upload/download in asp

    Use FileUpload control to upload a file.
  2. adatapost

    Need help in C++ progrramming...please...

    use cin.get() instead of system("pause") or getch(). After all there was no problem in your program. A problem is with you.
  3. adatapost

    Creating plugins in Outlook 2003 && Database?

    Yes, It is MSDN online.
  4. adatapost

    Good books for learning PHP and VB.net

    PHP manual and MSDN online pages.
  5. adatapost

    a variable number of inputs using JAVASCRIPT for PHP to insert MYSQL

    create a form for each record.
  6. adatapost

    Checkbox group in javascript & PHP

    Add Id attribute.
  7. adatapost

    [C#] Highlight focus of control

    Create user control.
  8. adatapost

    reading from an access database into textboxes using C#

    Here is code snippet for you: 1. Create an instance of OledBConnection 2. Create an instance of Olddbcommand 3. If you want to fetch a singlevalue then open a connection and invoke the ExecuteScalar() method. If you want to fetch multi-value then invoke ExecuteReader method. Reply, if...
  9. adatapost

    Java Queries Here..

    I think you have different views or misconception on java & jJ2EE.
  10. adatapost

    Post your C/C++ Programs Here

    Re: Post ur C/C++ Programs Here Here are some non-standard features in your said c++ program. 1. do not use void with main() int main() { return 0; } 2. Do not use deprecated header files and old-compilers - turboc 3.0 or something Use standard c/c++ compilers...
  11. adatapost

    Understanding multidimensional arrays in c++

    char pointer.
  12. adatapost

    Post your C/C++ Programs Here

    Re: Post ur C/C++ Programs Here Hi, I read number of threads. 90% of programs of c/c++ are written in old-standard (13 years old). Students and tutors must have to learn something new in c/c++ standard. *siddhant3s.googlepages.com/how_to_tell_rusted_cpp.html...
  13. adatapost

    Post your C/C++ Programs Here

    Re: Post ur C/C++ Programs Here Increment/decrement operators have undefinite behaviour with different languages/compilers.
  14. adatapost

    Post your C/C++ Programs Here

    Re: Post ur C/C++ Programs Here Hi, Why you add system("pause")? Are programs like Excel, Word, IE etc pauses after we click on close button? I think it is bad practice to learn and teach c programming. Sometimes people uses getch() in place of system(). It should be stop. Thanks...
Top Bottom