
kcwallace
Avatar/Signature-
Posts
175 -
Joined
-
Last visited
About kcwallace
- Birthday 10/16/1973
Personal Information
-
Occupation
Developer
-
Visual Studio .NET Version
Visual Studio .NET Professional
-
.NET Preferred Language
C#, VB.net
kcwallace's Achievements
Newbie (1/14)
0
Reputation
-
I tried calling them, and the two people I was speaking to were clueless. They just kept hearing Excel, and tried to sell me a copy of Office
-
We have an ASP.Net 3.5 application that creates MS Excel Files on the fly for a client to download. We have it working on our development machines, and are ready to deploy to our web server. To use the Interop assemblies, we need to have MS Office installed on the server. Is it legal to install one copy of Office on the server and let our website software access it? Or is there a stripped down version that we can buy? (dlls only). We do not want any third party applications, or to use the method where you simply create a stream from a datagrid.
-
I built a VSTO add-in using .net 2008 that pulls some data out of a database and writes it to an Excel 2007 worksheet. This works perfectly. However, I would like to create a easy method that allows the user to define where the data should be placed. Excel already has a built-in wizard for this. For the life of me, I cannot figure out how to call the built-in FunctionArgument dialog. Can anyone help?
-
the radiobutton is set at page load in the manner you wrote in the code for the original post. I cannot speak for the other poster's attempts at solving the problem
-
It is a subset. It is inside of an AJAX Tab Control. THere is nothing special about any of the radio buttons. I lterally just dragged them onto the page, and made the very basic changes that you can see above. The code behind is very simple. It just changes the data source for the data grid, and refreshes it. The problem is that the OnCheckedChanged event never get called. I did get it to work if I changed the form so none of them are checked at page load, but this is undesireable.
-
That is not the answer. the trigger control has to be outside the update panel.
-
I am using the following HTML code to manage my page. The problem is that the radio button "rbShowWearersAll" will not fire its event. Am I doing something wrong? the other four work perfectly <asp:RadioButton ID="rbShowWearersAll" runat="server" GroupName="showWearers" oncheckedchanged="rbShowWearers_CheckedChanged" Text="All" AutoPostBack="True" /> <asp:RadioButton ID="rbShowWearersActive" runat="server" oncheckedchanged="rbShowWearers_CheckedChanged" GroupName="showWearers" Text="Active" AutoPostBack="True" /> <asp:RadioButton ID="rbShowWearersInactive" runat="server" oncheckedchanged="rbShowWearers_CheckedChanged" GroupName="showWearers" Text="Inactive" AutoPostBack="True" /> <asp:UpdatePanel ID="UpdatePanel8" runat="server" UpdateMode="Conditional"> <ContentTemplate> <asp:GridView ID="gvWearers" runat="server" SkinID="gridviewSkin" AutoGenerateSelectButton="True" OnSelectedIndexChanging="gvWearers_SelectedIndexChanging" OnPageIndexChanging="gvWearers_PageIndexChanging" AllowPaging="True" PageSize="20" ></asp:GridView> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="rbShowWearersAll" EventName="CheckedChanged" /> <asp:AsyncPostBackTrigger ControlID="rbShowWearersActive" EventName="CheckedChanged" /> <asp:AsyncPostBackTrigger ControlID="rbShowWearersInactive" EventName="CheckedChanged" /> <asp:AsyncPostBackTrigger ControlID="ImageButton1" EventName="Click" /> <asp:AsyncPostBackTrigger ControlID="ImageButton2" EventName="Click" /> </Triggers> </asp:UpdatePanel>
-
You can also populate a sqldatareader. I have had much success with it. It seems to take a long time to fill a dataset/datatable. Especially if you have no intentions of editing the returned dataset.
-
I am using SQL 2005 and using the SQLClient via C# .Net 3.5
-
Does anyone have a english translation for this? More specifically, how can I prevent it. It happens when I am running a series of database record inserts.
-
Yes just an App. I am feeling lazy
-
Not sure where the best place to post this question is. I need to automatically (live, or on a schedule) sync files in a folder on my PC with a folder on a FTP site. Does anyone have a recommendation for a software to accomplish this?
-
I am looking into getting a third party graphing control to dispay graphs and charts on a webpage. I have used .NetCharting in the past. I liked it. I have looked at Dundas, and think it looks cool. My needs are simple, pull some data out of a sql2005 database and then build a chart based on that data. I use .Net 3.5 Does anyone have suggestions about a solid product?
-
Can anyone point me to a solution, or tool for exracting data from a PDF file. The file has not been flattened, meaning I can highlight all of the text and the copy and paste the text to another file. pull out the data and evaluate it. Is this possible?