wpf GridSplitter
Sat, 20 Feb 2010 09:53:44 -0800
I am trying to understand the GridSplitter.
If I have the following Grid, it resizes exactly the same whether I have the
GridSplitter or not and regardless of what the ResizeBehavior is.
I thought the "*" and "auto" determined the resizing behavior?
<Grid TextBlock.FontSize="48">
<Grid.RowDef ...
|
stackpanel and border on bottom
Sat, 20 Feb 2010 08:59:02 -0800
I have stackpanel that includes a border (with nothing in it) that I am
using just for looks.
The StackPanel fills the rest of a DockPanel area where I have other
objects. The bottom of the StackPanel has about 2 inches of space.
I am trying to put the border piece below the TextBlocks and at the bottom
...
|
How to get the value of ID columns from older tables?
Fri, 19 Feb 2010 16:05:01 -0800
Hello Community
I have several SQL Server tables with ID columns (the property of the
columns specify that it "Is Identity Yes").
The tables have many rows but I only want the value of the ID column
from a table when the where clause is satisfied.
These are "not" newly inserted in fact the ...
|
invalid parameter when doing FromStream
Fri, 19 Feb 2010 15:06:01 -0800
Hello Everyone,
I have this code below, I keep getting invalid parameter on the line below:
System.Drawing.Image b =
System.Drawing.Image.FromStream(ms);
[WebMethod]
public bool PutImage(byte[] ImgIn, string clipBoardGUID)
{
try
{
System.IO.MemorySt ...
|
Pop-up using Ajax
Fri, 19 Feb 2010 14:34:01 -0800
I have a FormView and ListView inside an UpdatePanel. I use the FormView to
insert records and then DataBind the ListView in Inserted event. I would
like to pop-up a simple alert box based on data inserted. I can get a Label
to populate in this situation but since it constitutes a warning I would like
to p ...
|
Puzzling xsl problem
Fri, 19 Feb 2010 22:16:37 +0100
Hello,
I am trying to understand how these 2 kind of files could be used.
Context: template used to generate crm email from objects
file 1
<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="text" indent="no"/>
<xsl:template match="/ ...
|
Select All checkbox using javascript for asp.net page
Sat, 20 Feb 2010 01:32:29 +0530
I want a "Select All" checkbox in my website which will select 15 other
checkboxes.
also, when any of those 15 check boxes is unchecked, the SelectAll checkbox
should also get unchecked. How do I do this using javascript on my asp.net.
A clear example would be helpful.
Please assist.
...
|
|
|
Seconds from DB to hh:mm:ss in GridView. How to?
Fri, 19 Feb 2010 11:15:03 -0500
Hi,
I have a db table with a column that stores duration in seconds. I need to
present this duration as hh:mm:ss in a gridview. I'm not quite sure where
the int to string conversion should take place. Should I attempt to do that
in a stored proc, business object, or another place?
An example would be ve ...
|
deciphering vb code
Fri, 19 Feb 2010 09:43:40 -0500
I'm trying to decipher some code like the following:
<MaxLength(50)> _
<SQLParameter()> _
<PropertyDBType(SqlDbType.VarChar)> _
Public Property Coolness() As String
Get
Return ModifiedDataValues("Coolness").Value
End Get
Set(ByVal value As String)
ModifiedDataValues("Coolness").Valu ...
|
automatic properties in vs2005???
Fri, 19 Feb 2010 01:03:57 +0530
is it possible in .net framework 2.0 to create a class that can server the
purpose of List<> ?
eg.
A class Job that has empno, ename etc. I want to get data from database in
form of List<Job> and bind it to gridView. The problem is that I'm using
VS2005 and I'll not be able to upgrade.
So, what mod ...
|