
kcwallace
Avatar/Signature-
Posts
175 -
Joined
-
Last visited
Content Type
Profiles
Forums
Blogs
Events
Articles
Resources
Downloads
Gallery
Everything posted by kcwallace
-
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?
-
I was curious if someone could point me to a solution for how to accomplish an Outlook Style dropdown button. Outlook uses it to allow a user to select from any one of 3 different ypes of addresses for a contact. I have attached a sample of what I am looking for. Any help would be greatly appreciated
-
I solved the problem, but I do not know why it is solved. I wrote the code in another project on another PC, and it worked perfectly. I then transferred the working page to the original application on the original PC, and it returned the same results. I then created a new application on the original PC, and copied the wirking page into the new application, and it worked perfectly. Does anyone know what setting might be incorrect in the original application to prevent it from working properly?
-
Can anyone tell me why the following code returns the such strange results? I cannot figure it out. :confused: CODE BEHIND [system.Web.Services.WebMethod()] public static String getCity2() { return "No Parameter"; } [system.Web.Services.WebMethod()] public static String getCity1(string strVal) { return strVal; } CLIENT SIDE <script type="text/javascript" language="JavaScript"> $addHandler($get("txtMailingZip"),"keyup",CallParametersPageMethod); function CallParametersPageMethod() { var strVal=document.getElementById("txtMailingZip"); PageMethods.getCity1('92614',onSucceeded,onFailed); } function onSucceeded(result,userContext,methodName) { var strVal=document.getElementById("Label1"); strVal.innerHTML="inSucceed"; document.form1.txtState.value=result; } function onFailed(error,userContext,methodName) { } </script> txtState displays:
-
Compress entire folder and subfolders
kcwallace replied to kcwallace's topic in Directory / File IO / Registry
thank you. i'll look into it. -
Does anyone have any suggestions for compressing alll contents of a folder, and its sub-folders while maintaining the directory structure?
-
I have a web application that I want to deploy to my webserver. It is a dedicated server from an ISP that I control through RDC. When I create the application, I do not see an option for the 3.5 framework. It only displays 1.1 and 2.0 the 3.5 framework has been installed. atleast according to the program list in the control panel Can anyone help? I am sorry if this is in the wrong category
-
I figured it out. Breakpoints will not work in Vista unless you run it as an Administrator. Add another strange Vista Behavior
-
I have breakpoints inserted into my code, but the will not stop. I know they are being reached. They worked in the past, but have stopped. I a completely updated VS2005 and completely updated Vista Business OS. I also tried reinstalling VS. It had no effect Any suggestions?
-
Nevermind, I am a complete idiot. I swapped the fromname, and the fromaddress