User Fred - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T19:48:20Z http://stackoverflow.com/feeds/user/55046 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/443389/the-macros-in-this-project-have-been-disabled 0 The macros in this project have been disabled Fred 2009-01-14T15:35:46Z 2009-11-24T15:00:04Z <p>When opening a word document a macro should start and it did for a while. But the I save the document when the macro was activated and after that I get the error message "The macros in this project have been disabled" when I open the document.</p> <p>I have tried different security settings but without success.</p> <p>Does anybody have any idea what might be the issue?</p> <p>Tahnks in advance!</p> <p>/Fred</p> http://stackoverflow.com/questions/1000054/db4o-querying-subobject 0 db4o querying subobject Fred 2009-06-16T07:45:10Z 2009-09-11T00:40:16Z <p>I've just started with db4o and I stumbled on to a problem.</p> <p>I have an object with a subobject (it is probably not the correct word but I hope you get what I mean).</p> <p>The subobject contains two dates, one start date and one end date.</p> <p>I would like to show the main object if it has at least one sub object where DateTime.Now is inbetween the start and end date.</p> <p>I have to use native query or SODA (linq isn't working in the project).</p> <p>Thanks in advance!</p> <p>/Fredrik</p> http://stackoverflow.com/questions/964053/saving-images-or-pdfs-in-db4o 2 Saving images or pdfs in db4o Fred 2009-06-08T09:26:10Z 2009-06-08T09:29:31Z <p>I know it is not a good thing to save files in a relational databas. But how about in a objectdatabase? Is it still a bad idea or are they more adapted for this kind of operations?</p> http://stackoverflow.com/questions/907242/asp-net-insert-from-bll-to-mysql 0 ASP.NET insert from bll to mysql Fred 2009-05-25T15:57:43Z 2009-05-25T16:04:53Z <p>I am trying to make an insert to an MySql database using a three layer solution (or what it might be called).</p> <p>I have done this may times with an MS-sql database and it has worked very well.</p> <p>But now when I am trying to make an insert I get the the ID can't be null. I thought the database took care of that. If I write an insert directly in the code and use the MySqlCommand and executeNonQuery it works great.</p> <p>Is it not possible to use BLL and DAL with MySql?</p> <p>Error message:</p> <p>System.Data.NoNullAllowedException: Column 'GiftID' does not allow nulls. at System.Data.DataColumn.CheckNullable(DataRow row) at System.Data.DataColumn.CheckColumnConstraint(DataRow row, DataRowAction action) at System.Data.DataTable.RaiseRowChanging(DataRowChangeEventArgs args, DataRow eRow, DataRowAction eAction, Boolean fireEvent) at System.Data.DataTable.SetNewRecordWorker(DataRow row, Int32 proposedRecord, DataRowAction action, Boolean isInMerge, Int32 position, Boolean fireEvent, Exception&amp; deferredException) at System.Data.DataTable.InsertRow(DataRow row, Int32 proposedID, Int32 pos, Boolean fireEvent) at System.Data.DataRowCollection.Add(DataRow row) at PayEx.payexusersDataTable.AddpayexusersRow(payexusersRow row) in c:\Users\IT\AppData\Local\Temp\Temporary ASP.NET Files\payex\45bd406a\10c84208\App_Code.cyqhjqo7.1.cs:line 444 at PayExBLL.AddPayExUser(String Firstname, String Lastname, String Company, String Address, String Zip, String City, String Phone, String Email, Byte ContactMe, UInt32 Amount, UInt32 TransactionNumber, Byte Anonymous, String Currency) in c:\Users\IT\Documents\Visual Studio 2008\WebSites\payex\App_Code\BLL\PayExBLL.cs:line 66 at _Default.btn_next3_Click(Object sender, EventArgs e) in c:\Users\IT\Documents\Visual Studio 2008\WebSites\payex\Default.aspx.cs:line 191</p> <p>My code:</p> <pre><code>[System.ComponentModel.DataObjectMethodAttribute(System.ComponentModel.DataObjectMethodType.Insert, true)] public bool AddPayExUser(string Firstname, string Lastname, string Company, string Address, string Zip, string City, string Phone, string Email, byte ContactMe, uint Amount, uint TransactionNumber, byte Anonymous, string Currency) { PayEx.payexusersDataTable puTable = new PayEx.payexusersDataTable(); PayEx.payexusersRow puRow = puTable.NewpayexusersRow(); puRow.Firstname = Firstname; puRow.Lastname = Lastname; puRow.Company = Company; puRow.Address = Address; puRow.Zip = Zip; puRow.City = City; puRow.Phone = Phone; puRow.Email = Email; puRow.ContactMe = ContactMe; puRow.Amount = Amount; puRow.TransactionNumber = TransactionNumber; puRow.Anonymous = Anonymous; puRow.Currency = Currency; puTable.AddpayexusersRow(puRow); int rowsAffected = Adapter.Update(puTable); return rowsAffected == 1; } </code></pre> http://stackoverflow.com/questions/858291/causesvalidation-not-working-in-multiview 0 CausesValidation not working in MultiView Fred 2009-05-13T14:29:26Z 2009-05-13T14:29:26Z <p>I have a back button in a MultiView which has CausesValidation set to false.</p> <p>I have three views in the MultiView and on the second View the back button with the CausesValidation is placed.</p> <p>It all works nicely if I click it when I am on that View. But if I go to the next View and then back again, remove a value from a TextBox which has a RequiredFieldValidator, and then click back again to get to the first page, the RequiredFieldVaildator is executed. Since the back button has CauseValidation set to false I have the opinion that the web page shouldn't behave like this.</p> <p>The even weirder thing is that if I click the back button again after that the first page opens.</p> http://stackoverflow.com/questions/834890/send-mail-to-multiple-recipients-with-attachment-asp-net 0 Send mail to multiple recipients with attachment ASP.NET Fred 2009-05-07T14:14:13Z 2009-05-07T14:23:11Z <p>I am building a simple e-mail application to send emails to a list of people with an attachment.</p> <p>To be able to add an attachment (from what I have found out) I need to use System.Web.Mail.</p> <p>Is there any limit to how many email addresses I can send to at once?</p> http://stackoverflow.com/questions/823542/xml-parser-error-no-element-found/826286#826286 0 Answer by Fred for XML-parser error: no element found Fred 2009-05-05T18:29:06Z 2009-05-05T18:29:06Z <p>The error was that I was using MySql and when I added the reference to the connector it added a line in web.config, but it didn't add the dll in the bin folder. So when the server tried to access the file it thru this error. So I added the file manually to the bin folder and, tada, it started working.</p> <p>I disinctly remember VisualStudio adding the files when I choose add reference. But maybe I had it mixed up with something else.</p> http://stackoverflow.com/questions/823542/xml-parser-error-no-element-found 0 XML-parser error: no element found Fred 2009-05-05T06:04:27Z 2009-05-05T18:29:06Z <p>I have a asp.net application which is located on a server. It was working but then I added a whole bunch of stuff and now I get:</p> <p>XML-parser error: no element found Address: <a href="http://www.dtm.se/payex/Default.aspx" rel="nofollow">http://www.dtm.se/payex/Default.aspx</a> Row 1, Column 1:</p> <p>(I have translated this error message from Swedish so it might not be 100% accurate)</p> <p>The error occurs in Firefox when I upload the code to "my" site. In IE 8 and Google Chrome I get blank pages. When I compile it it locally it runs without issues.</p> <p>I have set up IIS (7.0) on my machine and it works there to.</p> <p>I have checked the files on the server just in case there was something wrong with the upload but the code was there.</p> <p>I also have tried to remove the code I have added to see if I can get it to work again. But no. Of course I am not 100% sure I got everything back to the way it was.</p> <p>It doesn't matter which file I am trying to load all of them get this error message.</p> <p>Hmm, when I write this I get the feeling it might be something wrong with the way the asp.net application i set up on the server. But since it worked from the beginning...</p> <p>There is a lot of code so I don't know really what to upload here but maybe someone recognize this error message and knows what it is or maybe point me in the right direction.</p> http://stackoverflow.com/questions/819377/syntax-errror 1 Syntax errror Fred 2009-05-04T09:05:13Z 2009-05-04T09:23:23Z <p>Hello!</p> <p>I'm having a bad couple of weeks. Everything I touch seems to break. Ok, anyway... I have a web application in Visual Studio 2008 and it's been starting to act stange. I get a error message which says syntax error (nothing more). It "points" to the first row in my file Forms.aspx. The row says </p> <pre><code>&lt;%@ Page Language="C#" MasterPageFile="MasterPageLogin.master" AutoEventWireup="true" CodeFile="Forms.aspx.cs" Inherits="artlgn_Form" Title="Untiled Page" %&gt; </code></pre> <p>I have a file with the same name in a different folder, but it hasn't been an issue before.</p> <p>The class namespace ar different in the two files.</p> <p>I am guessing that I am missing something obvious.</p> <p>Thanks in advance!</p> <p>/Fredrik</p> http://stackoverflow.com/questions/648329/regularexpressionvalidator-wont-let-me-get-to-the-next-page 1 RegularExpressionValidator won't let me get to the next page. Fred 2009-03-15T18:52:20Z 2009-04-03T22:21:10Z <p>I have two datalists. One works like a menu where you click on a link to fill the othe datalist. I also have added a next and previous linkbutton to move between the different "pages" so that you do not have to change using the menu datalist.</p> <p>Now in code behind depending on which values I get from the database I add a RegularExpressionValidator.</p> <p>This works great until I want to use the next button (or previous for that matter). Even if all the controls that are checked are valid when compared with the RegularExpressionValidator I never get to load the new values. The next and previous buttons fires the datalist selected index change event and then I check if it is the previous or next button that was clicked.</p> <p>But the previous and next buttons are numb. They don't even fire the event. It is like clicking on the background. Nothing happens. </p> <p>I have chcked the PageIs.Valid and it is true.</p> <p>Does anyone have a clue what it could be that is causing this behavior?</p> <p>Thanks in advance!</p> <p>Some of the texts down there is in Swedish but it shouldn't matter for the code.</p> <pre><code>rev_checkfieldvalue.ControlToValidate = "tb_detailValue"; switch (iDataTypeId) { case 2: rev_checkfieldvalue.ValidationExpression = @"^\d*[0-9 ]+$"; rev_checkfieldvalue.Text = "Fältet får endast innehålla siffror och mellanslag."; break; case 3: break; case 4: break; case 5: rev_checkfieldvalue.ValidationExpression = @"\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*"; rev_checkfieldvalue.Text = "Fältet får endast innehålla en e-postadress."; break; } e.Item.Controls.AddAt(32, rev_checkfieldvalue); &lt;asp:DataList ID="dl_componentInfo" DataKeyField="ComponentId" runat="server" OnItemDataBound="dl_componentInfo_OnItemDataBound" OnItemCommand="dl_componentInfo_OnItemCommand"&gt; &lt;ItemTemplate&gt; &lt;table&gt; &lt;tr&gt; &lt;td colspan="2"&gt;&lt;asp:Label ID="lb_componentName" SkinID="lblHeader" runat="server" Text='&lt;%# Eval("ComponentName") %&gt;' /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td colspan="2"&gt;Fält markerade med * är obligatoriska&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&amp;nbsp;&lt;/td&gt; &lt;td&gt; &lt;asp:DataList ID="dl_details" OnItemDataBound="dl_details_OnItemDataBound" runat="server"&gt; &lt;ItemTemplate&gt; &lt;table&gt; &lt;tr&gt; &lt;td colspan="2"&gt; &lt;asp:Label ID="lbl_detailName" Text='&lt;%# Eval("DetailName") %&gt;' runat="server"&gt;&lt;/asp:Label&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &lt;asp:Label ID="lbl_custDetName" runat="server" /&gt; &lt;/td&gt; &lt;td align="left"&gt; &lt;%--Always hidden values--%&gt; &lt;asp:Label ID="lbl_detailTypeId" Visible="false" Text='&lt;%# Eval("DetailTypeId") %&gt;' runat="server" /&gt; &lt;asp:Label ID="lbl_detailId" Visible="false" Text='&lt;%# Eval("DetailId") %&gt;' runat="server" /&gt; &lt;asp:Label ID="lbl_dataTypeId" Visible="false" Text='&lt;%# Eval("DataTypeId") %&gt;' runat="server" /&gt; &lt;asp:Label ID="lbl_customerEventValueId" Visible="false" Text='&lt;%# Eval("CustomerEventValueId") %&gt;' runat="server" /&gt; &lt;asp:Label ID="lbl_reqFld" Visible="false" Text='&lt;%# Eval("ReqFld") %&gt;' runat="server" /&gt; &lt;%--Sometimes visible values--%&gt; &lt;asp:Label ID="lbt_detailValue" Visible="false" Text='&lt;%# Eval("PresetDetailValue") %&gt;' runat="server" /&gt; &lt;asp:Label ID="lbtb_detailValue" Visible="false" Text='&lt;%# Eval("PresetDetailValue") %&gt;' runat="server" /&gt; &lt;asp:Label ID="lbth_detailValue" Visible="false" Text='&lt;%# Eval("PresetDetailValue") %&gt;' runat="server" /&gt; &lt;asp:Label ID="lbc_detailValue" Visible="false" Text='&lt;%# Eval("PresetDetailValue") %&gt;' runat="server" /&gt; &lt;asp:DropDownList ID="dd_detailValue" Visible="false" runat="server"&gt;&lt;/asp:DropDownList&gt; &lt;%--Om det ska gå att markera/avmarkera alla så använd AJAX--%&gt; &lt;asp:CheckBoxList ID="cbl_detailValue" RepeatDirection="Horizontal" RepeatLayout="flow" Visible="false" runat="server" /&gt; &lt;asp:CheckBox ID="cb_detailValue" Visible="false" Text='&lt;%# Eval("PresetDetailValue") %&gt;' runat="server" /&gt; &lt;asp:TextBox ID="tb_detailValue" Visible="false" Text='&lt;%# Eval("PresetDetailValue") %&gt;' runat="server" /&gt; &lt;asp:TextBox ID="ta_detailValue" Visible="false" Text='&lt;%# Eval("PresetDetailValue") %&gt;' runat="server"&gt;&lt;/asp:TextBox&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/ItemTemplate&gt; &lt;/asp:DataList&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/ItemTemplate&gt; &lt;FooterTemplate&gt; &lt;table width="600"&gt; &lt;tr&gt; &lt;td&gt; &lt;asp:LinkButton id="lb_previous" Text="Föregående" CommandName="Previous" runat="server"/&gt; &lt;/td&gt; &lt;td&gt; &lt;asp:LinkButton id="lb_next" Text="Nästa" CommandName="Next" runat="server"/&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/FooterTemplate&gt; &lt;/asp:DataList&gt; </code></pre> http://stackoverflow.com/questions/648329/regularexpressionvalidator-wont-let-me-get-to-the-next-page/648389#648389 1 Answer by Fred for RegularExpressionValidator won't let me get to the next page. Fred 2009-03-15T19:31:53Z 2009-03-18T06:31:43Z <p>I thought I solved the issue but it just stopped checking.</p> http://stackoverflow.com/questions/609574/get-the-first-ints-in-a-string-with-javascript 1 Get the first Int(s) in a string with javascript Fred 2009-03-04T07:31:26Z 2009-03-04T08:07:03Z <p>I have a string in a loop and for every loop it is filled with texts the looks like this:</p> <p>"123 hello everybody 4" "4567 stuff is fun 67" "12368 more stuff"</p> <p>I only want to retrieve the first numbers up to the text in the string and I ofcourse do not know the length.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/443389/the-macros-in-this-project-have-been-disabled/443449#443449 0 Answer by Fred for The macros in this project have been disabled Fred 2009-01-14T15:51:52Z 2009-01-14T15:51:52Z <p>I have tried that it does not work, unfortunately.</p> http://stackoverflow.com/questions/964053/saving-images-or-pdfs-in-db4o/964063#964063 Comment by Fred on Saving images or pdfs in db4o Fred 2009-06-08T09:36:18Z 2009-06-08T09:36:18Z Ok, great. I guess that it doesn't matter if it is an image or pdf or...? http://stackoverflow.com/questions/907242/asp-net-insert-from-bll-to-mysql/907256#907256 Comment by Fred on ASP.NET insert from bll to mysql Fred 2009-05-25T16:36:55Z 2009-05-25T16:36:55Z Well, GiftId is a primary key with auto increment. So it should get a new number automatically when I do an insert. http://stackoverflow.com/questions/907242/asp-net-insert-from-bll-to-mysql/907258#907258 Comment by Fred on ASP.NET insert from bll to mysql Fred 2009-05-25T16:34:10Z 2009-05-25T16:34:10Z That is the wierd part. It has AUTO INCREMENT. http://stackoverflow.com/questions/834890/send-mail-to-multiple-recipients-with-attachment-asp-net Comment by Fred on Send mail to multiple recipients with attachment ASP.NET Fred 2009-05-13T14:39:18Z 2009-05-13T14:39:18Z I missed that I could use Attache with System.Net.Mail. So I changed to System.Net.Mail instead. Thank you for the comment! http://stackoverflow.com/questions/648329/regularexpressionvalidator-wont-let-me-get-to-the-next-page/648389#648389 Comment by Fred on RegularExpressionValidator won't let me get to the next page. Fred 2009-03-15T19:48:38Z 2009-03-15T19:48:38Z Hmm, I was a bit hasty there. It just stopped working all together. http://stackoverflow.com/questions/648329/regularexpressionvalidator-wont-let-me-get-to-the-next-page/648360#648360 Comment by Fred on RegularExpressionValidator won't let me get to the next page. Fred 2009-03-15T19:25:41Z 2009-03-15T19:25:41Z The weird thing is that all the controls seems to be valid (no texts that they are invalid show on the page). But it still won't load the new values. I am thinking I am missing something basic here. I will try and show/explain how my page works. http://stackoverflow.com/questions/648329/regularexpressionvalidator-wont-let-me-get-to-the-next-page/648360#648360 Comment by Fred on RegularExpressionValidator won't let me get to the next page. Fred 2009-03-15T19:16:40Z 2009-03-15T19:16:40Z Hmm, I thought that it worked like the RequiredFieldVlidator where it is ok with the field being filled. Do I have to check that RegularExpressionValidators are returning false? http://stackoverflow.com/questions/648329/regularexpressionvalidator-wont-let-me-get-to-the-next-page/648361#648361 Comment by Fred on RegularExpressionValidator won't let me get to the next page. Fred 2009-03-15T19:14:35Z 2009-03-15T19:14:35Z Actually, yes. It might change down the road but at the moment it is good enough.