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

Search:

Type: Posts; User: GMV

Page 1 of 8 1 2 3 4

Search: Search took 0.27 seconds.

  1. Replies
    0
    Views
    5,356

    ajax:AutoCompleteExtender

    Hi all!
    May be someone can help me ...

    I use ajax:AutoCompleteExtender to get users from DB. How can I pass userid (of course it should be hidden in textbox) along with user name from service...
  2. Replies
    1
    Views
    1,074

    handle of button on CToolbar

    Hi all!
    I have CToolBar and 3 buttons on it (ID_BUTTON1, ID_BUTTON2, ID_BUTTO3)
    Could you please tell me how to retrieve handles of these buttons?

    Thx a lot
  3. Thread: Upload files

    by GMV
    Replies
    1
    Views
    769

    Upload files

    Hi all!

    I know how to upload 1 file. But I need to upload all files from some folder. Is it possible? (For example, I have 50 files in folder and I need to upload all these files. I don't want...
  4. Replies
    6
    Views
    71,132

    Yep, I found it! ...

    Yep, I found it!

    System.Windows.Forms.FolderBrowserDialog
  5. Replies
    6
    Views
    71,132

    Hi! Thx a lot, but I think you open FileDialog,...

    Hi!
    Thx a lot, but I think you open FileDialog, but I need a DIRECTORY selection Dialog

    Thx
  6. Replies
    6
    Views
    71,132

    Open a directory selection dialog using c#

    Hi, all!

    How do I open a directory selection dialog using c#?
    Thanks in advance
  7. Thread: List of files

    by GMV
    Replies
    1
    Views
    738

    List of files

    Hi all!
    Please, help me.
    I have a path and I have an extension of file (e.g. *.xml). And I need get all files with this extension in this directory.
    How can I make it?
    Thanks in advance.
  8. Thread: Get current path

    by GMV
    Replies
    7
    Views
    1,897

    Hi! Try this: Assembly assembly =...

    Hi!
    Try this:
    Assembly assembly = Assembly.GetExecutingAssembly();
    string fileName = assembly.Location;
  9. Thread: closing .NET form?

    by GMV
    Replies
    4
    Views
    963

    Application.Exit();

    Application.Exit();
  10. Replies
    3
    Views
    1,266

    Hi! Do u still need it?

    Hi!
    Do u still need it?
  11. Replies
    7
    Views
    1,311

    Hi! I think it is pretty good to be little busy....

    Hi!
    I think it is pretty good to be little busy. I just finished some project for client and now I have not any task.
  12. Replies
    7
    Views
    1,311

    Hi! You can also make your TextBox public and...

    Hi!
    You can also make your TextBox public and use it in Form1. See attachment.
  13. Thread: Dynamic SQL

    by GMV
    Replies
    3
    Views
    941

    Hi! try this! Any questions? // C# private...

    Hi! try this!
    Any questions?

    // C#
    private static void FillDataTable(String sqlProc, DataTable dataTable, SqlParameter[] Parameters)
    {
    SqlConnection connection = new...
  14. Replies
    22
    Views
    5,948

    Hi guys! Try this! It should be work! // Dll...

    Hi guys!
    Try this!
    It should be work!

    // Dll C++
    extern "C" DllExport int GetStringFromDLL(WCHAR** ppString)
    {
    LPTSTR p = getConnectString.GetBuffer(getConnectString.GetLength()); // or...
  15. Replies
    1
    Views
    684

    Deployment Dialog boxes

    Hi all!
    Does anybody work with Deployment Dialog boxes in Visual Studio .NET?
    I know that Visual Studio .NET provides a number of predefined user interface dialog boxes that can be displayed during...
  16. Replies
    3
    Views
    928

    Great! Thx a million!!!

    Great!
    Thx a million!!!
  17. Replies
    3
    Views
    928

    A list of aviable SQLServers

    Hi all!
    Please, help me.
    I don't know how to get the SQL Server available in the LAN. Can
    anyone show me how to do it in C#?

    Have anyone used "dbserverenum" to collect a list of aviable...
  18. Thread: Table Existing

    by GMV
    Replies
    10
    Views
    1,248

    Hi! I use Microsoft Access. I think the problem...

    Hi!
    I use Microsoft Access.
    I think the problem in that.
  19. Thread: Table Existing

    by GMV
    Replies
    10
    Views
    1,248

    I'm sorry! I have problem with inet connection. ...

    I'm sorry! I have problem with inet connection.

    Thx a million!!!
  20. Thread: Table Existing

    by GMV
    Replies
    10
    Views
    1,248

    Thanks a lot But I think it's not very good...

    Thanks a lot
    But I think it's not very good solution. May be you can get me another hints?
    Maksim.
  21. Thread: Table Existing

    by GMV
    Replies
    10
    Views
    1,248

    Thanks a lot But I think it's not very good...

    Thanks a lot
    But I think it's not very good solution. May be you can get me another hints?
    Maksim.
  22. Thread: Table Existing

    by GMV
    Replies
    10
    Views
    1,248

    Thanks a lot But I think it's not very good...

    Thanks a lot
    But I think it's not very good solution. May be you can get me another hints?
    Maksim.
  23. Thread: Table Existing

    by GMV
    Replies
    10
    Views
    1,248

    Table Existing

    Hi,
    Could any body tell me the proper way to find a table
    whether it exists or not.
    I use code:

    OleDbConnection dbConnection = new OleDbConnection(ConnectionString);
    string InsertQuery =...
  24. Replies
    1
    Views
    1,720

    Call WinForm from Web app

    Hi!
    Please, help me!
    How can i add WinForm in Web App? And how can i load it from any web page?
    Thx in advance!
  25. Replies
    2
    Views
    1,097

    Press Enter in textbox

    Hi all!
    Please, help me
    I have button 'Save' and TextBox on my WebForm.
    When i press 'Enter' in my textbox i need to add a new line, and not press 'Save' button.
    What should i do?
    Thx in...
Results 1 to 25 of 179
Page 1 of 8 1 2 3 4





Click Here to Expand Forum to Full Width

Featured