How To Create An Interactive Coordinate Grid Plane

Apr 20, 2010

I am trying to make some sort of map, where users can select a coordinate on it, and get certain information about it. (it's for a game). Is there anyway to do this in vb.net/asp.net?

View 5 Replies


Similar Messages:

How To Create Interactive Animations

Nov 19, 2010

Any good starter-kits / examples showing some simple interactive animations in a web page? Is additional software required?

View 3 Replies

SQL Reporting :: Create Interactive Dashboards?

Jan 11, 2011

I would like to know how to build interactive dashboards using sql server reporting services. I am using the .rdl reports where I can generate a static gauge report but I want my user to interact with gauge at runtime to see its effects .I hope am making myself clear.

View 1 Replies

How To Create An Interactive Website Using Aspx And Ajax

Jun 11, 2010

I want to create an interactive website using aspx and ajax, that there will be an option to create chess game room for example and other players will be able to join.

I have 2 Questions:

how can I make that after one player clicks on a button and finish his turn, the other player will be able to do a move. After the first player finish his turn I will change the turn by using the database, but the point is how can I refresh the other player's site so when the other one finish his turn, the turn will come to the second player? When someone creates a room and than close his browser - I need that room to be closed. Shall I use the Session_OnEnd to close the room he opened?

View 2 Replies

C#: Preserving Bits Per Plane When Resizing Images?

Sep 27, 2010

I'm developing a service in which users can upload images and save them in a library. I want to preserve the original file (so people can upload high resolution images), but also make a copy of the image to use as a thumbnail.

The problem I have is that the thumbnail "weights" much more than the original file, proportionally. When I check the basic properties of each file (in XnView), I can see that the original files are for instance saved with 32 bits per Plane, whereas the source file will have, for instance, only 24 bits per plane.

What would be the correct way to make a copy of the original file while still using compression? This is an excerpt of the code:

private void ResizeImage(string originalFile, string NewFile, int NewWidth, int MaxHeight, bool OnlyResizeIfWider, string directory)
{
System.Drawing.Image FullsizeImage = System.Drawing.Image.FromFile(originalFile);
// Prevent using images internal thumbnail

[Code]....

View 2 Replies

Forms Data Controls :: Create A Second Grid In The Same Page With Detailed Info For A Given Record Of The First Grid

Jul 6, 2010

I am trying to create a second grid in the same page with detailed info for a given record of the first Grid, but when I press select in the first grid nothing happens. I follwed everything I read.

<asp:GridView runat="server" AutoGenerateColumns="False"
DataSourceID="SqlDataSource1" style="margin-right: 0px" Width="659px"
AutoGenerateDeleteButton="True" AutoGenerateEditButton="True"
AllowSorting="True" DataKeyNames="accession_num,organ"
EnablePersistedSelection="True" EnableSortingAndPagingCallbacks="True" onselectedindexchanged="Unnamed1_SelectedIndexChanged"
>
<Columns>
<asp:BoundField DataField="organ" HeaderText="organ"
SortExpression="organ" />
<asp:BoundField DataField="weight" HeaderText="weight"
SortExpression="weight" />
<asp:BoundField DataField="unit" HeaderText="unit" SortExpression="unit" />
<asp:BoundField DataField="accession_num" HeaderText="accession_num"
ReadOnly="True" />
</Columns>
</asp:GridView>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%&#36; ConnectionStrings:pdmstestConnectionString %>"
SelectCommand="GetGrossOrgan" SelectCommandType="StoredProcedure"
UpdateCommand="UpdateGrossOrgan" UpdateCommandType="StoredProcedure"
DeleteCommand="DELETE FROM [Pathology_Gross_Organ] WHERE [accession_num] = @accession_num AND [organ] = @original_organ"
OldValuesParameterFormatString="original_{0}"
> <SelectParameters>
<asp:ControlParameter ControlID="accession_num" Name="accession_num"
PropertyName="Text" Type="String"/>
</SelectParameters>
<DeleteParameters>
<asp:Parameter Name="accession_num" Type="String" />
<asp:Parameter Name="original_organ" Type="String"/>
</DeleteParameters>
<UpdateParameters>
<asp:Parameter Name="accession_num" Type="String"/>
<asp:Parameter Name="organ" Type="String"/>
<asp:Parameter Name="weight" Type="Int16" />
<asp:Parameter Name="unit" Type="String"/>
</UpdateParameters>
</asp:SqlDataSource>

View 8 Replies

How To Use For 2d Interactive Graphics

Apr 21, 2010

I'm using asp.net with vb.net on my web application. I also have an SQL database which I need the 2d graphical "game" page to communicate with. Which programming language would be best for this? The user has to be able to click on an item and retrieve information from the SQL database, I don't know if java can link up with SQL

View 4 Replies

Develop Interactive Pop Out Box

Oct 3, 2010

I was wondering how to be able to develop an interactive pop out box that enables users to be able to have checkboxes and buttons in the pop out box.

View 2 Replies

Make Pop Out Box With Interactive Controls

Oct 4, 2010

I was wondering how do I make a pop out box that has interactive controls in it such as buttons or checkboxes in Visual studio, I am using VB script.

View 5 Replies

How To Make Interactive Drawing

Oct 23, 2010

What i want to do is something similar to this:[URL], Drag, info, etc)Whats the best way to do it?

View 1 Replies

How To Do A Interactive Page That Is Read Only

Feb 5, 2010

I have a JPEG with of a tree in a HTML page.I have events that fire when the mouse rolls over properties of the tree. Leaves, branch, trunck, root.When the mouse event if fired, descriptive text pops up below the JPEG explaining the leaf or whatever.I wish that the JPEG cant be downloaded, and the text cant be copied, so read/view only.

View 2 Replies

Web Forms :: Does The "offsetLeft" And "offsetWidth" Always Work In Javascript For Getting The X Coordinate An...

Jan 18, 2011

I am trying to get the x coordinate and width of controls without having to worry about whether or not a style or css file exists.

I was of the understanding that the offsetWidth and offsetLeft will always get you the values. Is that true?

View 1 Replies

Make Interactive Drawing Info

Jul 27, 2010

What i want to do is something similar to this:[URL], Drag, info, etc) Whats the best way to do it?

