User Filip Ekberg - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T21:03:28Z http://stackoverflow.com/feeds/user/39106 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1859061/how-can-i-simulate-ctrlc-in-c/1859076#1859076 0 Answer by Filip Ekberg for how can i simulate CTRL+C in C# Filip Ekberg 2009-12-07T10:15:23Z 2009-12-07T10:15:23Z <p>I think you should look into this tutorial on <a href="http://www.geekpedia.com/tutorial188%5FClipboard-Copy-and-Paste-with-Csharp.html" rel="nofollow">C# Clipboard Copy and Pasting</a>. Using Copy paste in C# is not actualy as hard as you might think.</p> <p><strong>Copy</strong></p> <pre><code>Clipboard.SetText(txtClipboard.Text); </code></pre> <p><strong>Paste</strong></p> <pre><code>txtClipboard.Text = Clipboard.GetText(); </code></pre> <p>Check the Above link for more information and examples. You should also look at the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.clipboard.aspx" rel="nofollow">MSDN page</a> for <code>Clipboard</code>.</p> http://stackoverflow.com/questions/1838629/areas-over-multiple-projects-views-not-found-in-child-projects 1 Areas over multiple projects - Views not found in child projects Filip Ekberg 2009-12-03T09:03:30Z 2009-12-04T14:56:50Z <p>I've been following this guide from MSDN about <a href="http://msdn.microsoft.com/en-us/library/ee307987%28VS.100%29.aspx" rel="nofollow">"Creating an ASP.NET MVC Areas Application Using Multiple Projects"</a>. Since ASP.NET MVC 2.0 is just preview one would imagine there to be some bugs.</p> <p><strong>My problem is, it simply doesn't work!</strong> At least not the way it's suppose to. After setting everything up and pressing F5, one would think that, this will work, neat! BEEEP. Wrong.</p> <p>It doesn't find the Views in the child project! Because in my case it tries to search within <code>~/Views</code> which of course is in the parent!</p> <p>When debugging i see that it Does run the Controller inside my child project, but when using <code>return View();</code> on that Action, it looks inside the Parent View-folders.</p> <p>I ask, Bug or Feature?</p> <p>Tried this in both Vs2009, Vs2010 with both Framework 3.5 and 4.0.</p> http://stackoverflow.com/questions/1605758/file-upload-using-richfaces 3 File upload using RichFaces Filip Ekberg 2009-10-22T08:28:30Z 2009-11-22T16:52:37Z <p>I am currently looking in to some file uploading using Java Server Faces. I've found <a href="http://livedemo.exadel.com/richfaces-demo/richfaces/fileUpload.jsf" rel="nofollow">this great introduction</a> to it using RichFaces. However, I have some troubles understanding the process here.</p> <p>First the user selects a file and if the immediate upload is set to true the file is processed using ajax, so far so good. When it comes to the next step however, the listener on the Bean-side the following confuses me:</p> <pre><code>public void listener(UploadEvent event) throws Exception{ UploadItem item = event.getUploadItem(); File f = item.getFile(); System.out.println(f.getAbsolutePath()); } </code></pre> <p>The Absolute path is to a temp directory on my computer, sure I understand that, but how would you make the file available to the webbapplication? My application is deployed as a WAR-file. Is it possible to Upload it to the WAR? Might sound stupid or so, but it might actually be handy.</p> <p>I am fully aware that I can rename the file to copy it to a new location, but is that the way to go?</p> http://stackoverflow.com/questions/1756092/binding-isenabled-and-other-properties-to-public-properties-does-it-work-like-de 1 Binding IsEnabled and other Properties to Public Properties, does it work like Dependency Properties? Filip Ekberg 2009-11-18T13:46:40Z 2009-11-19T08:30:15Z <p>In my scenario I have a lot of buttons or other controls which I want to depend upon a public property inside the code-behind file. Let's call this IsEverythingLoaded and it's a boolean.</p> <p>Now I would like to have a button look like this</p> <pre><code>&lt;Button Click="DoTheMagic" IsEnabled="{Binding Path=IsEverythingLoaded}"&gt;Click Me&lt;/Button&gt; </code></pre> <p>To even get this running I figured out I need to point it to the Relative Source, so by adding this to my <code>&lt;Window&gt;</code> decleration, I got the initiation and visualisation to work. </p> <p><code>DataContext="{Binding RelativeSource={RelativeSource Self}}"</code></p> <p>However, lets say that I raise an event with another button, which then were to set <code>IsEverythingLoaded</code> to <code>true</code>, I would imagine that <code>IsEnabled</code> on each button would too. And therefore be clickable again, but I was wrong, isn't this how DependencyProperties should work?</p> <p><strong>To Clearify..</strong></p> <p>I do <strong>NOT</strong> wish to write IsEverythingLoaded as a DependencyProperty. I want the <strong>Button</strong> to <em>Depend</em> on <strong>A CLR Property</strong></p> http://stackoverflow.com/questions/1756954/using-rendertargetbitmap-on-windowsformshost 1 Using RenderTargetBitmap on WindowsFormsHost Filip Ekberg 2009-11-18T15:51:13Z 2009-11-18T16:58:31Z <p>I have a set of controls inside a <code>WindowsFormsHost</code> and I would like to capture the current view and just save it as an image, I however only get some <code>Panel</code> visible in the Image.</p> <p>Is it possible to use the WindowsFormsHost as a "Visual" and capture the wrapped controls?</p> <p>See my example:</p> <pre><code>&lt;WindowsFormsHost x:Name="windowHost"&gt; &lt;wf:Panel Dock="Fill" x:Name="basePanel"/&gt; &lt;/WindowsFormsHost&gt; </code></pre> <p>If i were to add a Button or whatever to the <code>basePanel</code> this wouldn't be visible when exporting to a PNG with the following code:</p> <pre><code> RenderTargetBitmap rtb = new RenderTargetBitmap(basePanel.Width, basePanel.Height, 96, 96, PixelFormats.Pbgra32); rtb.Render(windowHost); PngBitmapEncoder pnge = new PngBitmapEncoder(); pnge.Frames.Add(BitmapFrame.Create(rtb)); Stream stream = File.Create("test.jpg"); pnge.Save(stream); stream.Close(); </code></pre> <p>Suggestions on why this might not work and maybe a possible work-around? I guess it's not really suppose to work this way, but one could really hope!</p> http://stackoverflow.com/questions/1754661/wrapping-controls-from-system-windows-forms-in-system-windows-uielement 0 Wrapping Controls from System.Windows.Forms in System.Windows.UIElement Filip Ekberg 2009-11-18T09:14:08Z 2009-11-18T09:26:13Z <p>Is it possible to wrap the old System.Windows.Forms controls in System.Windows.UIElement? I know that the <a href="http://msdn.microsoft.com/en-us/library/system.windows.controls.webbrowser.aspx" rel="nofollow">Browser Control</a> is somehow wrapped and the base is from System.Windows.Forms.</p> <p>If this is possible, would the implementation cause any consequences?</p> http://stackoverflow.com/questions/1502465/implementing-authentication-for-a-webdav-servlet 0 Implementing Authentication for a WebDAV Servlet Filip Ekberg 2009-10-01T07:47:11Z 2009-11-16T11:04:55Z <p>I am currently using <a href="http://sourceforge.net/projects/webdav-servlet/develop" rel="nofollow">this</a> WebDAV Java Servlet Implementation, it's as far as I know the smallest and the easiest to use WebDAV java solution that doesn't depend on Tomcat ( Using WebLogic ).</p> <p>So I would like to extend this to use my underlying security layer which somewhat uses a database connection to authenticate users.</p> <p>My question is if this is possible? Does the HttpServletRequest even get the Authentication?</p> <p>Consider the following method header: </p> <pre><code>protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { } </code></pre> <p>Now I would like to use req.getPrincipal to get the User Principal containing the Username and Password. However, my getPrincipal always returns null even if I set my WebDAV client to Windows Authentication or anything else for that matter.</p> http://stackoverflow.com/questions/1721241/what-programming-language-is-iis-written-in/1721268#1721268 9 Answer by Filip Ekberg for What programming language is IIS written in? Filip Ekberg 2009-11-12T10:20:29Z 2009-11-12T10:20:29Z <p>Probably <a href="http://www.cplusplus.com/doc/tutorial/" rel="nofollow"><code>C++</code></a>, the core that is, newer versions such as 7 might have extensions written in other languages from the <a href="http://www.microsoft.com/NET/" rel="nofollow"><code>.NET</code></a> family.</p> http://stackoverflow.com/questions/1720942/delegates-in-c/1720976#1720976 2 Answer by Filip Ekberg for Delegates in c# Filip Ekberg 2009-11-12T09:21:38Z 2009-11-12T09:21:38Z <p>In .NET 3.5 when I do WPF development I use the following sequnce:</p> <p><strong>Step one</strong></p> <p>Declare the delgate outside the class</p> <pre><code>public delegate void performSomeWorkDelegate(Person[] personsToDoWorkOn); </code></pre> <p><strong>Step two</strong></p> <p>When you want to use this, you should use something called "Invoking" in .NET 3.5 ( WPF ) You use Dispatcher for this.</p> <pre><code>Dispatcher.Invoke( new performSomeWorkDelegate(methodToInvoke), new object[] { persons }); </code></pre> <p>Now this might look troublesome but it's not really, <code>methodToInvoke</code> is the method I want to call and <code>persons</code> is my <code>Person[]</code> array that I want to pass to the method!</p> <p><strong>Bonus step</strong></p> <p>Before you actually use <code>Dispatcher.Invoke</code> you might want to check if you already have access to run the method!</p> <pre><code>if (myControl.CheckAccess()) { methodToInvoke(persons); } else { Dispatcher.Invoke( new performSomeWorkDelegate(methodToInvoke), new object[] { persons }); } </code></pre> <p>You usually use Delegates in multi-threaded applications, and in my case myControl is on the GUI-thread, but if i have access, I don't need to instanciate a delegate to handle everything for me! Therefore <code>methodToInvoke</code> might also be a bad name.</p> http://stackoverflow.com/questions/1720855/how-to-sort-an-array-in-php/1720864#1720864 4 Answer by Filip Ekberg for How to sort an array in php Filip Ekberg 2009-11-12T09:00:22Z 2009-11-12T09:10:12Z <p>There's a <a href="http://php.net/manual/en/function.sort.php" rel="nofollow"><code>sort</code></a> function in php! ( I answer the topic and not the body, didn't quite follow you there, but here's how you sort in php )</p> <p><strong>Example</strong></p> <pre><code>&lt;?php $fruits = array("lemon", "orange", "banana", "apple"); sort($fruits); foreach ($fruits as $key =&gt; $val) { echo "fruits[" . $key . "] = " . $val . "\n"; } ?&gt; </code></pre> <p><strong>Duplicates</strong></p> <p>In the above example duplicates will just have their own indexes so the array:</p> <pre><code>5 4 5 1 3 1 2 </code></pre> <p>Will look like this</p> <pre><code>1 1 2 3 4 5 5 </code></pre> <p>This might not be what you are looking for, what you want is another type of dataset than just a simple array, maybe you want a hashtable or just a linked list on each row.</p> <p>If you are okay with it, you can remove the duplicates by using <a href="http://php.net/array%5Funique" rel="nofollow"><code>array_unique</code></a> <code>$newArray=array_unique($arr);</code></p> <p>Which would lead to having an array looking like this</p> <pre><code>1 2 3 4 5 </code></pre> http://stackoverflow.com/questions/1720819/search-aspx-page-data-to-find-out/1720829#1720829 3 Answer by Filip Ekberg for search aspx page data to find out Filip Ekberg 2009-11-12T08:51:47Z 2009-11-12T08:51:47Z <p>To list Files and Folders you can use something called <a href="http://msdn.microsoft.com/en-us/library/system.io.directoryinfo.aspx" rel="nofollow">DirectoryInfo</a></p> <p><strong>EXample</strong></p> <pre><code>void Page_Load(object s, EventArgs e) { DirectoryInfo di = new DirectoryInfo("c:/inetpub/wwwroot/demos"); FileInfo[] rgFiles = di.GetFiles("*.aspx"); foreach(FileInfo fi in rgFiles) { Response.Write("&lt;br&gt;&lt;a href=" + fi.Name + "&gt;" + fi.Name + "&lt;/a&gt;"); } } </code></pre> <p><em><a href="http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=356" rel="nofollow">example taken from here</a></em></p> http://stackoverflow.com/questions/1720646/how-can-i-loop-with-array/1720682#1720682 5 Answer by Filip Ekberg for How Can I loop with array ? Filip Ekberg 2009-11-12T08:12:27Z 2009-11-12T08:18:56Z <p>You might want to start out by looking on <a href="http://php.net/array" rel="nofollow">how arrays work</a>. Also if you don't know "what" an array is, look over <a href="http://en.wikipedia.org/wiki/Array" rel="nofollow">this Wikipedia entry</a>.</p> <p><strong>Examples from PHP.NET</strong></p> <p>Declare an indexes and values</p> <pre><code>&lt;?php $arr = array("foo" =&gt; "bar", 12 =&gt; true); echo $arr["foo"]; // bar echo $arr[12]; // 1 ?&gt; </code></pre> <p>Here is another example with the results</p> <pre><code>&lt;?php // Create a simple array. $array = array(1, 2, 3, 4, 5); print_r($array); // Now delete every item, but leave the array itself intact: foreach ($array as $i =&gt; $value) { unset($array[$i]); } print_r($array); // Append an item (note that the new key is 5, instead of 0). $array[] = 6; print_r($array); // Re-index: $array = array_values($array); $array[] = 7; print_r($array); ?&gt; </code></pre> <p>Result of the above:</p> <pre><code>Array ( [0] =&gt; 1 [1] =&gt; 2 [2] =&gt; 3 [3] =&gt; 4 [4] =&gt; 5 ) Array ( ) Array ( [5] =&gt; 6 ) Array ( [0] =&gt; 6 [1] =&gt; 7 ) </code></pre> <p><strong>Your special problem</strong></p> <p>Now it looks to me that you want to select each name from each record / row in your array / list.</p> <p>To do this you need to loop / iterate throughout the array and write the current rows name-value.</p> <p><strong>Example on looping with arrays</strong></p> <pre><code>&lt;?php $people = Array( Array('name' =&gt; 'Kalle', 'salt' =&gt; 856412), Array('name' =&gt; 'Pierre', 'salt' =&gt; 215863) ); for($i = 0; $i &lt; sizeof($people); ++$i) { echo $people[$i]['name']; } ?&gt; </code></pre> <p><strong>Doing this without loops</strong></p> <p>So let's say that you know that your array only has two values, well then if you had an array looking like this:</p> <pre><code>$arr = array(10, 20); </code></pre> <p>You could write something like this to write them out:</p> <pre><code>echo $arr[0]; echo $arr[1]; </code></pre> <p>Remember that when you tell your array which "row" to get, you always say "how many steps to go", meaning that if you want the first value, you take 0 steps, therefore the index is... 0!</p> <p><strong>Object orientation and arrays</strong></p> <p>Since you are using an object in your array you might want to check out some information about <a href="http://php.net/oop" rel="nofollow">PHP and Object Oriented Programming</a>.</p> <p><strong>Side note and a cool example</strong></p> <p>See this cool example which might give you an idea on what you can do</p> <pre><code>&lt;?php $obj = (object) array('foo' =&gt; 'bar', 'property' =&gt; 'value'); echo $obj-&gt;foo; // prints 'bar' echo $obj-&gt;property; // prints 'value' ?&gt; </code></pre> http://stackoverflow.com/questions/1714277/t-sql-creating-a-local-user-on-windows-os/1714303#1714303 1 Answer by Filip Ekberg for T-SQL - Creating a Local User On Windows OS Filip Ekberg 2009-11-11T10:24:40Z 2009-11-11T10:24:40Z <p>You might want to look into <a href="http://doc.ddart.net/mssql/sql70/xp%5Faa-sz.htm" rel="nofollow">xp_cmdshell for T-SQL</a></p> <p><strong>Example</strong></p> <blockquote> <p>The rows are returned in an <code>nvarchar(255)</code> column.</p> <p>Executing this xp_cmdshell statement returns the following result set:</p> </blockquote> <pre><code>xp_cmdshell 'dir *.exe', NO_OUTPUT </code></pre> <p>You should also look over the security when doing this, see this <a href="http://msdn.microsoft.com/en-us/library/aa175398%28SQL.80%29.aspx" rel="nofollow">msdn article</a></p> <p><strong>Adding users through command line</strong></p> <p>See this documentation on <a href="http://ss64.com/nt/addusers.html" rel="nofollow">adduser</a></p> <blockquote> <p>Syntax</p> <p>Create Users:</p> </blockquote> <pre><code> AddUsers /c filename [/s:x] [/?] Domain Password_options </code></pre> <blockquote> <p>Dump to file:</p> </blockquote> <pre><code> AddUsers /d{:u} filename [/s:x] [/?] Domain Password_options </code></pre> <blockquote> <p>Erase Users:</p> </blockquote> <pre><code> AddUsers /e filename [/s:x] [/?] Domain Password_options </code></pre> http://stackoverflow.com/questions/1713661/how-to-implement-drop-down-menus-like-below/1713693#1713693 1 Answer by Filip Ekberg for How to implement drop-down menus like below? Filip Ekberg 2009-11-11T07:50:38Z 2009-11-11T07:50:38Z <p>You don't need jQuery for this. You can use plain 'ol <a href="http://en.wikipedia.org/wiki/Cascading%5FStyle%5FSheets" rel="nofollow">CSS</a>.</p> <p><a href="http://pixelspread.com/blog/289/css-drop-down-menu" rel="nofollow">This article</a> from pixelspread shows how to create a CSS Drop Down Menu <a href="http://pixelspread.com/demo/cssdropdown.html" rel="nofollow">resulting in this</a>. You might also want to look into these following:</p> <ol> <li><a href="http://sperling.com/examples/menuh/" rel="nofollow">CSS Horizontal Drop-Down-Menu</a></li> <li><a href="http://javascript-array.com/scripts/simple%5Fdrop%5Fdown%5Fmenu/" rel="nofollow">Simple JavaScript Drop Down Menu ( If you really want a JavaScript based one. )</a></li> <li><a href="http://javascript-array.com/scripts/jquery%5Fsimple%5Fdrop%5Fdown%5Fmenu/" rel="nofollow">jQuery Drop Down Menu ( Written with jQuery if you like that.. )</a></li> <li><a href="http://css-tricks.com/simple-jquery-dropdowns/" rel="nofollow">Another one in jQuery + CSS with very good examples and help around it.</a></li> <li><a href="http://www.bunchacode.com/programming/shadow-menu/" rel="nofollow">You could also check out this page, which provides you with code for a jQuery Drop Down Menu ( provided in the other posters link )</a></li> </ol> http://stackoverflow.com/questions/1708428/displaying-content-only-when-listviewitem-is-selected 1 Displaying Content only when ListViewItem is Selected Filip Ekberg 2009-11-10T14:38:28Z 2009-11-10T17:32:11Z <p>I have a <code>ListBox</code> when one of the <code>ListBoxItems</code> are selected I want to change the visibility of the button "View" and display it. Meaning that the default state is Hidden.</p> <p>Is this possible and if so, do I solve this with a trigger in XAML or in code behind?</p> <p><strong>XAML Piece</strong></p> <pre><code>&lt;ListBox Background="Transparent" ItemContainerStyle="{StaticResource listBoxTemplate}" BorderThickness="0"&gt; &lt;ListBox.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;StackPanel Orientation="Vertical" VerticalAlignment="Center" /&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ListBox.ItemsPanel&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;Grid Background="Beige" Margin="10 10 10 10" HorizontalAlignment="Center" Width="500" Height="100" VerticalAlignment="Stretch"&gt; &lt;Grid.RowDefinitions&gt; &lt;RowDefinition Name="TopRow" Height="50" /&gt; &lt;RowDefinition Name="BottomRow" Height="*" /&gt; &lt;/Grid.RowDefinitions&gt; &lt;Grid.ColumnDefinitions&gt; &lt;ColumnDefinition Name="LeftSideMenu" Width="*"/&gt; &lt;ColumnDefinition Name="Middle" Width="*"/&gt; &lt;/Grid.ColumnDefinitions&gt; &lt;Label Grid.Column="0" Grid.Row="0" Content="{Binding name}" /&gt; &lt;Button Grid.Column="1" VerticalAlignment="Center" Grid.RowSpan="2" Name="view" Click="viewClicked_Click" Grid.Row="0"&gt;View&lt;/Button&gt; &lt;Label Grid.Column="0" Grid.Row="1" Content="{Binding description}" /&gt; &lt;/Grid&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; </code></pre> http://stackoverflow.com/questions/1708844/i-am-a-programming-student-and-haveing-problems-writing-a-program-for-guessing-ra/1708922#1708922 4 Answer by Filip Ekberg for I am a programming student and haveing problems writing a program for guessing random numbers just don't know where to get started. Filip Ekberg 2009-11-10T15:44:38Z 2009-11-10T15:44:38Z <p>You might want to start off by thinking of the structure, breaking everyting down into smaller pieces.</p> <p><strong>Step one - Identify the requirements</strong></p> <p>Now you said that you want to create some sort of software, that allowes you to guess on random numbers. So If we break this down into smaller pieces we get the following:</p> <ol> <li>Random number Generator</li> <li>Amount of guesses</li> <li>Possibility to post a new guess</li> </ol> <p>These are the minumum requirements, so if we break each step up into even smaller pieces we will get to the final solution pretty quickly ( i will however only provide you with a sufficient amount of information to get your started on your homework ).</p> <p><strong>Step two - Understanding random</strong></p> <p>You might want to head over <a href="http://www.c-sharpcorner.com/UploadFile/mahesh/RandomNumber11232005010428AM/RandomNumber.aspx" rel="nofollow">here</a> to read a little about Random numbers in C#, however as you have probably already guessed you need a <a href="http://dotnetperls.com/random" rel="nofollow">ranom number generator</a>, i've provided you with two links to ranom generators and information about it which should help you on the way, but to give you a little example here</p> <p><strong>example</strong></p> <pre><code>Random generator = new Random(); generator.Next(); </code></pre> <p>Now you have a couple of extra parameters that might come in handy, check the <a href="http://msdn.microsoft.com/en-us/library/system.random.aspx" rel="nofollow">MSDN Guidelines on Ranom</a>, there are methods / constructors that might be of interest which will help you select a ranom number between a and b.</p> <p><strong>Step three - creating the interface</strong></p> <p>Now this is where i say godbye to you, you should have sufficient information on how to start the solution and get some data out there. Otherwise I would suggest this <a href="http://www.asp.net/learn/" rel="nofollow">resource</a></p> http://stackoverflow.com/questions/1708829/how-to-use-xml-to-configure-a-store-procedure/1708852#1708852 0 Answer by Filip Ekberg for How to use XML to configure a Store procedure Filip Ekberg 2009-11-10T15:36:33Z 2009-11-10T15:36:33Z <p>You can look into this article about <a href="http://www.simple-talk.com/sql/t-sql-programming/reading-and-writing-files-in-sql-server-using-t-sql/" rel="nofollow">Reading and Wrinting files in SQL Server using tsql</a> after that you might want to check out the <a href="http://msdn.microsoft.com/en-us/library/aa276847%28SQL.80%29.aspx" rel="nofollow">OPENXML-documentation</a></p> <blockquote> <p>OPENXML provides a rowset view over an XML document. Because OPENXML is a rowset provider, OPENXML can be used in Transact-SQL statements in which rowset providers such as a table, view, or the OPENROWSET function can appear.</p> </blockquote> <p>This might be what you are looking for.</p> http://stackoverflow.com/questions/1707811/is-there-anything-in-asp-net-like-applet-in-java/1707855#1707855 0 Answer by Filip Ekberg for Is there anything in ASP.Net like applet in java Filip Ekberg 2009-11-10T13:09:49Z 2009-11-10T13:09:49Z <p>Actually there is, <a href="http://www.xbap.org/" rel="nofollow">XBAP</a>! You should check it out, it's WPF though. Or <a href="http://silverlight.net/" rel="nofollow">Silverlight</a>, but XBAP is a little bit more like Applets since it's downloaded and runned in a jail on the client.</p> http://stackoverflow.com/questions/1706875/undefined-index/1706904#1706904 0 Answer by Filip Ekberg for undefined index Filip Ekberg 2009-11-10T10:16:38Z 2009-11-10T10:16:38Z <p>First of all, for debugging purpose you can always use <a href="http://php.net/print%5Ff" rel="nofollow">print_f</a>.</p> <p>I would modify the above to see if it even returns something and it might look something like this:</p> <pre><code>$val= mysql_query("select * from country"); while($row = mysql_fetch_array($val)){ print_f($row); } </code></pre> <p>Now, undefined index usualy means that it cannot find the key / index you are looking for, in this case, it cannot find 'country' in your <a href="http://php.net/manual/en/language.types.array.php" rel="nofollow">array</a> ( <code>$row</code> ).</p> <p><strong>Step by step debugging</strong></p> <ol> <li>Check the SQL - run the SQL in phpMyAdmin, Query Browser or any other SQL Command Line tool available to see that it really returns the result you want.</li> <li>Debug the returned Array using print_f, see if you can access the index by numeric value instead of key.</li> <li>If all of the above failed, your problem lies elsewhere, then the problem is not in the code you provided.</li> </ol> <p>You want examples on <a href="http://php.net/isset" rel="nofollow">isset, see the php manual for that</a>.</p> <p><strong>Example of isset - taken from php.net</strong></p> <pre><code>&lt;?php $var = ''; // This will evaluate to TRUE so the text will be printed. if (isset($var)) { echo "This var is set so I will print."; } // In the next examples we'll use var_dump to output // the return value of isset(). $a = "test"; $b = "anothertest"; var_dump(isset($a)); // TRUE var_dump(isset($a, $b)); // TRUE unset ($a); var_dump(isset($a)); // FALSE var_dump(isset($a, $b)); // FALSE $foo = NULL; var_dump(isset($foo)); // FALSE ?&gt; </code></pre> <p><strong>Side note</strong> Never use <code>select * from...</code> it's bad practice and results in errors like this, if you would specify the columns in your SQL, there would be less room for error.</p> http://stackoverflow.com/questions/1687416/avoiding-spaghetti-code-in-asp-net-mvc/1687468#1687468 6 Answer by Filip Ekberg for Avoiding spaghetti code in ASP.NET MVC Filip Ekberg 2009-11-06T13:02:17Z 2009-11-06T13:02:17Z <p>This is just a short-tag <code>&lt;%=</code> for <code>&lt;% Response.Write</code> note the difference between <code>&lt;%</code> and <code>&lt;%=</code></p> <p>So you could very well write it like this:</p> <pre><code>for (int i = Model.StartPage; i &lt;= Model.EndPage; i++) { Response.Write(Html.Label(ViewData.Model.Controller + i.ToString())); } </code></pre> <p>One could argue which is nicer..</p> http://stackoverflow.com/questions/1679753/normalisation-in-database/1679816#1679816 0 Answer by Filip Ekberg for Normalisation in database Filip Ekberg 2009-11-05T11:03:01Z 2009-11-05T11:03:01Z <p>I wouldn't say that it's pain raither common sense.</p> <p>When you noramlize something, you actually just see to it that you wont have redundant data, which should be quite obvious why that's bad.</p> <p>Now, if you have no idea what Noramlization is, check <a href="http://en.wikipedia.org/wiki/Database%5Fnormalization" rel="nofollow">this Wikipedia Entry</a>.</p> <p>When designing your data-structure you will soon see that a lot of things might repeate themselves and if so, you can always extract that and make an abstraction in your model. And hand-in-hand with that you get foreign keys, candidate keys, primary keys and indexes which will help you speed up searches and make it easier for all of us.</p> <p>However, there are times when people tend to "over"-noramlzie, but that might not be so bad.</p> <p><strong>Power to the noramlization!</strong></p> <p><strong>Normalization overview</strong></p> <blockquote> <p><strong>First Normal Form (1NF)</strong></p> <p>First normal form (1NF) sets the very basic rules for an organized database: Eliminate duplicative columns from the same table. Create separate tables for each group of related data and identify each row with a unique column or set of columns (the primary key). Second Normal Form (2NF)</p> <p><strong>Second normal form (2NF)</strong> </p> <p>further addresses the concept of removing duplicative data: Meet all the requirements of the first normal form. Remove subsets of data that apply to multiple rows of a table and place them in separate tables. Create relationships between these new tables and their predecessors through the use of foreign keys. Third Normal Form (3NF)</p> <p><strong>Third normal form (3NF)</strong></p> <p>goes one large step further: Meet all the requirements of the second normal form. Remove columns that are not dependent upon the primary key. Fourth Normal Form (4NF)</p> <p><strong>Finally, fourth normal form (4NF)</strong></p> <p>has one additional requirement: Meet all the requirements of the third normal form. A relation is in 4NF if it has no multi-valued dependencies.</p> </blockquote> <p>Quote taken from <a href="http://databases.about.com/od/specificproducts/a/normalization.htm" rel="nofollow">this article</a>.</p> http://stackoverflow.com/questions/1560601/navigation-in-java-server-faces-redirecting-with-correct-paramters 0 Navigation in Java Server Faces, Redirecting with correct Paramters Filip Ekberg 2009-10-13T14:31:04Z 2009-11-03T21:01:27Z <p>I have a page <a href="http://mypage.com/items.jsf" rel="nofollow">http://mypage.com/items.jsf</a></p> <p>This page takes the following for granted:</p> <ul> <li>ID is set by GET or ID is set by POST</li> </ul> <p>Now, I can manuall call items.jsf?ID=10</p> <p>But what I really want to do is have a Button which calls a function that returns the navigation url.</p> <pre><code>public String test() { return "10"; } </code></pre> <p>Now having the following Code in the JSF-File</p> <pre><code>&lt;h:form&gt; &lt;h:commandButton action="#{itemsBean.test}" value="Redirect me" /&gt; &lt;/h:form&gt; </code></pre> <p>What I want to happen is that when i Press "Redirect me", I want a Navigation-Rule to Know that I want to go to: items.jsf?ID=<strong><em>10</em></strong></p> <p>Is this possible? Feels like it's a trivial problem really.</p> http://stackoverflow.com/questions/1650399/self-sorted-data-structure-with-random-access/1650434#1650434 0 Answer by Filip Ekberg for Self-sorted data structure with random access. Filip Ekberg 2009-10-30T15:19:16Z 2009-10-30T15:19:16Z <p>Self sorting is a little bit to ambigious. First of all</p> <p><strong>What kind of data structure?</strong></p> <p>There are a lot of different data structures out there, such as:</p> <ul> <li>Linked list</li> <li>Double linked list</li> <li>Binary tree</li> <li>Hash set / map</li> <li>Stack </li> <li>Heap</li> </ul> <p>And many more and each of them behave differently than others and have their benefits of course.</p> <p>Now, not all of them could or should be self-sorting, such as the Stack, it would be weird if that one were self-sorting.</p> <p>However, the Linked List and the Binary Tree could be self sorting, and for this you could sort it in different ways and on different times.</p> <p><strong>For Linked Lists</strong></p> <p>I would preffere <a href="http://en.wikipedia.org/wiki/Insertion%5Fsort" rel="nofollow">Insertion sort</a> for this, you can read various good articles about this on both wikis and other places. I like the pasted link though. Look at it and try to understand the concept.</p> <p>If you want to sort after it is inserted, i.e. on random times, well then you can just implement a sorting algororithm different than insertion sort maybe, <a href="http://en.wikipedia.org/wiki/Bubble%5Fsort" rel="nofollow">bubblesort</a> or maybe <a href="http://sv.wikipedia.org/wiki/Quicksort" rel="nofollow">quicksort</a>, I would avoid bubblesort though, it's a lot slower! But easier to gasp the mind around.</p> <p><strong>Random Access</strong></p> <p>Random is always something thats being discusses around so have a read about how to perform good randomization and you will be on your way, if you have a linked list and have a "getAt"-method, you could just randomize an index between 0 and n and get the item at that index.</p> http://stackoverflow.com/questions/1650275/codeigniter-image-uploading-mysql/1650388#1650388 1 Answer by Filip Ekberg for codeigniter image uploading mysql Filip Ekberg 2009-10-30T15:10:59Z 2009-10-30T15:10:59Z <p>You can read <a href="http://www.phpriot.com/articles/images-in-mysql" rel="nofollow">this great article called Storing Images in Mysql</a>.</p> <blockquote> <p>The article covers the following:</p> <ul> <li>Isn’t this a bad idea?</li> <li>What is a BLOB?</li> <li>Creating an image table</li> <li>The upload form</li> <li>Uploading the image</li> <li>The upload() function</li> <li>Display an image from the database</li> <li>Displaying all the information</li> </ul> </blockquote> <p>But not to leave you empty handed, look into <a href="http://dev.mysql.com/doc/refman/5.0/en/blob.html" rel="nofollow">Blob</a>, it's a data-type for colums in MySQL ( and various other dbms ). This will let you store data such as Images and other binary file-types.</p> <p>The idea of storing files and images in the database is in general the same as storing them on the filesystem, the layer in-between upload and having the actual file is just different.</p> <p>You cannot just set your upload-path and hope everything is solved, you need to get some dirt on your hands aswell!</p> http://stackoverflow.com/questions/1642782/data-binding-inside-another-data-bound-control-depending-on-the-current-item 0 Data Binding inside another Data Bound Control - Depending on the current item Filip Ekberg 2009-10-29T10:31:54Z 2009-10-29T23:08:15Z <p>Let's say that you have a List that looks like the following</p> <pre><code>public List&lt;Person&gt; Persons { get; set; } </code></pre> <p>You set an <code>ItemSource</code> on a <code>ListBox</code> to get the data from Persons and for each person in that list, you want to select other items, depending on the social security number.</p> <p>It is not an option to store the data in the Person, so the Data has to be fetched once the Person is processed in the list.</p> <p>This will end up looking somewhat like this om XAML</p> <pre><code>&lt;ListBox Name="myListBox"&gt; &lt;ListBox.ItemsPanel&gt; &lt;ItemsPanelTemplate&gt; &lt;StackPanel Orientation="Horizontal" /&gt; &lt;/ItemsPanelTemplate&gt; &lt;/ListBox.ItemsPanel&gt; &lt;ListBox.ItemTemplate&gt; &lt;DataTemplate&gt; &lt;StackPanel&gt; &lt;Label Content="{Binding Name}"/&gt; &lt;ComboBox ItemsSource="{Binding MyOtherData}" /&gt; &lt;/StackPanel&gt; &lt;/DataTemplate&gt; &lt;/ListBox.ItemTemplate&gt; &lt;/ListBox&gt; </code></pre> <p>Now, I want MyOtherData to be a Method which will return a set of data, depending on the current person, so I would just like to have a Method, takin an argument like the social security-number.</p> <p>How could this look?</p> <p>I am kind of new to the WPF - XAML stuff and if this is a design flaw, please suggest other solutions on that aswell.</p> http://stackoverflow.com/questions/1644665/programmatically-change-selected-listboxitem 0 Programmatically change selected ListBoxItem Filip Ekberg 2009-10-29T15:45:18Z 2009-10-29T15:52:46Z <p>Is it possible to change the selected ListBoxItem from Code-Behind in Windows Presentation Foundation?</p> <p>It's a quite simple task really, I have a Next and Previous button and they represent the next and previous item in the ListBox. But, <code>myListBox.items</code> are of course object represntations of what i stored in the ListBox.</p> <p>So, how would one fetch the ListBoxItem to set the IsSelected property?</p> http://stackoverflow.com/questions/1642832/how-can-i-get-digits-from-the-two-digits/1642878#1642878 5 Answer by Filip Ekberg for how can I get digits from the two digits? Filip Ekberg 2009-10-29T10:48:04Z 2009-10-29T11:00:20Z <p>You solve this with simple Mathematics.</p> <p>First of all, think about what 36 really is, if you break it down, its <code>3 * 10 + 6</code>, right?</p> <p>So the first digit in this case represents your times 10, which you will get by dividing by 10:</p> <pre><code>36 / 10 = 3.xxxxx </code></pre> <p>Now if you round that you get 3, which is the first digit.</p> <p>How about the rest of that? Well, for that you have to use something called <a href="http://en.wikipedia.org/wiki/Modulo%5Foperation" rel="nofollow">modulo</a>, which can be hard to understand some times. But it baslicy takes out the left overs of a integer division.</p> <p>IT bascily means that when you do <code>36 % 10</code> you get 6. Why is that you might think? Try open a calculator and push in the numbers: <code>36 / 10 = 3.6</code>, the left overs are 6!</p> <p><strong>Solution Code</strong></p> <pre><code>&lt;?php $theNumber = 36; $first = floor($theNumber / 10); $second = $theNumber % 10; ?&gt; </code></pre> <p>You can look into the function <a href="http://php.net/floor" rel="nofollow">floor here.</a></p> <p><strong>Alternative Solution for splitting strings</strong></p> <p>If you are looking for alternative ways to split strings in PHP you can use <a href="http://se2.php.net/manual/en/function.str-split.php" rel="nofollow">str_split</a>, this will provide you with an <a href="http://php.net/manual/en/language.types.array.php" rel="nofollow">array</a> of characters.</p> <p><strong>Example</strong></p> <pre><code>&lt;?php $myString = "36 is my number"; $splittedString = str_split($myString); echo $splittedString[0]; echo $splittedString[1]; ?&gt; </code></pre> <p>Just use that one as an <a href="http://php.net/manual/en/language.types.array.php" rel="nofollow">array</a></p> http://stackoverflow.com/questions/1637347/multiple-inheritance-polymorphism-and-newer-ways-of-programming 2 Multiple Inheritance, Polymorphism and newer ways of programming Filip Ekberg 2009-10-28T13:47:30Z 2009-10-28T14:34:23Z <p>Once and for all I want to clearify this somewhat subjective and argumentative area of programming.</p> <p><strong>Multiple inheritnace</strong></p> <p>In my current working enviornment I have C++ developers and C# developers which come from totaly different worlds and thus have different opinions on programming layout.</p> <p>Now being a C# and Java developer myself I've never come to the state where I actually needed to use Multiple inheritance, but C++ developers around me tend to through out comments like "That would be a perfect way to use Multiple inheritance"</p> <p>Of course I tend to dissagree.</p> <p><strong>My question</strong></p> <p>In what scenario would multiple inheritance be a better or easier way to solve a problem than use of Interfaces and just simple inheritance?</p> <p>And can you always solve the multiple inheritance benefits by using ie member variables instead?</p> http://stackoverflow.com/questions/1635910/salted-hash-algorithm/1635944#1635944 1 Answer by Filip Ekberg for Salted hash algorithm Filip Ekberg 2009-10-28T08:53:47Z 2009-10-28T08:53:47Z <p>You should first of all look into <a href="http://en.wikipedia.org/wiki/Salt%5F%28cryptography%29" rel="nofollow">what Salt is</a> then you could revise <a href="http://www.obviex.com/samples/hash.aspx" rel="nofollow">this greate code-chunk</a> to see how you use Cryptography with Salt in unfortunatly VB.</p> <p>Now that you are familiar with how Salt works and have some knowledge of the C# implementation. You see that it actually is possible to do some modifications with the salting. For instance the computeHash takes a <code>byte[]</code> for salting, maybe you could try </p> <pre><code>System.Text.ASCIIEncoding encoding=new System.Text.ASCIIEncoding(); encoding.GetBytes(str); </code></pre> <p>There is a world of possibilites for you, but to simply answer your question without spoiling the ending, yes, you can create a salt based on the username.</p> http://stackoverflow.com/questions/1635764/string-parsing-in-java-with-delimeter-tab-t-using-split/1635777#1635777 4 Answer by Filip Ekberg for String parsing in Java with delimeter tab "\t" using split Filip Ekberg 2009-10-28T08:09:11Z 2009-10-28T08:31:31Z <p><a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html" rel="nofollow">String.split</a> uses <a href="http://www.regular-expressions.info/" rel="nofollow">Regular Expressions</a>, also you don't need to allocate an extra array for your split.</p> <p><em>The split-method will give you a list.</em>, the problem is that you try to pre-define how many occurrences you have of a tab, but how would you Really know that? Try using the Scanner or StringTokenizer and just learn how splitting strings work.</p> <p><strong>Let me exaplin Why \t does not work</strong> and why you need <code>\\\\</code> to escape <code>\\</code>.</p> <p>Okay, so when you use Split, it actually takes a regex ( Regular Expression ) and in regular expression you want to define what Character to split by, and if you write \t that actually doesn't mean <code>\t</code> and what you WANT to split by is <code>\t</code>, right? So, by just writing <code>\t</code> you tell your regex-processor that "Hey split by the character that is escaped t" <strong>NOT</strong> "Hey split by all characters looking like <code>\t</code>". Notice the difference? Using \ means to escape something. And <code>\</code> in regex means something Totaly different than what you think.</p> <p>So this is why you need to use this <strong>Solution</strong>:</p> <pre><code>\\t </code></pre> <p>To tell the regex processor to look for \t. Okay, so why would you need two of em? Well, the first \ escapes the second, which means it will look like this: \t when you are processing the text!</p> <p>Now let's say that you are looking to slipt \</p> <p>Well then you would be left with \\ but see, that doesnt Work! because \ will try to escape the previous char! That is why you want the Output to be \\ and therefore you need to have \\\\.</p> <p>I really hope the examples above helps you understand why your solution doesn't work and how to conquer other ones!</p> <p>Now, I've given you this <a href="http://stackoverflow.com/questions/1630092/token-parsing-in-java/1630110#1630110">answer</a> before, maybe you should start looking at them now.</p> <p><strong>OTHER METHODS</strong></p> <p><strong>StringTokenizer</strong></p> <p>You should look into the <a href="http://java.sun.com/j2se/1.4.2/docs/api/java/lang/String.html" rel="nofollow">StringTokenizer</a>, it's a very handy tool for this types of work.</p> <p><strong>Example</strong></p> <pre><code> StringTokenizer st = new StringTokenizer("this is a test"); while (st.hasMoreTokens()) { System.out.println(st.nextToken()); } </code></pre> <p>This will putput</p> <pre><code> this is a test </code></pre> <p>You use the Second Constructor for StringTokenizer to set the delimiter:</p> <p><code>StringTokenizer(String str, String delim)</code> </p> <p><strong>Scanner</strong></p> <p>You could also use a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/util/Scanner.html" rel="nofollow">Scanner</a> as one of the commentators said this could look somewhat like this</p> <p><strong>Example</strong></p> <pre><code> String input = "1 fish 2 fish red fish blue fish"; Scanner s = new Scanner(input).useDelimiter("\\s*fish\\s*"); System.out.println(s.nextInt()); System.out.println(s.nextInt()); System.out.println(s.next()); System.out.println(s.next()); s.close(); </code></pre> <p>The output would be </p> <pre><code> 1 2 red blue </code></pre> <p>Meaning that it will cut out the word "fish" and give you the rest, using "fish" as the delimiter.</p> <p><a href="http://www.regular-expressions.info/" rel="nofollow"><em>examples taken from the Java API</em></a></p> http://stackoverflow.com/questions/201699/sharing-asp-net-session-cookies-with-a-java-applet/656465#656465 Comment by Filip Ekberg on Sharing ASP.NET session cookies with a Java applet Filip Ekberg 2009-12-09T08:16:33Z 2009-12-09T08:16:33Z This changes the scenario and my answer still applies to your question. You might be confusing sessions with cookies.. http://stackoverflow.com/questions/1599892/facebook-iframe/1600023#1600023 Comment by Filip Ekberg on Facebook-IFrame Filip Ekberg 2009-12-09T08:13:30Z 2009-12-09T08:13:30Z Why was this downvoted? http://stackoverflow.com/questions/1859061/how-can-i-simulate-ctrlc-in-c/1859076#1859076 Comment by Filip Ekberg on how can i simulate CTRL+C in C# Filip Ekberg 2009-12-07T12:58:50Z 2009-12-07T12:58:50Z And this was downvoted why? http://stackoverflow.com/questions/1809041/wpf-javascript Comment by Filip Ekberg on WPF + JavaScript Filip Ekberg 2009-11-27T14:42:19Z 2009-11-27T14:42:19Z What?... Could you evaluate that a bit more? http://stackoverflow.com/questions/1756954/using-rendertargetbitmap-on-windowsformshost/1756976#1756976 Comment by Filip Ekberg on Using RenderTargetBitmap on WindowsFormsHost Filip Ekberg 2009-11-19T08:12:04Z 2009-11-19T08:12:04Z Thanks, just a thought though, is GetWindowRectangle also extrenally defined? http://stackoverflow.com/questions/1756954/using-rendertargetbitmap-on-windowsformshost/1757468#1757468 Comment by Filip Ekberg on Using RenderTargetBitmap on WindowsFormsHost Filip Ekberg 2009-11-19T08:00:35Z 2009-11-19T08:00:35Z Awesome.. However! This &quot;only&quot; caputes what you see, it doesn't capture all the content ( if you have a scrollbars ). Is it possible to say something like &quot;Render the whole control and skip the scrollies&quot; ? http://stackoverflow.com/questions/1756092/binding-isenabled-and-other-properties-to-public-properties-does-it-work-like-de/1761424#1761424 Comment by Filip Ekberg on Binding IsEnabled and other Properties to Public Properties, does it work like Dependency Properties? Filip Ekberg 2009-11-19T07:43:25Z 2009-11-19T07:43:25Z This makes everything argumentative, if you were to add a solution to your Answer it would be very good. I get your point and I guess that I've just not seen it from that perspective before. Thanks. http://stackoverflow.com/questions/1756954/using-rendertargetbitmap-on-windowsformshost/1756976#1756976 Comment by Filip Ekberg on Using RenderTargetBitmap on WindowsFormsHost Filip Ekberg 2009-11-18T15:58:14Z 2009-11-18T15:58:14Z Could you provide an example on how you use the function: public static Bitmap Capture(IntPtr hwnd), in WPF? http://stackoverflow.com/questions/1756092/binding-isenabled-and-other-properties-to-public-properties-does-it-work-like-de Comment by Filip Ekberg on Binding IsEnabled and other Properties to Public Properties, does it work like Dependency Properties? Filip Ekberg 2009-11-18T14:43:48Z 2009-11-18T14:43:48Z Thanks for the link! http://stackoverflow.com/questions/1756092/binding-isenabled-and-other-properties-to-public-properties-does-it-work-like-de/1756169#1756169 Comment by Filip Ekberg on Binding IsEnabled and other Properties to Public Properties, does it work like Dependency Properties? Filip Ekberg 2009-11-18T14:34:27Z 2009-11-18T14:34:27Z Sorry if it was a bit unclear, hope it's a bit clearer now. I just feel that DP -&gt; DP is a &quot;Bad&quot; design, i rahter use the INotifyPropertyChanged. http://stackoverflow.com/questions/1756092/binding-isenabled-and-other-properties-to-public-properties-does-it-work-like-de/1756169#1756169 Comment by Filip Ekberg on Binding IsEnabled and other Properties to Public Properties, does it work like Dependency Properties? Filip Ekberg 2009-11-18T14:21:36Z 2009-11-18T14:21:36Z No it's not, And I don't want it to be either. As I've written, I want to bind a DependencyProperty ( IsEnabled ) to a Code Behind property and when I trigger the CLR Property, I want the DP to be Notified. Please read my question again. http://stackoverflow.com/questions/1756092/binding-isenabled-and-other-properties-to-public-properties-does-it-work-like-de/1756169#1756169 Comment by Filip Ekberg on Binding IsEnabled and other Properties to Public Properties, does it work like Dependency Properties? Filip Ekberg 2009-11-18T14:13:41Z 2009-11-18T14:13:41Z I know how to create DPs and how to use them, my question was why it didn't behave like ordernary DPs when you change the values. http://stackoverflow.com/questions/1756092/binding-isenabled-and-other-properties-to-public-properties-does-it-work-like-de/1756108#1756108 Comment by Filip Ekberg on Binding IsEnabled and other Properties to Public Properties, does it work like Dependency Properties? Filip Ekberg 2009-11-18T13:50:23Z 2009-11-18T13:50:23Z Ah.. interesting.. http://stackoverflow.com/questions/1754661/wrapping-controls-from-system-windows-forms-in-system-windows-uielement/1754672#1754672 Comment by Filip Ekberg on Wrapping Controls from System.Windows.Forms in System.Windows.UIElement Filip Ekberg 2009-11-18T09:19:43Z 2009-11-18T09:19:43Z I know how to google. If you can read between my lines you see that I might want some context and thoughts around the subject from people that had the same issue and if it's even worth the effort. If you don't know the answer or can't properly write a googled answer, just stay away from the topic. http://stackoverflow.com/questions/1728257/how-could-i-create-a-program-for-iphone-with-c/1728262#1728262 Comment by Filip Ekberg on how could i create a program for iPhone with c#? Filip Ekberg 2009-11-13T09:56:30Z 2009-11-13T09:56:30Z Awesome.. You better cover this in your new book! ;)