1
Answer

Pyramid and Funnel Chart In ASP.Net / Without full solution

Hello,
In the page
"http://www.c-sharpcorner.com/UploadFile/0c1bb2/pyraamid-and-funnel-chart-in-Asp-Net/"
Shows a link to down the associate file "PyramidChartInAsp.net.zip" but when it was downloaded, the file only had two files:
PyramidChartInAsp.net.sln
PyramidChartInAsp.net.suo
 
Could you help me providing the link when I can download the full solution? Like the page said:
Notes
Download the Zip file from the attachment for the full source code of the application.
Change the connection string in the web.config file to specify your server location.
 
I look forward to your comments.
Warm regards
Alejandro Alfaro
Answers (1)
0
Rafnas T P

Rafnas T P

NA 12.2k 435.6k 8y
I don't want all time tab index disabled
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 8y
set tabindex = -1 to all control..
0
Tapan Patel

Tapan Patel

NA 8.1k 100.9k 8y
Here is how. You can define IsTabStop property to false for the other controls and it should work for you.
  1. <Buttonx:Name="button"Content="Button"HorizontalAlignment="Left"Margin="242,107,0,0"VerticalAlignment="Top"Width="75"TabIndex="1000000"IsTabStop="False"/>
  2. <TextBoxx:Name="textBox"HorizontalAlignment="Left"Height="23"Margin="204,67,0,0"TextWrapping="Wrap"Text="TextBox"VerticalAlignment="Top"Width="120"TabIndex="0"/>