View 1 Replies

SQL Reporting :: Way To Unsort Report After Interactive Sort

Jun 2, 2010

Is there any way to unsort a sorted report without refreshing it? For example we a provide the interactive sorting feature in some of our reports and one of the user is requesting for the data to go back to the original unsorted condition, after he sortsit. We have recommended the option to refresh the report but according to the user it takes too long. Does any one know of any unsort feature or code for SSRS 2005 that will do the job without refreshing the whole dataset?

View 1 Replies

Javascript - Integrate Google Chart Interactive With C#?

Nov 15, 2010

I want to create chart using Google Chart Interactive with ASP.NET and C# I was found this example http://code.google.com/apis/visualization/documentation/using_overview.html but i find problem how to i Integrated this with c# and how to integrate data from c# to javascript..can someone hint me what I should do?

View 2 Replies

MVC :: How To Create Editable Grid

Nov 9, 2010

i am working in MVC & want to show data in asp:gridview & also want that on mouse click on any row that row becomes editable.

View 9 Replies

AJAX :: Google Interactive Chart Inside Tabcontainer And Updatepanels?

Jun 2, 2010

I'm trying to implement Google Interactive chart inside an updatepanel.

The regular Google Charts do work (I think because there I'm just calling an URL).

But now I want the interactive chart inside an updatepanel within a tabcontainer etc. But now the request to Google is made, resulting in an infinitely loading white page to Google.

How can I get this to work?

See my FULL code below.

.ASPX

[code]....

View 8 Replies

Javascript - Creating An Interactive Bar Chart Out Of Google Analytics Data

Jul 29, 2010

I want to make a bar chart from the google analytics data. Current implemetation of the bar chart in my site is by See Analytics I am developing an ASP.NET website and this See Analytics is using PHP and jQuery to conjure the chart. It is also paid. What my client would like is a similar tool that draws chart from analytics, without a PHP Component in it. ie. A similar tool using ASP.NET and jQuery/javascript. What I would like is to get that tool for free(open source).

View 3 Replies

Forms Data Controls :: Interactive Charting Tool Method?

Jun 30, 2010

I am looking for a charting tool to generate charts in my ASP.Net page which will allow me to customize the charts to a great extent like changing the background of chart, specfying custom x and y axis and much more.Moreover, another major requirement is that the chart should be interactive enough. I would like to select data points on my chart, select a range of data points on charts by making a selction with mouse clicks and use these selections for further processing.

View 2 Replies

SQL Reporting :: Way To Unsort Report After Interactive Sort Without Refreshing The Whole Dataset?

May 8, 2010

Is there any way to unsort a sorted report without refreshing it? For example we a provide the interactive sorting feature in some of our reports and one of the user is requesting for the data to go back to the original unsorted condition, after he sortsit. We have recommended the option to refresh the report but according to the user it takes too long. Does any one know of any unsort feature or code for SSRS 2005 that will do the job without refreshing the whole dataset?

View 1 Replies

Forms Data Controls :: Nested Grid Dynamically Fill When Parent Grid Button Click Then Expand Child Grid

Jan 16, 2011

i have one grid and one button when i click on that button then it expand and showing another grid under the row of parent grid how to do that.

View 2 Replies

Web Forms :: Create A Group From Selected Rows Of Grid?

Oct 14, 2010

Let me see if I can explain what I am trying to do...From a gridview a user would be able to select as many rows as they wanted and create a "custom group" ... that user group would then be available from a dropdown list for future selection. So next time they would just select the "custom group" from a dropdown list and the resulting datagrid would only have those rows that were originally selected.So if I had a datagrid which had: empoyeeID, name, address, phone#, etc...

1. I select what ever rows I want
2. Create a name for the new custom group
3. Click a "save group" button ... this would save all the employeeID's from selected rows.
4. A dropdown list would then be updated with the new custom group ... ie, MIKE's GROUP
5. User could then select MIKE's GROUP from a dropdown list and work only with rows that were added to it.

View 1 Replies

Create A Dynamic Grid View And A Drop Down Box In Its Header?

Sep 7, 2010

how to create a dynamic grid view and a drop down box in its header ?

where should this be called like in page load ?

where should the events be handled ?

View 1 Replies

Forms Data Controls :: Create Hierarchical Grid Using C#?

Dec 13, 2010

how to create hierarchical grid using c#

View 1 Replies

Forms Data Controls :: How To Create Grid Inside DataList

Jan 28, 2011

I have to show multiple data with textBox & Grid for that i use DataList by using that, i achieve textbox data; but stil have a problem of Grid... to show in Asp:DataList...

is that possible to show Grid in Asp DataList;

View 8 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved