Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. kristofdielis

    MVC 4 - jQuery - Complex type client-side post. Serverside result is instantiated but empty.

    Hi, I have a JS function that posts a contractcode + an array of a ComplexType to the server: function PostContractServiceCatalogue(contractCode, lines) { var dto = { "contractCode": contractCode, "lines": lines }; //prompt("", JSON.stringify(dto)); $.ajax({ type...
  2. kristofdielis

    VMWare VIM SDK .Net, update CustomFieldValue

    Hi, I am not sure if this is the correct forum for SDK questions, please redirect me to a correct one if not, but here goes: I have this code: public void SetFieldValue(int key, string value) { var customField = (CustomFieldStringValue)this.VirtualMachine.CustomValue.Single(cv => cv.Key...
  3. kristofdielis

    Occasional IKVM runtime errors after adding AJAX UpdatePanel

    Hi, An updatepanel was added to allow dynamic filtering of a datagrid based on user input. It generally works as expected, but occasionally we now get a IKVM runtime error. Refreshing the page fixes this, but we can't expect the users to figure this out, especially since on the server we...
  4. kristofdielis

    CSS - Content div not taking 100%

    Hi, I have a simple masterpage structure, one div for the menu and one for content. The Menu div has a fixed height, the content should take 100%: <div id="divMasterMenu"> <span class="MasterMenuItemSelected"><a href="">Menu 1</a></span> <span class="MasterMenuItem"><a...
  5. kristofdielis

    WPF - Drawing

    Hi, Is there some way to draw with WPF, like you could with GDI? I mean, not add a rectangle object to a stackpanel (which is how it's apparently often done), but really draw a rectangle or whatever, on the surface of a control, at a specified point. I mean like it was in 'the old days'...
  6. kristofdielis

    TwoWay binding on CommandParameter works on objects, but not on string

    Hi everyone, I have several controls on a WPF user control, most of these are comboboxes. Behind each control, there is a button, that will open up a new window, which will return a user selected value. Consider, one of these comboboxes contains a list of sites: These sites are defined like...
  7. kristofdielis

    Select of 1 million rows, how long?

    How long do you feel should a single table select of 1 million rows take? A simple SELECT * FROM 1M_ROWS_TABLE, on a SQL Server 2008 R2, straight within the Management Studio. 1, 2, 5, maybe 10 seconds? What is acceptable in your opinion?
  8. kristofdielis

    WPF - Don't render certain controls in design viewer

    Hi, On our views, we have custom converter controls, that don't render visually. The result is that they currently break the design view, because the design tries and fails to render them. Is there a way to prevent rendering? Something like, for instance, 'IsDesignTime="False"' would be...
  9. kristofdielis

    LINQ query based on combobox selecteditem

    Hi, I have two comboboxes, one containing all sites, the other contains all units. The units depends on the sites, so if a site is selected, only those units that belong to the selected site should be fetched. First I check if there is a selected item: WPF.Model.SITE site =...
  10. kristofdielis

    Crystal Reports 2011, table.ApplyLogOnInfo has no effect

    Hi, I don't know if this forum is the right place for development questions, but ... I'm writing a 'general purpose' back-end, that needs to provide basic operations, to load a Crystal Reports report. Using the connection string I get from the client app (a test program, at the moment), I...
  11. kristofdielis

    Crystal Reports 2011, table.ApplyLogOnInfo has no effect

    Hi, I'm writing a 'general purpose' back-end, that needs to provide basic operations, to load a Crystal Reports report. Using the connection string I get from the client app (a test program, at the moment), I build a ConnectionInfo object and apply it to the table(s) of the selected report (+...
  12. kristofdielis

    Question about qn exception I get

    Hi Does the following error show any actual information about where it occured? I don't see an SQLException, so it's not in the DB. The numbers that are mentioned, eg. +1104, don't correspond with actual code lines, because WebUserControls_TaskDetails doesn't even have more than 949 lines in...
  13. kristofdielis

    ComponentOne grid error

    Hi, I recently downloaded the C1 ASP.NET Wijmo trial to see what it's all about. When trying to recreate a page with a grid, I get the following (Javascript) error, as soon as I set the datasource: <wijmo:C1GridView ID="C1GridView1" runat="server"> </wijmo:C1GridView>...
  14. kristofdielis

    Microsoft JScript stack error on page reload

    Hi, I have an asp.net page that uses Google Maps, so I have some javascripts methods on it, that center the map, set a few markers, draw some polylines, etc ... All in all not that much, and fairly basic stuff, yet when I do a page reload (or postback) I regularly get a 'Insufficient...
  15. kristofdielis

    Google Maps V3 overlay order question

    Since I didn't find a Google specific forum ... I have x polylines that need to be displayed, if they fall (at least partly) within a pre-determined working area. This working area is visualized by a rectangle, drawn based on the outer boundaries of the coordinates collection. The problem...

Part and Inventory Search

Back
Top