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

Search:

Type: Posts; User: dav79

Page 1 of 3 1 2 3

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    1,178

    Re: Value of PropertyGrid item

    Hello,
    If you are binding an object to a propertyGrid, I think you should change the property value of your object rather then trying to modify it directly in propertyGrid.
  2. Thread: treegrid

    by dav79
    Replies
    0
    Views
    833

    treegrid

    Hello,
    I need a control that combines functionalities of tree and grid controls, and represents data just like Watch window in Debug mode. Does any of standard .NET controls support this...
  3. Replies
    2
    Views
    624

    Re: uninstallation problem

    thanks a lot :)
  4. Replies
    2
    Views
    624

    uninstallation problem

    I there,
    I have an uninstallation problem. I made a setup for a product previously, and now with some upgrades I'm making new setup with higher version number, which must override the previous one....
  5. Replies
    4
    Views
    1,118

    Re: Unhandled exception

    ok, thanks a lot
  6. Replies
    4
    Views
    1,118

    Re: Unhandled exception

    yes, that is possible, but I have a lot of binded controls and write special validating code for each of them is a little bit hard :-(
  7. Replies
    4
    Views
    1,118

    Unhandled exception

    Hi there.
    In VB.NET project I used VB6 ADO Data Control and made some bindings:



    ADOBind_Adodc1 = New VB6.MBindingCollection()
    ADOBind_Adodc1.DataSource = CType(Adodc1,...
  8. Replies
    0
    Views
    696

    Service Pack making problems

    Hi there. I'm gonna to make service pack with .NET. I belive, there must be standart technology for that kind of tasks. Particulary, after installation of service pack, I don't want it to be visible...
  9. Replies
    3
    Views
    863

    By the way, is there any function in VB, that...

    By the way, is there any function in VB, that converts String to array of bytes?
  10. Replies
    3
    Views
    863

    It's an interesting code, but actually not the...

    It's an interesting code, but actually not the very thing that I need. I missed to mention earlier, that values of twodimensinal array must be used later, after function's call, so I need to pass...
  11. Replies
    3
    Views
    863

    two dimensional arrays

    I can't imagine how VB works with arrays. What I need is to pass first element of two dimensional array to function like this:



    function f(a() as Byte)
    ....
    end function

    dim v(10,10)...
  12. Replies
    2
    Views
    553

    ok, thanks Cimperiali

    ok, thanks Cimperiali
  13. Replies
    2
    Views
    553

    number of bytes readed by Get statement

    I need to read from binary file. For this task I'm using get statement like this:



    dim buffer(BUFFER_SIZE) as byte
    ...
    Get #filenum1, , buffer
  14. Replies
    1
    Views
    620

    reference to the JavaScript function.

    Hi there.
    how can I pass reference to the function in JavaScript? as we done it in C: void f(int&) ???
    thanks a lot! :)
  15. Thread: page refreshing

    by dav79
    Replies
    2
    Views
    748

    thanks a lot :)

    thanks a lot :)
  16. Thread: page refreshing

    by dav79
    Replies
    2
    Views
    748

    page refreshing

    hi..
    I need some advice to optmize web page refreshing.
    Considering, that my page refreshes every 10 seconds, some parts of the page aren't dynamic, for example client side JavaScript functions...
  17. Replies
    6
    Views
    624

    thanks a lot guys!!! :)

    thanks a lot guys!!! :)
  18. Replies
    6
    Views
    624

    I'm using Microsoft SQL Server 7.0

    I'm using Microsoft SQL Server 7.0
  19. Replies
    6
    Views
    624

    Thank you very much for response... I'll try to...

    Thank you very much for response...
    I'll try to explain the problem on an example.. okey, for istance, there is a user list on database. Some users didn't log in for a long time, so I have to...
  20. Replies
    6
    Views
    624

    server side script

    Hi
    I'm beginner in Web programming. Working with IIS ASP and SQL server, I want to write some script, wich will be executed periodically on server side, wich in his turn will set some changes on...
  21. Replies
    4
    Views
    610

    The problem I think with m_pInfoDlg object. Is it...

    The problem I think with m_pInfoDlg object. Is it initialized, when you're calling IsWindow() function?
    I've tried this code and it works without any problem.
  22. Replies
    4
    Views
    610

    I think, that in WM_MOVE message handler function...

    I think, that in WM_MOVE message handler function of dialog frame you should use ::SetWindowPos function with HWND of another Dialog frame.
  23. Thread: Newcomer to C

    by dav79
    Replies
    10
    Views
    878

    try it: void f(int s){ int i; char...

    try it:


    void f(int s){
    int i;
    char alpha[]="abcdefghijklmnopqrstuvwxyz";

    for(i = 0;i <= strlen(alpha); i++)
    {
    if(!(i%s)) printf("\n");
  24. #include #include #include...

    #include <iostream>
    #include <fstream>
    #include <conio.h>
    #include <string.h>

    using namespace std;

    struct Hello{
    int x;
    };
  25. Everything depends on operation system you're...

    Everything depends on operation system you're working with.
    Anyway try this code:



    #include <fstream>
    #include <io.h>

    using namespace std;
Results 1 to 25 of 62
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured