Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #27.9K
~1K People Reached

6 Posted Topics

Member Avatar for Chibuike_1

This is a nested structure as follows: public __gc struct SGFPMANSITemplateInfo { Int32 TotalSamples; SGFPMFingerInfo* SampleInfo[]; } The structure contains a value that indicates the total number of samples and another struct to point to the the SampleInfo. To save the information to a database you will need to serialize …

Member Avatar for PoorRogue
0
161
Member Avatar for ShadyTyrant

Scaffolding is using the development environment to generate an initial layout which you can then customize. The code example you provided uses helper functions to generate the HTML code for the page. If the activity was to hand code using only HTML then the use of helper functions might not …

Member Avatar for PoorRogue
0
118
Member Avatar for abdelrahman.etry

Your question did not specify whether Windows Forms, WPF or AspNet. I'll assume a windows application and not an Asp.Net application. If I understand your question correctly the following code should do the trick: The text changed event handler on your text box invokes a function to build the first …

Member Avatar for PoorRogue
0
160
Member Avatar for dbalas
Member Avatar for PoorRogue
0
549
Member Avatar for barun@gmail.com

The following link lists several javascript tools that should help: http://smashinghub.com/22-useful-free-tools-for-creating-charts-diagrams-and-flowcharts.htm

Member Avatar for PoorRogue
0
65
Member Avatar for haymen.roth.3

My first suggestion is to modify your form submission a "post" transaction to follow normal practice as follows: using (Html.BeginForm("ToExcel", "Home")) Next the submit will issue a post request from your form so you will need to annotate the ToExcel action to identify it as a post action: [HttpPost] public …

Member Avatar for PoorRogue
0
171

The End.