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

Search:

Type: Posts; User: divined

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    1,045

    Control out of context

    Hello everybody

    I`ve created a WebForms applications for learning purposes. I`ve placed two TextBoxes on my WebForm1 using the Visual Studio toolbox. The code is shown below :



    <asp:TextBox...
  2. Replies
    0
    Views
    1,150

    DirectInput problem

    Hello everybody

    I`m trying to add DirectInput support to a little game I`m writing. I`ve run up against this wall though. When I compile my code I get the warning:



    1>C:\Program...
  3. Replies
    3
    Views
    930

    Re: pedagogical c++ question

    ok. thx. I understand that this has to with protecting the structure - class instance from accidental modification.
  4. Replies
    3
    Views
    930

    pedagogical c++ question

    Hello everybody

    I`m been reading some c++ programming books lately and I`ve run across functions declarations like the one shown below :




    CQ::CQ(const st &st)
    {
    }
  5. Replies
    3
    Views
    1,279

    Re: Activation code required

    thx, they do seem interesting!!!
  6. Replies
    3
    Views
    1,279

    Activation code required

    Hello everybody

    I`ve been writing this simple game for some time now and I`d like to have a rudimentary form of protection for it. Some sort of activation. The game has been written in c++, using...
  7. Replies
    4
    Views
    2,552

    Visual C# warning

    Hello everybody

    I`ve written this code under Visual C#.



    namespace MySQL_ListBox1
    {
    partial class ADONetForm1 : Form
    {
  8. Replies
    5
    Views
    3,745

    Re: MySQL Connector Net 1.08 and C#

    thanks for the link. A rather focal point for anything related to MySQL Connector.
  9. Replies
    5
    Views
    3,745

    Re: MySQL Connector Net 1.08 and C#

    Fine. But the compiler responds with an error when I use the C# code :



    MySql.Data.MySqlClient.MySqlConnection conn;
    string myConnectionString;

    myConnectionString =...
  10. Replies
    5
    Views
    3,745

    MySQL Connector Net 1.08 and C# (Closed)

    Hello everybody

    I want to connect to a MySQL 5.0 database under C# using the MySQL Connector Net 1.08 drivers. I know that I need to use the MySQLConnector object. But that object is not...
  11. Replies
    2
    Views
    976

    Re: DataAdapter & MySQL connection string

    ok. I got the idea. But what collection do I need to use in order for Visual C# to be able to see the MySQL object?
  12. Replies
    2
    Views
    976

    DataAdapter & MySQL connection string

    Hello everybody

    I`m using MySQL 4.1 and have installed the MySQL Connector net drivers. Now I wish to use a DataAdapter object to connect to my database. This is the connection string I used when...
  13. Replies
    3
    Views
    709

    Re: ASP.NET and MySQL

    ok. thanks. It`s just because I`m familiar with MySQL and am just starting to learn ASP.NET. I wouldn`t like to commit myself to learning ASP.NET if it couldn`t interoperate with MySQL.
  14. Replies
    3
    Views
    709

    ASP.NET and MySQL

    Hello everybody

    Is it possibly to use Visual C# 2005, ASP.NET and MySQL 5 to create web applications? Or am I stuck with M$ SQL Server??
  15. Replies
    4
    Views
    840

    Global constant question

    Hello everybody

    I`ve got this problem. THe code is shown below :

    student.h


    #pragma once
    #include <iostream>
    using namespace std;
  16. Replies
    3
    Views
    1,773

    Re: getch() function include files

    ok. I tested it out with the _getch() and it seems to be working. Maybe it was something with some other include files I had in the project. I`ll have to check it again tomorrow at work and get back...
  17. Replies
    3
    Views
    1,773

    getch() function include files

    Hello everybody

    I`ve tried compiling some old code I`d written using an old Borland C++ compiler under Microsoft Visual C++ 6.0 sp6. That code uses the getch() console function heavily. I`ve...
  18. Replies
    4
    Views
    708

    Re: Custom operator overloading question

    thanks guys! I got the general idea. I`d practically forgotten about the assignment operator and thought there would be two objects left, thus wasting memory space.
  19. Replies
    4
    Views
    708

    Custom operator overloading question (Resolved)

    Hello everybody

    This is kind of a newbie question but I didn`t find a specific answer in the FAQ. When I overload the addition operator I always create a new unnamed object which is returned to...
  20. Replies
    5
    Views
    1,469

    Re: cout in Visual C++ 2005

    Does that mean that I always need to use the using namespace std?
  21. Replies
    5
    Views
    1,469

    cout in Visual C++ 2005

    Hello everybody

    I want to migrate some old code I`d written to Visual Studio C++ .Net 2005. The application is console based and relies heavily on the cout function. Unfortunately, the Visual...
  22. Replies
    2
    Views
    760

    Re: IEnumerable Interface problem

    ok. thanks. I`m gonna this out and get back to you.
  23. Replies
    2
    Views
    760

    IEnumerable Interface problem

    Hello everybody

    I`m trying to implement the IEnumerable<String> interface for a class. This class has a string collection that I`d like to loop through using the foreach statement. This is the...
  24. Replies
    2
    Views
    716

    Re: Dispose method question

    thanks! Very clarifying!!!
  25. Replies
    2
    Views
    716

    Dispose method question

    Hello everybody

    I`ve got a question on the Dispose method. Can it be called explicitly or should it always be called under the protective hood of a using statement clause?

    Also, what is the...
Results 1 to 25 of 38
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured