Search:

Type: Posts; User: carstenht

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    6
    Views
    1,786

    Re: UpdatePanel and ToolkitManager

    Hi Gary,
    Here is the code - I cannot send the data lib unfortunately, but it should not be needed. Thanks for your time :)
  2. Replies
    6
    Views
    1,786

    Re: UpdatePanel and ToolkitManager

    Hi,
    This works from outside sharepoint - the example I followed was non-sharepoint.
    I have my scriptmanager inside the v4.master/default.master:
    <cc1:ToolkitScriptManager id="ScriptManager"...
  3. Replies
    6
    Views
    1,786

    Re: UpdatePanel and ToolkitManager

    Hi Gary,
    There are no JavaScript errors on the page - all the functionallity of the popup works IF I dont put it inside the UpdatePanel. Is the UpdatePanel what prevents the page from doing postback...
  4. Replies
    5
    Views
    1,635

    Re: ModalPopupExtender and TabContainer

    Hi,
    Yeah i tried that, but loading them on individual pages didnt seem to work - maybe im doing it wrong
  5. Replies
    6
    Views
    1,786

    UpdatePanel and ToolkitManager

    I have a simple SharePoint webpart with an ASP.net gridview which opens a modalpopup extender for editing records. This works fine, just until i put it insude an update panel. Then, the popup is no...
  6. Replies
    5
    Views
    1,635

    Re: ModalPopupExtender and TabContainer

    Hi Gary,
    I got it working - the problem was due to SharePoint - the references to the AJAX toolkit had to be inserted into the v4.master.
  7. Replies
    5
    Views
    1,635

    ModalPopupExtender and TabContainer

    Hi,
    I need a popup window to enable a user to edit rows of a gridview. This part is done and working. Now, i need to change this popup to contain a tabcontainer instead so that more options can be...
  8. Sql Server - select max date of multiple rows

    Hi,
    Im struggling with the following query..
    I have a table...

    [uid,Date1,Date2,Date3] and the following data:
    The dates CAN be NULL

    1,01-01-2010,02-01-2010,03-01-2010...
  9. Replies
    1
    Views
    1,076

    Dynamic configuration synchronization

    Hi,
    I'm developing a Windows Service and Configuration tool for configuring the service.
    The service and configuration tool are their own assemblies but all "housed" in the same solution but in...
  10. Replies
    0
    Views
    3,920

    IDataErrorInfo problems

    Hi,
    I have a WPF app that consists of a view containing a grid filled from the database with custom data template. in this grid I have several textboxes which i need to validate. Here I use...
  11. Replies
    1
    Views
    3,591

    DataGrid with more than one data source

    Hi,
    I have run into a small problem here...
    I have a usercontrol with a datagrid - this datagrid has a datasource, lets call it SourceOne.
    Now, within this grid I have a custom cell template and...
  12. Replies
    2
    Views
    436

    Re: troublesome sql...

    thanks for your help, worked like a charm :)
  13. Replies
    2
    Views
    436

    troublesome sql...

    Hi all,

    I have a table layout that resembles the following:
    ____________________________________
    |ItemId|date | description | actionId|
    -----------------------------------------
    1 ...
  14. Replies
    3
    Views
    1,099

    PGP - how strong?

    Hi all,

    My company handles very sensitive business information for our customers. We often travel, carrying some of this information on laptops. But if a laptop gets stolen or lost, you can...
  15. Replies
    1
    Views
    1,726

    Port VS2003 32bit to 64 bit

    Hi all,
    Im working on porting an old VS2003 C++ program from 32bit to 64bit.
    The software compiles and links under 32bit. I found that there is no (or very little) support for 64bit on VS2003, so i...
  16. Replies
    4
    Views
    3,192

    Re: .NET version og SQL 'Hashbytes' function

    Ok thank you very much
  17. Replies
    4
    Views
    3,192

    Re: .NET version og SQL 'Hashbytes' function

    Hi
    Yes, im trying to work something out using that method now. The problem seems to be the encoding. I have tried Unicode, ASCII and UTF-8, but none of them resebles the example string i posted in...
  18. Replies
    4
    Views
    3,192

    .NET version og SQL 'Hashbytes' function

    Hello
    Im writting an application which communicates with our older system. This old system uses the SQL Server 2005 function 'Hashbytes' to create an SHA1 checksum. I need to use this functionality...
  19. Re: MVP Application - update UI from ServiceLayer

    I think i got it to work now, thanks for your replies, they were a great help :)
  20. Re: MVP Application - update UI from ServiceLayer

    Hi again
    Yes thats makes sense know. Im sorry for sounding like a nut or something, but that means i have to make a field on the service class which the setter/getter will access? These evens makes...
  21. Re: MVP Application - update UI from ServiceLayer

    Aparrently, the
    [code]
    this.Total = value;
    [code]
    is causing an infinite loop, but how would i go about setting the value then?
  22. Re: MVP Application - update UI from ServiceLayer

    It outputs the following

    > AddressManagement.ServiceLayer.dll!AddressManagement.ServiceLayer.AddressService.Total.set(int value = 67251088) Line 38 + 0xffffffdc bytes C#
    ...
  23. Re: MVP Application - update UI from ServiceLayer

    As expected(feared), i got the exception:
    An unhandled exception of type 'System.StackOverflowException' occurred in AddressManagement.ServiceLayer.dll

    Even though i only call the method that...
  24. Re: MVP Application - update UI from ServiceLayer

    Ok, i have been reading your blogpost on custom events, and it makes sense. But im still mystified as to how im actually going to implement this in my program. So i create evens on the service...
  25. Re: MVP Application - update UI from ServiceLayer

    Hi
    I can see the logic in this, but how would it actually be made? I have always had the impression that, the presenter knows about the service and what goes on there and then notifies the view....
  26. MVP Application - update UI from ServiceLayer

    Hello
    I have been watching the videos regarding the MVP pattern @polymorphicpodcast.com and i have learned how to build a basic mvp application. Now, i have a slight problem. The videos shows you...
  27. Re: Comparing Collections of different types

    Hi,
    Thanks for your reply. I was also prepared to use a loop as a last resort, but i was sure it was possible to do with LINQ, but couldnt figure it out. Thanks again
  28. Comparing Collections of different types

    Hello
    I have to collections each containing a list of different objects...
    List<Object1> list1
    List<Object2> list2
    each object have a common field, Checksum.
    Now, if the collections contained...
  29. Replies
    3
    Views
    1,269

    LINQ change operator dynamically

    Hey
    I have a linq query, or rather i have quite a few right now.
    I need to check whether a value is < or > or <= or >= than some given number, but as it is now, i have to write a separate query for...
  30. Replies
    2
    Views
    641

    Re: Report Viewer problem

    Hi
    Thanks for your reply.
    I have tought about a flat structure, and have tried using a DTO - but how to handle collections this way? The object will contain a collection with an arbritary amount of...
  31. Replies
    2
    Views
    641

    Report Viewer problem

    Hi
    I have a problem when mapping a model object to the report viewer control.
    My object consist of primitive members, object members and list members that in return contains more primitive/object...
  32. Replies
    2
    Views
    446

    Re: File conversion performance

    Hi Alex
    Thanks for your help :) ill look into your suggestions
  33. Replies
    2
    Views
    446

    File conversion performance

    Hi
    I need to convert a file from one format into another.
    The input format is "U3"(semi colon separated) and the output is "Salt2" (postal formats)
    The input file is a 25200 line file consisting...
  34. Replies
    2
    Views
    672

    SQL Cast problems

    Hi
    I have two tables wich i need to perform a join operation on.
    The problems is that in table1 the attribute is an integer but in table2 the attribute is a varchar. I tried to use both CAST and...
  35. Thread: Async calls

    by carstenht
    Replies
    1
    Views
    846

    Async calls

    Hi
    I have the following ping method that i want to call every 30 seconds. I do this with a timer and it runs fine ONCE. Then i get the following error:

    "An asynchronous call is already in...
  36. Re: Using Windows Media Player control on ASP.NET page

    thanks guys, ill look into it :)
  37. Using Windows Media Player control on ASP.NET page

    Hi
    I just found out that i cant just add the windows media player control to my web form as with a regular windows form. Is there any way this is possible with a webform? The reason i need to use...
  38. .NET Remoting - Application as both client and server

    Hi guys
    Ok, before posting any code, i would like to know what im trying do to is even possible..
    I have a remoting project...
    Client program is distributed to several computers(fileservers), the...
  39. Replies
    2
    Views
    1,165

    Re: Displaying Form from DLL as MDI child

    solved it - simple error :)
  40. Replies
    2
    Views
    1,165

    Displaying Form from DLL as MDI child

    Hi
    I have a Windows forms project, where the main form is an mdi container. I then have another windows forms project, compiled as Class Library which contains a standard form. What i want now, is...
Results 1 to 40 of 164
Page 1 of 5 1 2 3 4



Click Here to Expand Forum to Full Width