Hi , I am using the following code to form a cube. It uses triangles for each face. How can I make a rectangular box by modifying its values. I dont have much idea on the indices property used here.
Thanks and Regards Subin
Hi , I am using the following code to form a cube. It uses triangles for each face. How can I make a rectangular box by modifying its values. I dont have much idea on the indices property used here.
Thanks and Regards Subin
You will get it from visual studio itself.
Hi , Is there a way to make our visual studio output exe to run as Admin always ?. I am running visual studio as Admin and I have a Wix installer project with me.Even if I set the admin flag in the exe manually and then make the setup file , it goes and install it as with out having any permissions. Please help
Hi , I have an html page for showing google maps. It is showing fine in chrome and firefox, but not in IE. How to fix this ? Here is the page I used Google Maps Multiple Markers
var locations = [ ['Bondi Beach', -33.890542, 151.274856, 4], ['Coogee Beach', -33.923036, 151.259052, 5], ['Cronulla Beach', -34.028249, 151.157507, 3], ['Manly Beach', -33.80010128657071, 151.28747820854187, 2], ['Maroubra Beach', -33.950198, 151.259302, 1] ]; var map = new google.maps.Map(document.getElementById('map'), { zoom: 10, center: new google.maps.LatLng(-33.92, 151.25), mapTypeId: google.maps.MapTypeId.ROADMAP }); var infowindow = new google.maps.InfoWindow(); var marker, i; for (i = 0; i < locations.length; i++) { marker = new google.maps.Marker({ position: new google.maps.LatLng(locations[i][1], locations[i][2]), map: map }); google.maps.event.addListener(marker, 'click', (function(marker, i) { return function() { infowindow.setContent(locations[i][0]); infowindow.open(map, marker); } })(marker, i)); }
Hi , Please help me to make a chart like this to use in WPF. Is there any charts available for this.On clicking the data points , I should get corresponding values. http://i.stack.imgur.com/M1QYL.png[^] With warm regards Subin
Hi , I have a situation here to plot some data. For example there is an event occurs everyday at a particular time. I need to highlight that event in a Date Vs Time graph. There is no need to show a graph with lines. Just needed to highlight the events,thats it. On clicking the event it should go to another window and load its data. Event should also have a tooltip. Is there any controls available for this in WPF ? Please help. With Regards Subin.
:-D I was thinking the same. But I am just an employee here and the decision makers are non-technical guys :( :((
Hi , Can we write a pure JSON REST service using classic ASP ?. My client requirement is to write it in classic ASP not .net. Could you please help. Regards Subin
That is not the case. SPs are already written and unfortunately we can not change it :(. This is the issue The function 'SP_GBM_AUDIT_FIELD_ENTRY' has a parameter 'BCHECK' at parameter index 5 that has a data type 'pl/sql boolean' which is currently not supported for the target .NET Framework version
I want to pass a boolean value to an oracle parameter .My doubt is how to create .net oracle parameter for a boolean data type and pass that value. Even entity framework is not supported for stored procedures with boolean parameters
which is not there in 'OracleType' structure
Hi , Could you please let me know how to pass a boolean value to an oracle parameter ?. When I googled I found that boolean data type is not supported in .net With Regards
Hi Guys , Could you please let me know how to consume the following REST service from C# code. Your answers will be very helpful. Thanks in advance. Authenticate(POST) http://localhost:50448/UserRest/GetSampleMethod\_With\_OAuth json script -Request Body { "Password":"subin", "UserName":"Subin" } Get All(GET) http://localhost:50448/UserRest/getall?token={token} Update(PUT) http://localhost:50448/UserRest/update?token={token} json script -Request Body { "Bank":"String content", "DOB":"String content", "ID":"1", "Name":"String content" } Delete(DELETE) http://localhost:50448/UserRest/delete/1?token={token} Logout(POST) http://localhost:50448/UserRest/LogoutSession?token={token} With Regards
Hi Guys , Whats the best way to implement a live update on an aspx page.Like commentary/score update of a live cricket match ?.Any good thoughts ? Please share :) With Warm regards :)
Hi Guys , Whats the best way to implement a live update on an aspx page.Like commentary/score update of a live cricket match ?.Any good thoughts ? Please share :) With Warm regards :)
;P ;P ;P ;P ;P ;P ;P
You can use SmartPaster addin for visual studio.Copy the text you needed and paste it as string builder.Here is the code and installer http://www.martinwilley.com/blog/2010/06/06/SmartPasteIn2010.aspx[^]
I want the answer in tree and propertygrid perspective. ???
If I use AutoResetEvent.WaitOne() , my Static Code Analysis will throw an error for making use of the returning value of WaitOne.Confused!!!!!!!!!!! :(
Hi , What is the best method for putting a wait in execution.Thread.Sleep() will raise parasoft warnings and its not a good way to use Thread.Sleep every where.Is there any other ways ? Waith warm regards.