User Drahcir - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T17:27:41Z http://stackoverflow.com/feeds/user/45471 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1666685/android-stretch-columns-evenly-in-a-tablelayout 0 Android Stretch columns evenly in a TableLayout Drahcir 2009-11-03T11:10:43Z 2009-11-03T23:42:24Z <p>I am displaying a table of values in my android application, and would like the columns to be distributed evenly in terms of size , instead of sizing according to content. </p> <p>Been playing around with stretchColumns but couldn't manage to figure out the right combination, Any Ideas?</p> http://stackoverflow.com/questions/814627/silverlight-webservice-the-remote-server-returned-an-error-notfound 0 Silverlight Webservice "The remote server returned an error: NotFound" Drahcir 2009-05-02T10:46:13Z 2009-11-03T07:32:06Z <p>I have a Silverlight application that retreives a list of serializable classes. In these classes there are other serializable classes some of which are also in a list. The thing is everything works fine until I fill one of the list of serializable classes that causes the silverlight application to throw the exception "The remote server returned an error: NotFound"</p> <p>This is the code that fills the class (Don't be Intimidated by the large amount of code it's just filling the class with information):</p> <pre><code> private SCharacter getSCharacter(Character userCharacter) { var iqcb = userCharacter.CharacterBodies; var iqcs = userCharacter.CharacterStats; var iqgs = userCharacter.CharacterSettings; var iqcp = userCharacter.CharacterPoints; var iqcproj = userCharacter.CharacterProjectiles; var currChar = new SCharacter { characterID = userCharacter.characterID, characterName = userCharacter.characterName, characterClassID = userCharacter.characterClassID, userUsername = userCharacter.userUsername }; foreach (var cb in iqcb) { var scb = new SCharacterBody(); scb.body.bodyId = cb.bodyId; scb.body.bodyName = cb.Body.bodyName; scb.bodyPart.bodyPartId = cb.BodyPart.bodyPartId; scb.bodyPart.bodyPartName = cb.BodyPart.bodyPartName; currChar.characterBodyList.Add(scb); } foreach (var cs in iqcs) { var scs = new SCharacterStat { characterID = cs.characterID, statId = cs.statId, characterStatId = cs.characterStatId, statName = cs.Stat.statName, statValue = cs.statValue }; currChar.characterStatList.Add(scs); } foreach (var igs in iqgs) { var scs = new SCharacterSetting { characterID = igs.characterID, modifierId = igs.GameSetting.modifierId, modifierType = igs.GameSetting.Modifier.modifierType, characterSettingId = igs.characterSettingId, settingDescription = igs.GameSetting.settingDescription, settingName = igs.GameSetting.settingName, settingValue = igs.GameSetting.settingValue }; var gss = igs.GameSetting.Stat; scs.stat.statId = gss.statId; scs.stat.statName = gss.statName; currChar.characterSettingList.Add(scs); } foreach (var cp in iqcp) { var scp = new SCharacterPoint { characterID = cp.characterID, characterPointsId = cp.characterPointsId, pointsId = cp.pointsId, pointsName = cp.Point.pointsName, pointsValue = cp.pointsValue }; currChar.characterPointList.Add(scp); } foreach (var cp in iqcproj) { var scp = new SCharacterProjectile { characterId = cp.characterId, characterProjectileId = cp.characterProjectileId, particleId = cp.Projectile.particleId, projectileHeight = cp.Projectile.projectileHeight, projectileWidth= cp.Projectile.projectileWidth, damageId =cp.Projectile.damageId, damageDuration = cp.Projectile.Damage.damageDuration, damageValue = cp.Projectile.Damage.damageValue, projectileName = cp.Projectile.projectileName }; scp.force.forceName = cp.Projectile.forceName; scp.force.impulseX = (float)cp.Projectile.Force.impulseX; scp.force.impulseY = (float)cp.Projectile.Force.impulseY; scp.force.torque = (float)cp.Projectile.Force.torque; scp.projectileParticle.particleId = cp.Projectile.particleId; scp.projectileParticle.particleName = cp.Projectile.Particle.particleName; foreach (var psv in cp.Projectile.Particle.ParticleSettingValues) { var spsv = new SParticleSettingValue(); spsv.particleId = psv.particleId; spsv.particleSettingID = psv.particleSettingID; spsv.particleSettingName = psv.ParticleSetting.particleSettingName; spsv.particleSettingValue = psv.particleSettingValue1; spsv.particleSettingValuesID = psv.particleSettingValueID; scp.projectileParticle.particleSettingList.Add(spsv); } foreach (var pc in cp.Projectile.Particle.ParticleColours) { var spc = new SParticleColour(); spc.colourHex = pc.colourHex; spc.particleColourId = pc.particleColourId; spc.particleId = pc.particleId; scp.projectileParticle.particleColourList.Add(spc); } currChar.projectileList.Add(scp); } return currChar; } </code></pre> <p>In the last 3 lines of code there is <code>currChar.projectileList.Add(scp);</code> , if I remove that line of code everything works fine. What I thought might be causing the problem is ciruclar references but I checked the classes and can't seem to find any. If needed I'll paste the code of the classes that have to do with <code>projectileList</code></p> <p>Update: Tried to debug the webservice itself and apparently there is a problem with the xml serialization, you can find the question <a href="http://stackoverflow.com/questions/814792/c-system-invalidoperationexception-the-type-foo-was-not-expected" rel="nofollow">here</a> </p> http://stackoverflow.com/questions/843179/silverlight-wpf-unable-to-bind-listbox 2 Silverlight/WPF unable to bind ListBox Drahcir 2009-05-09T12:02:01Z 2009-11-03T07:26:27Z <p>I have a listbox in my silverlight usercontrol and I am filling it with a generic list of a private class, for some reason it is not being databound. </p> <p>Here is the code :</p> <pre><code>class userClient { public int characterID { get; set; } public string characterName { get; set; } } List&lt;userClient&gt; userClientList; // = new List&lt;userClient&gt;(); void _client_UserList(object sender, DataTransferEventArgs e) { this.Dispatcher.BeginInvoke(() =&gt; { userClientList = new List&lt;userClient&gt;(); foreach (string user in e.DataTransfer.Data) { var userDetailsArray = user.Split('+'); userClient uc = new userClient { characterID = Convert.ToInt32(userDetailsArray[0]), characterName = userDetailsArray[1] }; userClientList.Add(uc); } chatUsers.ItemsSource = userClientList; chatUsers.DisplayMemberPath = "characterName"; }); } </code></pre> <p>I checked the generic list <code>userClientList</code> and it is being filled up so there is no problems there. </p> <p>This is the XAML of the listbox:</p> <pre><code>&lt;ListBox x:Name="chatUsers" Grid.Row="0" Grid.Column="1" Margin="2 2 2 2" /&gt; </code></pre> http://stackoverflow.com/questions/1654112/android-application-force-closes-when-i-try-to-implement-a-scrollview 0 Android: Application force closes when I try to implement a scrollview Drahcir 2009-10-31T11:20:03Z 2009-10-31T18:00:30Z <p>I have a simple android application, but when I try to implement a scrollview in the xml of the layout the application force closes each time I try to run it on the emulator.</p> <p>Here is the xml:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;ScrollView android:id="@+id/egyptianScroll" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content"&gt; &lt;TableLayout android:id="@+id/egyptianTable" xmlns:android="http://schemas.android.com/apk/res/android" android:layout_height="wrap_content" android:layout_width="wrap_content" android:stretchColumns="*" android:background="#ff0000"&gt; &lt;TableRow&gt; &lt;TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Product" android:background="#00ff00" android:layout_margin="2dip" /&gt; &lt;TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="x" android:background="#00ff00" android:layout_margin="2dip" /&gt; &lt;TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="y" android:background="#00ff00" android:layout_margin="2dip" /&gt; &lt;/TableRow&gt; &lt;/TableLayout&gt; &lt;/ScrollView&gt; &lt;TextView android:id="@+id/result" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text=""/&gt; &lt;LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content"&gt; &lt;TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="x:" /&gt; &lt;EditText android:id="@+id/x" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:numeric="integer"/&gt; &lt;TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="y:" /&gt; &lt;EditText android:id="@+id/y" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:numeric="integer"/&gt; &lt;/LinearLayout&gt; &lt;LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content"&gt; &lt;Button android:id="@+id/multiplication" android:text="Multiply" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; &lt;Button android:id="@+id/powers" android:text="Powers" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; </code></pre> <p>Edit: I moved the ScrollView to encapsulate the other views and it worked fine, it cannot be put inside other views?</p> http://stackoverflow.com/questions/1621513/android-application-force-closing-as-soon-as-it-opens 0 Android: Application force closing as soon as it opens Drahcir 2009-10-25T17:40:53Z 2009-10-29T20:41:05Z <p>I'm tinkering around with android on Netbeans and did a simple math application. Somewhere along the way the application suddenly force closes as soon as it opens(On the emulator)... I tried commenting all the code in the class that hosts the main activity but to no avail. Since it doesn't give me a specific error message, I feel kind of lost. </p> <p>Any reason why this is happening?</p> <p>Here is the layout file as requested:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;TextView android:id="@+id/result" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text=""/&gt; &lt;LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content"&gt; &lt;TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/number" /&gt; &lt;EditText android:id="@+id/n" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:numeric="decimal"/&gt; &lt;Button android:id="@+id/calc" android:text="@string/calculate" android:layout_width="wrap_content" android:layout_height="wrap_content" /&gt; &lt;/LinearLayout&gt; &lt;/LinearLayout&gt; </code></pre> <p>As suggested I checked logcat and this is the list of errors</p> <pre><code>E/AndroidRuntime( 881): Uncaught handler: thread main exiting due to uncaught exception E/AndroidRuntime( 881): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{org.me.mathdroid/org.me.mathdroid.MainActivity}: java.lang.NullPointerException E/AndroidRuntime( 881): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2324) E/AndroidRuntime( 881): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2417) E/AndroidRuntime( 881): at android.app.ActivityThread.access$2100(ActivityThread.java:116) E/AndroidRuntime( 881): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1794) E/AndroidRuntime( 881): at android.os.Handler.dispatchMessage(Handler.java:99) E/AndroidRuntime( 881): at android.os.Looper.loop(Looper.java:123) E/AndroidRuntime( 881): at android.app.ActivityThread.main(ActivityThread.java:4203) E/AndroidRuntime( 881): at java.lang.reflect.Method.invokeNative(NativeMethod) E/AndroidRuntime( 881): at java.lang.reflect.Method.invoke(Method.java:521) E/AndroidRuntime( 881): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:791) E/AndroidRuntime( 881): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:549) E/AndroidRuntime( 881): at dalvik.system.NativeStart.main(Native Method) E/AndroidRuntime( 881): Caused by: java.lang.NullPointerException E/AndroidRuntime( 881): at android.app.Activity.findViewById(Activity.java:1610) E/AndroidRuntime( 881): at org.me.mathdroid.MainActivity.&lt;init&gt;(MainActivity.java:22) E/AndroidRuntime( 881): at java.lang.Class.newInstanceImpl(Native Method) E/AndroidRuntime( 881): at java.lang.Class.newInstance(Class.java:1472) E/AndroidRuntime( 881): at android.app.Instrumentation.newActivity(Instrumentation.java:1097) E/AndroidRuntime( 881): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2316) E/AndroidRuntime( 881): ... 11 more </code></pre> http://stackoverflow.com/questions/1621513/android-application-force-closing-as-soon-as-it-opens/1646417#1646417 0 Answer by Drahcir for Android: Application force closing as soon as it opens Drahcir 2009-10-29T20:41:05Z 2009-10-29T20:41:05Z <p>I have figured out what the problem was, in the main activity I was setting an Edittext and TextView objects with the ones in the R class, before setting the contentView. Sorry for the trouble.</p> http://stackoverflow.com/questions/869852/silverlight-specific-image-shifting-to-the-right 0 Silverlight specific Image shifting to the right Drahcir 2009-05-15T17:10:30Z 2009-10-26T10:00:04Z <p>I am generating a set images to form a human body so that I can use for a physics engine. The images generated are in a specific user control in where I set the dimentions and co-ordinates of each image. That usercontrol is then loaded in another user control but for some reason when the images are loaded, one specific image which I named (rightBicep) is shifting to the right. Here is a screenshot :</p> <p><img src="http://img193.imageshack.us/img193/592/imageshift.jpg" alt="alt text" /></p> <p>I illustrated the positions of the images with dotted lines, the green dotted line is refering to where the image should be located, and the red dotted line is where the image is being shown.</p> <p>The weird thing is the image beneath it (called rightForearm) take's it's LeftPosition from it, and when during debugging they have the exact same leftProperty value. Here's the syntax :</p> <pre><code> public void generateRightBicep(string imageUrl) { rightBicep = new Image(); rightBicep.Name = CharacterName + "rightbicep"; Uri imageUri = new Uri(imageUrl, UriKind.Relative); LayoutRoot.Children.Add(rightBicep); rightBicep.Source = new BitmapImage(imageUri); rightBicep.ImageOpened += new EventHandler&lt;RoutedEventArgs&gt;(bodyPart_ImageOpened); } public void rightBicepLoaded() { var bi = waitTillImageLoad(rightBicep.Name); rightBicep.Height = elbowToArmpit + (2 * palm); rightBicep.Width = ratio(bi.PixelHeight, bi.PixelHeight, rightBicep.Height); // to be determined Vector2 topVector; topVector.X = (float)(Convert.ToDouble(torso.GetValue(Canvas.LeftProperty)) - palm); topVector.Y = (float)(Convert.ToDouble(neck.GetValue(Canvas.TopProperty)) + neck.Height); if (!faceRight) { perspectiveVectorHeight(ref topVector, ref rightBicep, torso.Width); rightBicep.Width = ratio(bi.PixelHeight, bi.PixelHeight, rightBicep.Height); } rightBicep.SetValue(Canvas.LeftProperty, Convert.ToDouble(topVector.X)); rightBicep.SetValue(Canvas.TopProperty, Convert.ToDouble(topVector.Y)); rightBicep.SetValue(Canvas.ZIndexProperty, rightBicepZindex); generateRightShoulder(); } public void generateRightForearm(string imageUrl) { rightForearm = new Image(); rightForearm.Name = CharacterName + "rightforearm"; Uri imageUri = new Uri(imageUrl, UriKind.Relative); LayoutRoot.Children.Add(rightForearm); rightForearm.Source = new BitmapImage(imageUri); rightForearm.ImageOpened += new EventHandler&lt;RoutedEventArgs&gt;(bodyPart_ImageOpened); } public void rightForearmLoaded() { var bi = waitTillImageLoad(rightForearm.Name); rightForearm.Height = (elbowToHandTip - handLength) + palm; rightForearm.Width = ratio(bi.PixelHeight, bi.PixelWidth, rightForearm.Height); Vector2 topVector; if (faceRight) { topVector.X = (float)(Convert.ToDouble(rightBicep.GetValue(Canvas.LeftProperty))); topVector.Y = (float)(Convert.ToDouble(rightBicep.GetValue(Canvas.TopProperty)) + rightBicep.Height - palm); } else { topVector.X = (float)(Convert.ToDouble(leftBicep.GetValue(Canvas.LeftProperty))); topVector.Y = (float)(Convert.ToDouble(leftBicep.GetValue(Canvas.TopProperty)) + leftBicep.Height - palm); perspectiveVectorHeight(ref topVector, ref rightForearm, torso.Width); rightForearm.Width = ratio(bi.PixelHeight, bi.PixelWidth, rightForearm.Height); } rightForearm.SetValue(Canvas.LeftProperty, Convert.ToDouble(topVector.X)); rightForearm.SetValue(Canvas.TopProperty, Convert.ToDouble(topVector.Y)); rightForearm.SetValue(Canvas.ZIndexProperty, rightForearmZIndex); generateRightElbow(); } </code></pre> <p>Now all the values I am adding together are a group of doubles I preset, and the property faceRight is to dertmine if the human body is facing right or left to determine where the positions of the body parts (since if the right hand looks on the left hand side when the human body turns the other way).</p> <p>If you notice the rightforearm is taking the leftproperty of the rightbicep, so technically it should display direcrly underneath which it isn't. I also debugged the user control and both have the left property of -3.</p> <p>PS. I call the methods <code>rightbicepLoaded</code> and <code>rightforearmLoaded</code> when an event is called when all the imageOpened events all have been triggered.</p> <p>Any ideas on why this is happening?</p> http://stackoverflow.com/questions/1237698/executing-events-sequentially-in-jquery 0 Executing Events Sequentially in jQuery Drahcir 2009-08-06T08:48:26Z 2009-10-21T10:00:03Z <p>I have a small piece of jquery, where I am hiding then showing a div. After both events are completed, I execute a few lines of code which is like so:</p> <pre><code> $(".subFields").hide("slide", { direction: "up" }, 250, function() { $(".subFields").show("slide", { direction: "up" }, 250, function() { container.addClass("formfield"); container.removeClass("formfieldCurrent"); fillOpenFields($(this).val()); }); }); </code></pre> <p>Problem is the code in the <code>show</code> event is entereing an infinite loop for some reason, any ideas.</p> http://stackoverflow.com/questions/562141/how-can-i-manipulate-a-ragdoll-made-with-farseer-physics-in-silverlight 2 How can I manipulate a RagDoll made with farseer physics in Silverlight? Drahcir 2009-02-18T17:51:13Z 2009-10-19T01:22:16Z <p>I made a ragdoll similar to the one in this <a href="http://www.spritehand.com/silverlight/2.0/physicshelper/PhysicsHelperDemos.htm#" rel="nofollow">demo</a>. This rag doll will be used for a turn based rpg game where the physics will be used for animations such as character taking damage, dying, falling down, etc.</p> <p>What I am pondering at the moment is as how should go about this, should I stick the rag doll by the head to the background (leaving the body dangling) and basically throw around its body parts around as to simulate punching etc (as shown in Fig 1), or stiffen the joints and statically rotate and move the body parts for the actions taken(as shown in Fig 2), and when it comes to the character dying(or a similar action) just loosen the joints and let the rag doll fall down. Or is there a better way to go about doing this?</p> <p>I am new to farseer physics and don't even know if what I mentioned is even possible or overwhelmingly hard to do.</p> <p><img src="http://img3.imageshack.us/img3/8681/charactermovementrg5.jpg" alt="Illustration" /></p> <p>Please note that the red line in the figures represents the character's arm</p> http://stackoverflow.com/questions/375164/unable-to-load-xml-data-in-jqgrid 0 Unable to load XML data in jqGrid Drahcir 2008-12-17T16:37:28Z 2009-09-30T21:29:22Z <p>I am using jqGrid of which I downloaded from here <a href="http://www.trirand.com/blog" rel="nofollow">http://www.trirand.com/blog</a> . I followed the tutorial word by word to test out the grid. Now the alterations I did is that the page from which the grid gets the data is in asp.net instead of php. </p> <p>The problem is that the grid loads fine and there is a response with the xml data that I generated but for some reason isnt being loaded on the grid itself (ie im left with a blank grid.</p> <p>The code that i used is </p> <pre><code>&lt;link rel="stylesheet" type="text/css" media="screen" href="js/themes/basic/grid.css" /&gt; &lt;link rel="stylesheet" type="text/css" media="screen" href="js/themes/jqModal.css" /&gt; &lt;script src="js/jquery.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="js/jquery.jqGrid.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="js/js/jqModal.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="js/js/jqDnR.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script type="text/javascript"&gt; jQuery(document).ready(function(){ jQuery("#list").jqGrid({ url:'nrGetjqgridXML.aspx', datatype: "xml", colNames:['Dummy ID','Dummy String','Dummy Int','Dummy Char','Dummy Bool','Dummy Date','Dummy Float'],colModel :[{name:'dummyID', index:'dummyID' , width:100, sortable:true},{name:'dummyString', index:'dummyString' , width:100, sortable:true},{name:'dummyInt', index:'dummyInt' , width:100, sortable:true},{name:'dummyChar', index:'dummyChar' , width:100, sortable:true},{name:'dummyBool', index:'dummyBool' , width:100, sortable:true},{name:'dummyDate', index:'dummyDate' , width:100, sortable:true},{name:'dummyFloat', index:'dummyFloat' , width:100, sortable:true}], rowNum: 10, rowList:[10,20,30], imgpath: 'js/themes/basic/images', pager: jQuery('#pager'), sortname: 'dummyid', viewrecords: true, sortorder: "desc", caption: 'Test Grid' }).navGrid('#pager', {edit:false , add:false, del:false}); }); &lt;/script&gt; </code></pre> <p>and this is the response of nrGetjqgridXML :</p> <pre><code>&lt;xml version='1.0' encoding = 'utf-8'?&gt; &lt;rows&gt; &lt;page&gt;1&lt;/page&gt; &lt;total&gt;2&lt;/total&gt; &lt;records&gt;15&lt;/records &gt; &lt;row id = '15'&gt; &lt;cell&gt;15&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test15]]&gt;&lt;/cell&gt; &lt;cell&gt;15&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[o]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[False]]&gt;&lt;/cell&gt; &lt;cell&gt;15/03/2005 00:00:00&lt;/cell&gt; &lt;cell&gt;15.15&lt;/cell&gt; &lt;/row&gt; &lt;row id = '14'&gt; &lt;cell&gt;14&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test14]]&gt;&lt;/cell&gt; &lt;cell&gt;14&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[n]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[False]]&gt;&lt;/cell&gt; &lt;cell&gt;14/02/2004 00:00:00&lt;/cell&gt; &lt;cell&gt;14.14&lt;/cell&gt; &lt;/row&gt;&lt;row id = '13'&gt; &lt;cell&gt;13&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test13]]&gt;&lt;/cell&gt; &lt;cell&gt;13&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[m]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[True]]&gt;&lt;/cell&gt; &lt;cell&gt;13/01/2003 00:00:00&lt;/cell&gt; &lt;cell&gt;13.13&lt;/cell&gt; &lt;/row&gt; &lt;row id = '12'&gt; &lt;cell&gt;12&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test12]]&gt;&lt;/cell&gt; &lt;cell&gt;12&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[l]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[False]]&gt;&lt;/cell&gt; &lt;cell&gt;12/12/2002 00:00:00&lt;/cell&gt; &lt;cell&gt;12.12&lt;/cell&gt; &lt;/row&gt;&lt;row id = '11'&gt; &lt;cell&gt;11&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test11]]&gt;&lt;/cell&gt; &lt;cell&gt;11&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[k]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[True]]&gt;&lt;/cell&gt; &lt;cell&gt;11/11/2001 00:00:00&lt;/cell&gt; &lt;cell&gt;11.11&lt;/cell&gt; &lt;/row&gt; &lt;row id = '10'&gt; &lt;cell&gt;10&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test10]]&gt;&lt;/cell&gt; &lt;cell&gt;10&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[j]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[False]]&gt;&lt;/cell&gt; &lt;cell&gt;10/10/2000 00:00:00&lt;/cell&gt; &lt;cell&gt;10.1&lt;/cell&gt; &lt;/row&gt; &lt;row id = '9'&gt; &lt;cell&gt;9&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test9]]&gt;&lt;/cell&gt; &lt;cell&gt;9&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[i]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[False]]&gt;&lt;/cell&gt; &lt;cell&gt;09/09/1999 00:00:00&lt;/cell&gt; &lt;cell&gt;9.9&lt;/cell&gt; &lt;/row&gt; &lt;row id = '8'&gt; &lt;cell&gt;8&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test8]]&gt;&lt;/cell&gt; &lt;cell&gt;8&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[h]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[False]]&gt;&lt;/cell&gt; &lt;cell&gt;08/08/1998 00:00:00&lt;/cell&gt; &lt;cell&gt;8.8&lt;/cell&gt; &lt;/row&gt; &lt;row id = '7'&gt; &lt;cell&gt;7&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test7]]&gt;&lt;/cell&gt; &lt;cell&gt;7&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[g]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[True]]&gt;&lt;/cell&gt; &lt;cell&gt;07/07/1997 00:00:00&lt;/cell&gt; &lt;cell&gt;7.7&lt;/cell&gt; &lt;/row&gt; &lt;row id = '6'&gt; &lt;cell&gt;6&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test6]]&gt;&lt;/cell&gt; &lt;cell&gt;6&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[f]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[True]]&gt;&lt;/cell&gt; &lt;cell&gt;06/06/1996 00:00:00&lt;/cell&gt; &lt;cell&gt;6.6&lt;/cell&gt; &lt;/row&gt; &lt;row id = '5'&gt; &lt;cell&gt;5&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test5]]&gt;&lt;/cell&gt; &lt;cell&gt;5&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[e]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[False]]&gt;&lt;/cell&gt; &lt;cell&gt;05/05/1995 00:00:00&lt;/cell&gt; &lt;cell&gt;5.5&lt;/cell&gt; &lt;/row&gt; &lt;row id = '4'&gt; &lt;cell&gt;4&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test4]]&gt;&lt;/cell&gt; &lt;cell&gt;4&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[d]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[True]]&gt;&lt;/cell&gt; &lt;cell&gt;04/04/1994 00:00:00&lt;/cell&gt; &lt;cell&gt;4.4&lt;/cell&gt; &lt;/row&gt; &lt;row id = '3'&gt; &lt;cell&gt;3&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test3]]&gt;&lt;/cell&gt; &lt;cell&gt;3&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[c]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[False]]&gt;&lt;/cell&gt; &lt;cell&gt;03/03/1993 00:00:00&lt;/cell&gt; &lt;cell&gt;3.3&lt;/cell&gt; &lt;/row&gt; &lt;row id = '2'&gt; &lt;cell&gt;2&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test2]]&gt;&lt;/cell&gt; &lt;cell&gt;2&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[b]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[False]]&gt;&lt;/cell&gt; &lt;cell&gt;02/02/1992 00:00:00&lt;/cell&gt; &lt;cell&gt;2.2&lt;/cell&gt; &lt;/row&gt; &lt;row id = '1'&gt; &lt;cell&gt;1&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[Test1]]&gt;&lt;/cell&gt; &lt;cell&gt;1&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[a]]&gt;&lt;/cell&gt; &lt;cell&gt;&lt;![CDATA[True]]&gt;&lt;/cell&gt; &lt;cell&gt;01/01/1991 00:00:00&lt;/cell&gt; &lt;cell&gt;1.1&lt;/cell&gt; &lt;/row&gt; &lt;/rows&gt; </code></pre> <p>This is how the grid is showing up : <img src="http://img132.imageshack.us/img132/6671/testgridol7.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/1326896/could-not-convert-javascript-argument-arg-0-nsresult-0x80570009-nserrorxpc 0 Could not convert JavaScript argument arg 0" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS Drahcir 2009-08-25T08:41:59Z 2009-09-30T10:32:12Z <p>I am trying to make this <a href="http://www.webdesignbeach.com/beachbar/ajax-fancy-captcha-jquery-plugin" rel="nofollow">captcha</a> jquery plugin to work. The a certain line of code is executed, the error pops up.</p> <p>This is the line of code that causes the error :</p> <pre><code>$(".ajax-fc-" + rand).draggable({ containment: '#ajax-fc-content' }); </code></pre> <p>What I am assuming is that there is some kind of conflict with the javascript reference, but can't determain what.</p> <p>These are the referenes that I am using</p> <pre><code>&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"&gt;&lt;/script&gt; &lt;script src="js/ui.core.js"&gt;&lt;/script&gt; &lt;script src="js/ui.draggable.js"&gt;&lt;/script&gt; &lt;script src="js/ui.droppable.js"&gt;&lt;/script&gt; &lt;script src="js/effects.core.js"&gt;&lt;/script&gt; &lt;script src="js/effects.slide.js"&gt;&lt;/script&gt; </code></pre> http://stackoverflow.com/questions/1326896/could-not-convert-javascript-argument-arg-0-nsresult-0x80570009-nserrorxpc/1497277#1497277 0 Answer by Drahcir for Could not convert JavaScript argument arg 0" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS Drahcir 2009-09-30T10:32:12Z 2009-09-30T10:32:12Z <p>As per RaYell's indirect suggestion the problem was i was returning the wrong value in the ajax response.</p> http://stackoverflow.com/questions/1473185/android-emulator-not-loading-on-netbeans 1 Android Emulator not loading on netbeans Drahcir 2009-09-24T17:49:50Z 2009-09-24T18:00:59Z <p>I just downloaded the <a href="http://developer.android.com/sdk/1.6%5Fr1/index.html" rel="nofollow">android</a> sdk from the adnroid site and followed <a href="http://wiki.netbeans.org/IntroAndroidDevNetBeans" rel="nofollow">this</a> tutorial to set it up on netbeans. Everything to seem to have installed fine but whenever i try to run the application this window pops up:</p> <p><img src="http://img80.imageshack.us/img80/4327/androidemulator.png" alt="alt text" /></p> <p>What I am assuming it asking me to choose the emulator, but it is not showing up on the list. Is there a reason why?</p> http://stackoverflow.com/questions/804672/silverlight-usercontrol-onload-event-when-generated-in-another-usercontrol-to-ap 0 Silverlight Usercontrol Onload Event when generated in another Usercontrol, to apply farseer physics Drahcir 2009-04-29T23:01:48Z 2009-09-18T06:00:02Z <p>Didn't know how to phrase the question better but basically I have a usercontrol that I dynamically add into another usercontrol. The child usercontrol has a set of images and basically I need to know if they have fully loaded inside the parent usercontrol since I need their dimentions for a method (not just height and width).</p> <p>Is there a type of event that can trigger when all the images in the child usercontrol have loaded in the parent?</p> <p>To further explain my scenario, I need this since I am using farseer physics engine for silverlight and it aquires the shape of the image to use for collision detection, and since when I try to turn the images into a physics object it would not find the shape since the image is still being generated on screen and therefore throws an exception.</p> <p>Update: This is what I have came up with so far</p> <pre><code>void currImg_ImageOpened(object sender, RoutedEventArgs e) { var ImagesLoaded = true; for (int i = 0; i &lt; ImageLoaded.Count-1; i++) { if (!ImageLoaded[i]) { ImagesLoaded = false; ImageLoaded[i] = true; break; } } if (ImagesLoaded) { addPuppetPhysics(pg.currPuppet); } } </code></pre> <p>Where <code>ImageLoaded</code> is a list of booleans, the method <code>addPuppetPhysics</code> applies the farseer physics to the usercontrol <code>pg.currPuppet</code> . Thing is the physics engine finds the first half of the images then doesn't find anymore (crashes on the same Image). If I merely load the usercontrol, then apply the physics with a button click, it works perfectly. </p> http://stackoverflow.com/questions/1433500/asp-net-add-control-cannot-get-inner-content-of-control-because-the-contents-a 0 ASP.Net Add Control "Cannot get inner content of [control] because the contents are not literal." Drahcir 2009-09-16T14:50:59Z 2009-09-16T16:04:00Z <p>I am currently trying to dynamically add HTML controls in my web form, but each time I insert a control in another control the error <code>Cannot get inner content of [control] because the contents are not literal</code> pops up(when trying to look at innerHtml or innerText) and cannot seem to find the reason why.</p> <p>Here is the code that I am using:</p> <pre><code>Dim newsList As New HtmlControls.HtmlGenericControl newsList.TagName = "ul" Dim i As Integer = 0 For Each newsDR As DataRow In newDS.Tables(0).Rows i += 1 Dim stri As String = i.ToString() Dim newsListItem As New HtmlControls.HtmlGenericControl newsListItem.TagName = "li" newsListItem.ID = "newsListItem" + stri Dim newsTitle As New HtmlControls.HtmlGenericControl newsTitle.TagName = "h1" newsTitle.ID = "newsTitle" + stri Dim newsAnchor As New HtmlControls.HtmlAnchor newsAnchor.ID = "newsAnchor" + stri newsAnchor.InnerHtml = newsDR("NewsTitle") newsAnchor.HRef = "#" newsTitle.Controls.Add(newsAnchor) Dim newsSummary As New HtmlControls.HtmlGenericControl newsSummary.TagName = "div" newsSummary.ID = "newsSummary" + stri newsSummary.InnerHtml = newsDR("NewsSummary") newsListItem.Controls.Add(newsTitle) newsListItem.Controls.Add(newsSummary) newsList.Controls.Add(newsListItem) Next </code></pre> http://stackoverflow.com/questions/1427775/javascript-storing-regex-in-a-variable 1 Javascript storing regex in a variable Drahcir 2009-09-15T15:08:20Z 2009-09-15T15:27:54Z <p>I have this line of code in javascript</p> <pre><code>var re = (http|ftp|https):\/\/[\w\-_]+(\.[\w\-_]+)+([\w\-\.,@?^=%&amp;amp;:/~\+#]*[\w\-\@?^=%&amp;amp;/~\+#])? </code></pre> <p>Usually I encapsulate the regex syntax with the <code>/</code> characters but since they are found within the regex it screws up the encapsulation. Is there another way how I can store it inside the variable?</p> <p>The current slashes that seem like escape characters are part of the regex, since I am using this in c# aswell and works perfectly</p> http://stackoverflow.com/questions/1356498/asp-net-debug-https-on-localhost 0 ASP.net debug https on localhost Drahcir 2009-08-31T08:45:39Z 2009-08-31T08:50:02Z <p>I have to test a method out on my asp.net application that should work on https. Is there a way where I can run the application on localhost on https so I can debug it?</p> http://stackoverflow.com/questions/1356389/asp-net-check-if-page-is-http-or-https 2 ASP.net check if page is http or https Drahcir 2009-08-31T08:15:33Z 2009-08-31T08:21:19Z <p>I have a web application hosted on multiple servers some of which are on https. How can I check from code behind if a page is currently in http or https?</p> http://stackoverflow.com/questions/1321424/asp-net-getting-a-list-of-querystrings-from-a-link 0 ASP.Net getting a list of querystrings from a link Drahcir 2009-08-24T09:48:19Z 2009-08-24T09:49:30Z <p>I have a web application that is using <a href="http://urlrewriting.net/149/en/home.html" rel="nofollow">UrlRewriting</a>. Now I want to set it that if the user enters the page with a url in re-written format, all the links apply the same format, otherwise they remain the same (with normal query strings). </p> <p>Is there a way that I can get a list of query strings that are in the links without parsing the string?</p> http://stackoverflow.com/questions/408896/connecting-to-an-sql-server-mdf-file-via-php 0 Connecting to an SQL Server mdf file via PHP Drahcir 2009-01-03T10:57:02Z 2009-08-12T02:05:22Z <p>I currently have a school assignment that involves both PHP and asp.net. Now the assignment is that I make an E-commerce website with PHP and it's CMS with asp.net. Therefore both websites connect to the same database which is in SQL Server.</p> <p>At the moment using Visual Studio's SQL Server Express, and I have generated an mdf file as the database. I am using xampplite as a web-server and notepad++ to code PHP and I am trying to connect to the mdf file. </p> <p>Is it possible? If so, What should I use as a connection string?</p> http://stackoverflow.com/questions/1237698/executing-events-sequentially-in-jquery/1237970#1237970 0 Answer by Drahcir for Executing Events Sequentially in jQuery Drahcir 2009-08-06T09:55:05Z 2009-08-06T09:55:05Z <p>The problem was in the method <code>fillOpenFields</code>, sorry for the inconvinience</p> http://stackoverflow.com/questions/1231664/generating-a-div-in-asp-net 0 Generating a div in asp.net Drahcir 2009-08-05T07:27:50Z 2009-08-05T07:43:39Z <p>I am trying to generate an html div in asp.net. </p> <p>Since a div is considered as an HtmlGenericControl, I tried using that but don't know how to define the type of control, therefore it always generates a "span". </p> <p>Any ideas on how I can define it as a div?</p> http://stackoverflow.com/questions/360543/sql-server-undo 1 SQL Server UNDO Drahcir 2008-12-11T19:19:48Z 2009-08-01T16:51:09Z <p>I am a part time developer (full time student) and the company I am working for uses SQL Server 2005. The thing I find strange about SQL Server that if you do a script that involves inserting, updating etc there isn't any real way to undo it except for a rollback or using transactions.</p> <p>You might say what's wrong with those 2 options? Well if for example someone does an update statement and forgets to put in a <code>WHERE</code> clause, you suddenly find yourself with 13k rows updated and suddenly all the clients in that table are named 'bob'. Now you have the wrath of 13k bobs to face since that "someone" forgot to use a transaction and if you do a rollback you are going to undo critical changes that were needed in other fields.</p> <p>In my studies I have Oracle. In Oracle you can first run the script then commit it if you find that there isn't any mistakes. I was wondering if there was something that I missed in SQL Server since I am still relatively new in working developer world.</p> http://stackoverflow.com/questions/897640/generating-documentation-in-visual-studio-2008 1 Generating documentation in Visual Studio 2008 Drahcir 2009-05-22T12:38:07Z 2009-07-31T18:23:09Z <p>I have a group of methods which I have applied the summary tag like so :</p> <pre><code>/// &lt;summary&gt; /// Returns Foo /// &lt;/summary&gt; /// &lt;param name="fooID"&gt;the fooID&lt;/param&gt; /// &lt;returns&gt;foo&lt;/returns&gt; </code></pre> <p>Was wondering if there is a tool in visual studio 2008 to generate a document out of these summaries.</p> http://stackoverflow.com/questions/995265/jquery-grabbing-a-control-that-is-within-the-same-div-of-another-control 1 Jquery grabbing a control that is within the same div of another control Drahcir 2009-06-15T09:52:14Z 2009-07-01T20:36:20Z <p>I have a set of divs that represent a set of fields. What I would like to acheive is that on click of a text box you can get the div with the class "hint" which is within the same div.</p> <p>For example if I click "txtUsername" i should get "usernameHint"</p> <p>This is the html</p> <pre><code> &lt;div class="formfield"&gt; &lt;label class="desc" id="lblUsername" runat="server"&gt;Username&lt;/label&gt; &lt;input type="text" id="txtUsername" runat="server" class="field text medium" /&gt; &lt;div id="usernameHint" class="hint" runat="server"&gt;&lt;/div&gt; &lt;div id="usernameError" runat="server"&gt;&lt;/div&gt; &lt;/div&gt; &lt;div class="formfield"&gt; &lt;label class="desc" id="lblPassword" runat="server"&gt;Password&lt;/label&gt; &lt;input type="password" id="txtPassword" runat="server" class="field text medium" /&gt; &lt;div id="passwordHint" class="hint" runat="server"&gt;&lt;/div&gt; &lt;div id="passwordError" runat="server"&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/1042563/asp-net-sharing-a-user-control-web-page-logic-with-multiple-web-applications 0 ASP.NET Sharing a user control/web page logic with multiple web applications Drahcir 2009-06-25T07:21:23Z 2009-06-25T08:14:39Z <p>I have a web application, which has a user control and web page logic to be used on multiple web applications. The reason I want to do this is that I want the other web applications to reference this one since the html/css of their web pages varies.</p> <p>First of all I wanted to ask if this is possible since it is a web application and not a class library. </p> <p>Secondly if it is possible how do I refrence the web page logic to the htmls of the other web applications?</p> http://stackoverflow.com/questions/994904/jquery-filter-text-boxes-preventing-user-from-inserting-certain-characters 1 Jquery filter text boxes (Preventing user from inserting certain characters) Drahcir 2009-06-15T07:44:05Z 2009-06-15T11:46:48Z <p>I am trying to prevent users from typing certain characters in text boxes and this is the code that I have so far :</p> <pre><code>$().ready(function(){ $(".textbox").keypress(function(event) { var keyVal = event.keyCode; if((keyVal &gt; 48 &amp;&amp; keyVal &lt; 57))// Numbers { return false; } }); }); </code></pre> <p>It is entering the event and the condition but the character is still inserted. Any ideas on how I go about this?</p> http://stackoverflow.com/questions/985688/asp-net-catching-controls-from-html-generated-from-the-database 0 ASP.NET catching controls from html generated from the database Drahcir 2009-06-12T08:56:04Z 2009-06-12T11:07:25Z <p>I have a set of websites that basically do the exact same thing in terms of functionality, the only thing that varies is the css and how the html is laid out. </p> <p>Is there a way to generate the html from a database (ie retreiving the html from a table) and then catching the controls (like buttons, textboxes etc) from the code behind?</p> <p>UPDATE:</p> <p>Here is an example of what I want to acheive:</p> <pre><code>&lt;html&gt; &lt;div id="generatedContent" runat="server"&gt; &lt;!-- the following content has been generated from the database on the page load event --&gt; &lt;div&gt; This is a textbox &lt;input id="tb1" runat="server" type="text" /&gt; This is a button &lt;input type="submit" id="btn1" runat="server" value="My Button" /&gt; &lt;/div&gt; &lt;/div&gt; &lt;/html&gt; </code></pre> <p>This is the code behind</p> <pre><code>var tb1 = new HtmlControls.HtmlInputText(); tb1 = FindControl("tb1"); var btn1 = new New HtmlControls.HtmlInputSubmit(); btn1 = FindControl("btn1"); </code></pre> <p>Now obviously since the html has been generated from the database (ie after the page has already been initialised) the FindControl method will return null.</p> http://stackoverflow.com/questions/814792/c-system-invalidoperationexception-the-type-foo-was-not-expected 0 c# System.InvalidOperationException: The type foo was not expected. Drahcir 2009-05-02T12:30:15Z 2009-06-10T02:00:03Z <p>This question is tied in with this other <a href="http://stackoverflow.com/questions/814627/silverlight-webservice-the-remote-server-returned-an-error-notfound">question</a> that I asked I have this webservice that returns a class that within itself has a list of classes. When I try to call the method the following exception is being thrown: </p> <blockquote> <p>System.InvalidOperationException: The type YambushiDataClass.SCharacterProjectile was not expected.</p> </blockquote> <p>This is the class that it said it did not <code>expect</code> :</p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Serialization; namespace YambushiDataClass { public class SCharacterProjectile : SProjectile { public int? characterProjectileId { get; set; } public string projectileName { get; set; } public int? characterId { get; set; } } } </code></pre> http://stackoverflow.com/questions/969637/asp-net-removeing-page-from-cache 0 ASP.NET removeing page from cache Drahcir 2009-06-09T11:56:01Z 2009-06-09T12:19:49Z <p>I have a web application with login in system, and basically keeps you logged in if a session is still set. </p> <p>Basically the problem is after the user logs out(session is terminated and user redirected to the login page), you could still technically access the last page accessed if you retype the url but if you click on anything you are redirected to the login page. </p> <p>This only happens in Internet Explorer and I assume this is occuring since the pages are being stored in the cache , is there a way fix this issue?</p> http://stackoverflow.com/questions/1666685/android-stretch-columns-evenly-in-a-tablelayout Comment by Drahcir on Android Stretch columns evenly in a TableLayout Drahcir 2009-11-03T22:25:56Z 2009-11-03T22:25:56Z The I want them all to be the same size but they seem acquire different sizes between them. http://stackoverflow.com/questions/1621513/android-application-force-closing-as-soon-as-it-opens Comment by Drahcir on Android: Application force closing as soon as it opens Drahcir 2009-10-25T20:54:38Z 2009-10-25T20:54:38Z Removed the quote and the closing tag just wasnt selected as code in the SO editor. http://stackoverflow.com/questions/1621513/android-application-force-closing-as-soon-as-it-opens/1621558#1621558 Comment by Drahcir on Android: Application force closing as soon as it opens Drahcir 2009-10-25T18:24:32Z 2009-10-25T18:24:32Z Thing is I commented all the code of the main activity..so none of my code is being run..What I am assuming is there is something wrong with the strings or layout files http://stackoverflow.com/questions/1427775/javascript-storing-regex-in-a-variable/1427811#1427811 Comment by Drahcir on Javascript storing regex in a variable Drahcir 2009-09-15T15:35:46Z 2009-09-15T15:35:46Z Worked as you said http://stackoverflow.com/questions/1326896/could-not-convert-javascript-argument-arg-0-nsresult-0x80570009-nserrorxpc Comment by Drahcir on Could not convert JavaScript argument arg 0" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS Drahcir 2009-08-25T08:55:02Z 2009-08-25T08:55:02Z Hmm it is an ajax request, but apparently it is returning the wrong value. Post an answer and I'll mark it answered for you http://stackoverflow.com/questions/1231664/generating-a-div-in-asp-net/1231673#1231673 Comment by Drahcir on Generating a div in asp.net Drahcir 2009-08-05T07:42:22Z 2009-08-05T07:42:22Z Worked perfectly http://stackoverflow.com/questions/994904/jquery-filter-text-boxes-preventing-user-from-inserting-certain-characters/994982#994982 Comment by Drahcir on Jquery filter text boxes (Preventing user from inserting certain characters) Drahcir 2009-06-15T08:14:01Z 2009-06-15T08:14:01Z Still have the same issue, and as I recall the character is inserted on key down, since if you keep the button pressed the characters are repeated in the textbox. http://stackoverflow.com/questions/985688/asp-net-catching-controls-from-html-generated-from-the-database/985750#985750 Comment by Drahcir on ASP.NET catching controls from html generated from the database Drahcir 2009-06-12T09:26:10Z 2009-06-12T09:26:10Z Not what I was looking for, Updated my question to further explain my scenario http://stackoverflow.com/questions/766170/are-there-any-real-issues-in-silverlight-3-beta/954737#954737 Comment by Drahcir on Are there any real issues in Silverlight 3 beta? Drahcir 2009-06-06T11:49:38Z 2009-06-06T11:49:38Z Tried out the beta for a school assignment, didnt give me any issues http://stackoverflow.com/questions/853586/silverlight-button-style/853686#853686 Comment by Drahcir on Silverlight button style Drahcir 2009-05-12T16:36:54Z 2009-05-12T16:36:54Z Button content as in the button text. http://stackoverflow.com/questions/843179/silverlight-wpf-unable-to-bind-listbox/843315#843315 Comment by Drahcir on Silverlight/WPF unable to bind ListBox Drahcir 2009-05-09T13:33:43Z 2009-05-09T13:33:43Z Forgot about the output window the following error popped up: Cannot get 'characterName' value (type 'System.String') from 'Yambushi.CombatRoom+userClient' (type 'Yambushi.CombatRoom+userClient'). BindingExpression: Path='characterName' DataItem='Yambushi.CombatRoom+userClient' (HashCode=56478042); target element is 'System.Windows.Controls.TextBlock' (Name=''); target property is 'Text' (type 'System.String').. System.MethodAccessException: userClient.get_characterName() http://stackoverflow.com/questions/827199/get-a-random-row-with-linqtosql/827219#827219 Comment by Drahcir on Get a random row with LINQToSQL Drahcir 2009-05-08T19:21:19Z 2009-05-08T19:21:19Z Worked, had to remove the &quot;-1&quot; http://stackoverflow.com/questions/827199/get-a-random-row-with-linqtosql/827219#827219 Comment by Drahcir on Get a random row with LINQToSQL Drahcir 2009-05-08T19:09:16Z 2009-05-08T19:09:16Z Tried it out, currently I have 2 rows in my table but the random function always returns 0 http://stackoverflow.com/questions/816620/problems-in-dynamically-generating-an-image-in-silverlight/828045#828045 Comment by Drahcir on Problems in dynamically generating an Image in silverlight Drahcir 2009-05-06T07:17:57Z 2009-05-06T07:17:57Z Changed the build type to content and it worked, will try out resource later http://stackoverflow.com/questions/827199/get-a-random-row-with-linqtosql/827219#827219 Comment by Drahcir on Get a random row with LINQToSQL Drahcir 2009-05-05T22:57:09Z 2009-05-05T22:57:09Z Im making a game, with random stages and the stage details are tied to the row I am retreiving.