User Drahcir - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T17:27:41Zhttp://stackoverflow.com/feeds/user/45471http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1666685/android-stretch-columns-evenly-in-a-tablelayout0Android Stretch columns evenly in a TableLayoutDrahcir2009-11-03T11:10:43Z2009-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-notfound0Silverlight Webservice "The remote server returned an error: NotFound"Drahcir2009-05-02T10:46:13Z2009-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-listbox2Silverlight/WPF unable to bind ListBoxDrahcir2009-05-09T12:02:01Z2009-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<userClient> userClientList; // = new List<userClient>();
void _client_UserList(object sender, DataTransferEventArgs e)
{
this.Dispatcher.BeginInvoke(() =>
{
userClientList = new List<userClient>();
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><ListBox x:Name="chatUsers" Grid.Row="0" Grid.Column="1" Margin="2 2 2 2" />
</code></pre>
http://stackoverflow.com/questions/1654112/android-application-force-closes-when-i-try-to-implement-a-scrollview0Android: Application force closes when I try to implement a scrollviewDrahcir2009-10-31T11:20:03Z2009-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><?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ScrollView
android:id="@+id/egyptianScroll"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<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">
<TableRow>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Product"
android:background="#00ff00" android:layout_margin="2dip" />
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="x"
android:background="#00ff00" android:layout_margin="2dip" />
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="y"
android:background="#00ff00" android:layout_margin="2dip" />
</TableRow>
</TableLayout>
</ScrollView>
<TextView android:id="@+id/result"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=""/>
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="x:" />
<EditText android:id="@+id/x"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:numeric="integer"/>
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="y:" />
<EditText android:id="@+id/y"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:numeric="integer"/>
</LinearLayout>
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<Button android:id="@+id/multiplication"
android:text="Multiply"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button android:id="@+id/powers"
android:text="Powers"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
</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-opens0Android: Application force closing as soon as it opensDrahcir2009-10-25T17:40:53Z2009-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><?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:id="@+id/result"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text=""/>
<LinearLayout android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/number" />
<EditText android:id="@+id/n"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:numeric="decimal"/>
<Button android:id="@+id/calc"
android:text="@string/calculate"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
</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.<init>(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#16464170Answer by Drahcir for Android: Application force closing as soon as it opensDrahcir2009-10-29T20:41:05Z2009-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-right0Silverlight specific Image shifting to the rightDrahcir2009-05-15T17:10:30Z2009-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<RoutedEventArgs>(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<RoutedEventArgs>(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-jquery0Executing Events Sequentially in jQueryDrahcir2009-08-06T08:48:26Z2009-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-silverlight2How can I manipulate a RagDoll made with farseer physics in Silverlight?Drahcir2009-02-18T17:51:13Z2009-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-jqgrid0Unable to load XML data in jqGridDrahcir2008-12-17T16:37:28Z2009-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><link rel="stylesheet" type="text/css" media="screen" href="js/themes/basic/grid.css" />
<link rel="stylesheet" type="text/css" media="screen" href="js/themes/jqModal.css" />
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/jquery.jqGrid.js" type="text/javascript"></script>
<script src="js/js/jqModal.js" type="text/javascript"></script>
<script src="js/js/jqDnR.js" type="text/javascript"></script>
<script type="text/javascript">
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});
});
</script>
</code></pre>
<p>and this is the response of nrGetjqgridXML :</p>
<pre><code><xml version='1.0' encoding = 'utf-8'?>
<rows>
<page>1</page>
<total>2</total>
<records>15</records >
<row id = '15'>
<cell>15</cell>
<cell><![CDATA[Test15]]></cell>
<cell>15</cell>
<cell><![CDATA[o]]></cell>
<cell><![CDATA[False]]></cell>
<cell>15/03/2005 00:00:00</cell>
<cell>15.15</cell>
</row>
<row id = '14'>
<cell>14</cell>
<cell><![CDATA[Test14]]></cell>
<cell>14</cell>
<cell><![CDATA[n]]></cell>
<cell><![CDATA[False]]></cell>
<cell>14/02/2004 00:00:00</cell>
<cell>14.14</cell>
</row><row id = '13'>
<cell>13</cell>
<cell><![CDATA[Test13]]></cell>
<cell>13</cell>
<cell><![CDATA[m]]></cell>
<cell><![CDATA[True]]></cell>
<cell>13/01/2003 00:00:00</cell>
<cell>13.13</cell>
</row>
<row id = '12'>
<cell>12</cell>
<cell><![CDATA[Test12]]></cell>
<cell>12</cell>
<cell><![CDATA[l]]></cell>
<cell><![CDATA[False]]></cell>
<cell>12/12/2002 00:00:00</cell>
<cell>12.12</cell>
</row><row id = '11'>
<cell>11</cell>
<cell><![CDATA[Test11]]></cell>
<cell>11</cell>
<cell><![CDATA[k]]></cell>
<cell><![CDATA[True]]></cell>
<cell>11/11/2001 00:00:00</cell>
<cell>11.11</cell>
</row>
<row id = '10'>
<cell>10</cell>
<cell><![CDATA[Test10]]></cell>
<cell>10</cell>
<cell><![CDATA[j]]></cell>
<cell><![CDATA[False]]></cell>
<cell>10/10/2000 00:00:00</cell>
<cell>10.1</cell>
</row>
<row id = '9'>
<cell>9</cell>
<cell><![CDATA[Test9]]></cell>
<cell>9</cell>
<cell><![CDATA[i]]></cell>
<cell><![CDATA[False]]></cell>
<cell>09/09/1999 00:00:00</cell>
<cell>9.9</cell>
</row>
<row id = '8'>
<cell>8</cell>
<cell><![CDATA[Test8]]></cell>
<cell>8</cell>
<cell><![CDATA[h]]></cell>
<cell><![CDATA[False]]></cell>
<cell>08/08/1998 00:00:00</cell>
<cell>8.8</cell>
</row>
<row id = '7'>
<cell>7</cell>
<cell><![CDATA[Test7]]></cell>
<cell>7</cell>
<cell><![CDATA[g]]></cell>
<cell><![CDATA[True]]></cell>
<cell>07/07/1997 00:00:00</cell>
<cell>7.7</cell>
</row>
<row id = '6'>
<cell>6</cell>
<cell><![CDATA[Test6]]></cell>
<cell>6</cell>
<cell><![CDATA[f]]></cell>
<cell><![CDATA[True]]></cell>
<cell>06/06/1996 00:00:00</cell>
<cell>6.6</cell>
</row>
<row id = '5'>
<cell>5</cell>
<cell><![CDATA[Test5]]></cell>
<cell>5</cell>
<cell><![CDATA[e]]></cell>
<cell><![CDATA[False]]></cell>
<cell>05/05/1995 00:00:00</cell>
<cell>5.5</cell>
</row>
<row id = '4'>
<cell>4</cell>
<cell><![CDATA[Test4]]></cell>
<cell>4</cell>
<cell><![CDATA[d]]></cell>
<cell><![CDATA[True]]></cell>
<cell>04/04/1994 00:00:00</cell>
<cell>4.4</cell>
</row>
<row id = '3'>
<cell>3</cell>
<cell><![CDATA[Test3]]></cell>
<cell>3</cell>
<cell><![CDATA[c]]></cell>
<cell><![CDATA[False]]></cell>
<cell>03/03/1993 00:00:00</cell>
<cell>3.3</cell>
</row>
<row id = '2'>
<cell>2</cell>
<cell><![CDATA[Test2]]></cell>
<cell>2</cell>
<cell><![CDATA[b]]></cell>
<cell><![CDATA[False]]></cell>
<cell>02/02/1992 00:00:00</cell>
<cell>2.2</cell>
</row>
<row id = '1'>
<cell>1</cell>
<cell><![CDATA[Test1]]></cell>
<cell>1</cell>
<cell><![CDATA[a]]></cell>
<cell><![CDATA[True]]></cell>
<cell>01/01/1991 00:00:00</cell>
<cell>1.1</cell>
</row>
</rows>
</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-nserrorxpc0Could not convert JavaScript argument arg 0" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JSDrahcir2009-08-25T08:41:59Z2009-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><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<script src="js/ui.core.js"></script>
<script src="js/ui.draggable.js"></script>
<script src="js/ui.droppable.js"></script>
<script src="js/effects.core.js"></script>
<script src="js/effects.slide.js"></script>
</code></pre>
http://stackoverflow.com/questions/1326896/could-not-convert-javascript-argument-arg-0-nsresult-0x80570009-nserrorxpc/1497277#14972770Answer by Drahcir for Could not convert JavaScript argument arg 0" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JSDrahcir2009-09-30T10:32:12Z2009-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-netbeans1Android Emulator not loading on netbeansDrahcir2009-09-24T17:49:50Z2009-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-ap0Silverlight Usercontrol Onload Event when generated in another Usercontrol, to apply farseer physicsDrahcir2009-04-29T23:01:48Z2009-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 < 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-a0ASP.Net Add Control "Cannot get inner content of [control] because the contents are not literal."Drahcir2009-09-16T14:50:59Z2009-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-variable1Javascript storing regex in a variableDrahcir2009-09-15T15:08:20Z2009-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;:/~\+#]*[\w\-\@?^=%&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-localhost0ASP.net debug https on localhostDrahcir2009-08-31T08:45:39Z2009-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-https2ASP.net check if page is http or httpsDrahcir2009-08-31T08:15:33Z2009-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-link0ASP.Net getting a list of querystrings from a linkDrahcir2009-08-24T09:48:19Z2009-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-php0Connecting to an SQL Server mdf file via PHPDrahcir2009-01-03T10:57:02Z2009-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#12379700Answer by Drahcir for Executing Events Sequentially in jQueryDrahcir2009-08-06T09:55:05Z2009-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-net0Generating a div in asp.netDrahcir2009-08-05T07:27:50Z2009-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-undo1SQL Server UNDO Drahcir2008-12-11T19:19:48Z2009-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-20081Generating documentation in Visual Studio 2008Drahcir2009-05-22T12:38:07Z2009-07-31T18:23:09Z
<p>I have a group of methods which I have applied the summary tag like so :</p>
<pre><code>/// <summary>
/// Returns Foo
/// </summary>
/// <param name="fooID">the fooID</param>
/// <returns>foo</returns>
</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-control1Jquery grabbing a control that is within the same div of another controlDrahcir2009-06-15T09:52:14Z2009-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> <div class="formfield">
<label class="desc" id="lblUsername" runat="server">Username</label>
<input type="text" id="txtUsername" runat="server" class="field text medium" />
<div id="usernameHint" class="hint" runat="server"></div>
<div id="usernameError" runat="server"></div>
</div>
<div class="formfield">
<label class="desc" id="lblPassword" runat="server">Password</label>
<input type="password" id="txtPassword" runat="server" class="field text medium" />
<div id="passwordHint" class="hint" runat="server"></div>
<div id="passwordError" runat="server"></div>
</div>
</code></pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1042563/asp-net-sharing-a-user-control-web-page-logic-with-multiple-web-applications0ASP.NET Sharing a user control/web page logic with multiple web applicationsDrahcir2009-06-25T07:21:23Z2009-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-characters1Jquery filter text boxes (Preventing user from inserting certain characters)Drahcir2009-06-15T07:44:05Z2009-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 > 48 && keyVal < 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-database0ASP.NET catching controls from html generated from the databaseDrahcir2009-06-12T08:56:04Z2009-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><html>
<div id="generatedContent" runat="server">
<!-- the following content has been generated from the database on the page load event -->
<div>
This is a textbox <input id="tb1" runat="server" type="text" />
This is a button <input type="submit" id="btn1" runat="server" value="My Button" />
</div>
</div>
</html>
</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-expected0c# System.InvalidOperationException: The type foo was not expected.Drahcir2009-05-02T12:30:15Z2009-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-cache0ASP.NET removeing page from cacheDrahcir2009-06-09T11:56:01Z2009-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-tablelayoutComment by Drahcir on Android Stretch columns evenly in a TableLayoutDrahcir2009-11-03T22:25:56Z2009-11-03T22:25:56ZThe 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-opensComment by Drahcir on Android: Application force closing as soon as it opensDrahcir2009-10-25T20:54:38Z2009-10-25T20:54:38ZRemoved 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#1621558Comment by Drahcir on Android: Application force closing as soon as it opensDrahcir2009-10-25T18:24:32Z2009-10-25T18:24:32ZThing 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 fileshttp://stackoverflow.com/questions/1427775/javascript-storing-regex-in-a-variable/1427811#1427811Comment by Drahcir on Javascript storing regex in a variableDrahcir2009-09-15T15:35:46Z2009-09-15T15:35:46ZWorked as you saidhttp://stackoverflow.com/questions/1326896/could-not-convert-javascript-argument-arg-0-nsresult-0x80570009-nserrorxpcComment by Drahcir on Could not convert JavaScript argument arg 0" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JSDrahcir2009-08-25T08:55:02Z2009-08-25T08:55:02ZHmm it is an ajax request, but apparently it is returning the wrong value. Post an answer and I'll mark it answered for youhttp://stackoverflow.com/questions/1231664/generating-a-div-in-asp-net/1231673#1231673Comment by Drahcir on Generating a div in asp.netDrahcir2009-08-05T07:42:22Z2009-08-05T07:42:22ZWorked perfectlyhttp://stackoverflow.com/questions/994904/jquery-filter-text-boxes-preventing-user-from-inserting-certain-characters/994982#994982Comment by Drahcir on Jquery filter text boxes (Preventing user from inserting certain characters)Drahcir2009-06-15T08:14:01Z2009-06-15T08:14:01ZStill 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#985750Comment by Drahcir on ASP.NET catching controls from html generated from the databaseDrahcir2009-06-12T09:26:10Z2009-06-12T09:26:10ZNot what I was looking for, Updated my question to further explain my scenariohttp://stackoverflow.com/questions/766170/are-there-any-real-issues-in-silverlight-3-beta/954737#954737Comment by Drahcir on Are there any real issues in Silverlight 3 beta?Drahcir2009-06-06T11:49:38Z2009-06-06T11:49:38ZTried out the beta for a school assignment, didnt give me any issueshttp://stackoverflow.com/questions/853586/silverlight-button-style/853686#853686Comment by Drahcir on Silverlight button styleDrahcir2009-05-12T16:36:54Z2009-05-12T16:36:54ZButton content as in the button text.http://stackoverflow.com/questions/843179/silverlight-wpf-unable-to-bind-listbox/843315#843315Comment by Drahcir on Silverlight/WPF unable to bind ListBoxDrahcir2009-05-09T13:33:43Z2009-05-09T13:33:43ZForgot 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#827219Comment by Drahcir on Get a random row with LINQToSQLDrahcir2009-05-08T19:21:19Z2009-05-08T19:21:19ZWorked, had to remove the "-1"http://stackoverflow.com/questions/827199/get-a-random-row-with-linqtosql/827219#827219Comment by Drahcir on Get a random row with LINQToSQLDrahcir2009-05-08T19:09:16Z2009-05-08T19:09:16ZTried 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#828045Comment by Drahcir on Problems in dynamically generating an Image in silverlightDrahcir2009-05-06T07:17:57Z2009-05-06T07:17:57ZChanged the build type to content and it worked, will try out resource laterhttp://stackoverflow.com/questions/827199/get-a-random-row-with-linqtosql/827219#827219Comment by Drahcir on Get a random row with LINQToSQLDrahcir2009-05-05T22:57:09Z2009-05-05T22:57:09ZIm making a game, with random stages and the stage details are tied to the row I am retreiving.