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

Search:

Type: Posts; User: skuanet

Page 1 of 6 1 2 3 4

Search: Search took 0.09 seconds.

  1. Replies
    0
    Views
    1,495

    master page ready to use

    Dear all,
    do you know any link with a collection of master pages ready to use ...

    Thanks
  2. Replies
    0
    Views
    1,484

    Outlook.application and c#

    Hi all,
    I know that id f I need the list of outlook contacts (in my pc) the code is:

    Outlook.Application outlookApp = new Outlook.ApplicationClass();
    Outlook.NameSpace outlookNS =...
  3. Thread: Dialog result

    by skuanet
    Replies
    1
    Views
    506

    Dialog result

    Hi all,
    I have a button in a form that has associated a DialogResult = OK.
    When I press the button I perform some check and in case I don't wont to exit to the form .
    I don't want to process the...
  4. Replies
    6
    Views
    2,433

    Re: interoperability .net 2.0 & .net 4.0

    Yes of course, I have installed both .net 2.0 and .net 4.0.
    My question is about the use of a .net 4.0 class library.
    If I add a reference to that class library in a .net 2.0 application an error...
  5. Replies
    6
    Views
    2,433

    interoperability .net 2.0 & .net 4.0

    Hi all,
    is it possible to call some methods of a class library developed with .net framework 4.0 in an application developed by using .net framework 2.0?

    Many thanks,
    Francesco
  6. Replies
    0
    Views
    519

    pattern to scheduling tasks in a service

    Hi all,
    I need to develop a service that schedule some task.
    I saw a good implementation of a pattern that uses a SchedulerEngine, scheduleritem and sinilar classes.
    Do you know this pattern ?
    ...
  7. Replies
    1
    Views
    676

    c# composite application

    Hi all,
    do you know any good example , link about the implementation of a container that hosts differnt modules...I need to develop a composite application...

    Many thanks.
  8. Thread: clickOnce....

    by skuanet
    Replies
    0
    Views
    557

    clickOnce....

    Hi all,
    I need to deploy an application (by using clickonce) to the specific folder in the target machine (i.e. C:\myfolder\) .
    Is it possible to configure it?

    Many thanks
  9. Thread: DB size

    by skuanet
    Replies
    4
    Views
    855

    Re: DB size

    it is a sql server 2005 db
  10. Thread: DB size

    by skuanet
    Replies
    4
    Views
    855

    DB size

    Hi all,
    I have designed a table with a column of varchar(50).
    I fill 1000 rows with one char.

    Wich is the table asize ?
    50*1000 = 50000 bytes
    ...
  11. Replies
    2
    Views
    1,785

    Why my dataset doesn't release memory!!

    Hi all,
    I see there are a lot of question about it ...but no way to solve this problem....
    In code like :
    using (Dataset ds = new dataset())
    {
    .........some ds stuff................
    }
    ...
  12. Replies
    10
    Views
    1,929

    Re: tool for memory leak

    The problem is that I launch several instances of this application and I have not enough RAM in the server.
    I need to free memory as soon as the variable (i.e. dataset) goes out of scope.
    Even if I...
  13. Replies
    10
    Views
    1,929

    Re: tool for memory leak

    but even if I use something like:

    using (DataSet ds = new DataSet())
    {
    SqlDataAdaper da = new SqlDataAdapter();
    da.Fill(ds,"TableName")
    ...
  14. Replies
    10
    Views
    1,929

    tool for memory leak

    Hi all,
    do you know a good tool to find memory leaks/ memory allocation in c#?

    Many thanks
  15. Replies
    2
    Views
    6,088

    free memory allocated by datatable

    Hi alli,
    in one method I fill a datatable.

    The application allocates 10MB of memory and even if the datatable is declared inside a local method, I am not able to free the memory (I used dispose...
  16. dual - comunication between two applications

    Hi all,
    I have two applications (A , B) exposing both one web service.
    Application A needs to call th webservice exposed by application B and application B needs to expose the web service exposed...
  17. Replies
    8
    Views
    1,593

    Re: Win application as container for modules

    I hope you are joking or I think you don't know what CAB is.
    I am a senior developer and software architecht working in big companies , not lookink foe hello world application.
    Please stop , thanks.
  18. Replies
    8
    Views
    1,593

    Re: Win application as container for modules

    What I am looking for is something similar to CAB to implement Composite UI applications
  19. Replies
    8
    Views
    1,593

    Win application as container for modules

    Hi all,
    I need to develop a gui acting as a container for modules implementing different task.

    Can you please show me any useful links?

    Many Thanks
  20. Replies
    1
    Views
    5,491

    XBAP applications

    Hi there,
    can you please show mw any links to documents or examples of XBAB applications?

    Many thanks
  21. Replies
    0
    Views
    3,708

    container for different modules

    Hi all,
    do you have any link example to implement a WPF container for several modules (like CAB) ?

    Many thanks
  22. Replies
    4
    Views
    14,575

    Re: Track bar with two slides!! :mad:

    yes
  23. Replies
    4
    Views
    14,575

    Track bar with two slides!! :mad:

    Hi there,
    In the gui I am developing I need a track bar with two slides (in order to define a range)
    Something similare to :

    ------------<----------------------->------------------

    Can anyone...
  24. Replies
    1
    Views
    766

    Data Access Layer

    Hi all,
    do you have any link about pattern or best practices to design a DAL by using ADO.NET 2.0?

    Many thanks
  25. Replies
    1
    Views
    1,001

    handlig 401.2 error "access denied"

    Hi all,
    in my web application, I am using authentication mode="Windows" and a custom roleprovider.

    When I try to access to a forbidden page , I would like to handle the error , redirec the user...
Results 1 to 25 of 146
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured