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

Search:

Type: Posts; User: Vinod S

Page 1 of 27 1 2 3 4

Search: Search took 2.06 seconds.

  1. Replies
    4
    Views
    7,428

    Re: Time out on procedure calling from C# code

    My problem somewhat solved by setting the command time out to higher value. But still i have a major issue in place. When i run the procedure direct from sql server with the input values it runs very...
  2. Replies
    4
    Views
    7,428

    Time out on procedure calling from C# code

    I am calling one procedure in SQL Server from my C# application. This procedure is returning 5 tables from the database. When the filter date is less its working fine from application. But when the...
  3. Replies
    0
    Views
    7,789

    WCF Server to WPF Presentation call back

    I work on an application with WPF as the presentation layer and WCF as the server service. Now what i want to do is, i want to ping the presentation of client when some changes occurs in the server....
  4. Replies
    6
    Views
    1,328

    Re: Write Matrix in file faster

    // Open file to read (will fail if file does not exist)
    if( NULL == ( fStream = fopen( cpFileName, "r" )))
    {
    perror( "Cannot open file to read : " ) ;
    break ;
    }

    stFileOppend =...
  5. Replies
    6
    Views
    1,328

    Write Matrix in file faster

    hi all i have 3050 x 3050 double matrix which is created through some calculations. This is a c application we got as a pilot project and we need to show them run faster. we have to first read this...
  6. Thread: ATM Software

    by Vinod S
    Replies
    2
    Views
    1,778

    Re: ATM Software

    ya you are right, ATM's run on Windows XP too. can you give me any idea from where i can get more information on this in programing point of view.
  7. Thread: ATM Software

    by Vinod S
    Replies
    2
    Views
    1,778

    ATM Software

    Hi all I have got a query for a ATM software from one of our clients. Can any one give me an idea on ATM withdrawal software. My guess is that ATM machines will be installed with Windows CE and there...
  8. Issue 0x800705aa Insufficient System Resources exist to complete the requested servic

    Hi all i am working with CaptureVideo.cpp file to capture video images from the TV tuner card connected to my system with direct x. this file i got from codeproject for video capturing using directx...
  9. Replies
    2
    Views
    963

    Re: Video card programing

    Can i get any sample application for this.
  10. Replies
    2
    Views
    963

    Video card programing

    Hi all, i want to capture and save video file and image from video card / tv tuner card connected to my PC. How can in do this. can any one guide me.
  11. Replies
    2
    Views
    618

    Re: Issue with Active X Component

    Sorry it was my fault, i was using the wizard and forget to remove the old imported assembly reference before adding the new ocx control to the application. Thanks for remembering about the import...
  12. Replies
    2
    Views
    618

    Issue with Active X Component

    I have created an active x component using wizard in Visual studio 2010. I am consuming the OCX control in a .net desktop application. Now the problem is that. I have modified a particular function...
  13. Can i run an application developed using VC++ in a linux machine

    Hi all, if i am asking a nonsense please excuse me :-). I just want to know if i developed an application using MFC and linked it staticaly can i run the application in a linux machine. Or if i...
  14. Re: Create Win 32 main window using window resource

    I am sorry Igor i mean the Dialog Template. I have totally messed up the question any way the suggestion from ovidiucucu helped me. Thanks for both of you :-).
  15. Create Win 32 main window using window resource

    How can i create my win 32 application main window using window resource IDC_MYWINDOW other than using CreateWindow Function, or DialogBox function.
  16. Replies
    6
    Views
    26,204

    Re: Force Refresh WPF Window

    I have added a width dependency property in the windows class and its set with



    System.Windows.FrameworkPropertyMetadataOptions.AffectsRender |...
  17. Replies
    6
    Views
    26,204

    Re: Force Refresh WPF Window

    Yes we are following the MVP pattern. We are getting the event to redraw the floating windows and there we are calling the InvalidateVisual function of the window. But the window did not getting...
  18. Replies
    6
    Views
    26,204

    Force Refresh WPF Window

    Hi all, I am working with a WPF application. My application contains a re-sizable docked window and floating windows containing user controls representing different pages. Now what i want is when the...
  19. Move a control inside the user control programicaly

    Hi all i have a list control inside my user control which creates a user form for my application. It is placed inside a GridView column. now i want to move that control on runtime and place is some...
  20. Re: Concurrent use of data from different client sites

    Hi Alex, we thought of this method first but then we changed out plan. Its just because we need to show the user who access the record second that this is a readonly data and so he/she dont try to...
  21. Concurrent use of data from different client sites

    Hi all i know this question is not specific to this forum. I am asking here as i think i will get much more response from here other than any other forum.

    I want to manage concurrent use of data...
  22. Replies
    5
    Views
    1,007

    Re: Implement property adding through function

    Thank you verymuch this is what i was looking for :-). I will not forget to rate this :-)
  23. Replies
    4
    Views
    1,224

    Re: How to close a dialog?

    Why dont you try sending message to your pop up windows Or communicate with them using any events or mutex and make them close by them selves. I dont know your senario well but this is a suggestion.
  24. Replies
    5
    Views
    1,007

    Re: Implement property adding through function

    Dear All, first of all let me apologize for misleading you guys. My question is totally different from what you guys understood. I need to implement a style management in my application similar to...
  25. Replies
    5
    Views
    1,007

    Implement property adding through function

    Dear all,

    i dont know whether the question title suite my requirement. I want write a function to set different properties of a control which take values or'd.

    Like that we use in windows API's...
Results 1 to 25 of 664
Page 1 of 27 1 2 3 4





Click Here to Expand Forum to Full Width

Featured