pls help me! about Crosstab DW .how can i get the header columns value ?hi!
I have a crosstab datawindow :
2001 2002 2003 2004 2005 2006 .....
ANDY $123 $453 $987 $847 $372 $884 .....
JOHN $643 $787 $232 $454 $355 $443 .....
-------------------------------------------------
compute_1 ......
my problem is :
HOW CAN I GET THE header VALUE (exe->2001) INTO THE
compute_1 for [compute expression]?
please help me...
You can't. What I have done is mimic the crosstab logic
in a stored procedure. It is complicated though.
> hi!
>
> I have a crosstab datawindow :
>
...
getting the value of crosstab columnI have a similar problem with a crosstab report as follows.
I have to generate a report based on currency transactions. So crosstab
header(1) was the currency & 2 was its respective opening balance.
The report format is like this
Date Doc No Account Particulars BEF
CDF FRF USD
Opening
Bal 2000.00 (100.00) 200.00 15000.00
10/02/02 5 MKS TRF CDF RCT
100.00
10/02/02 6 RAJA BEF PMT
(100....
How can i get the default-value of a columnI' m using this statement with VB 6.0:
select column_name, table_name, "default" from syscolumn, systable join
syscolumn on systable.table_id = syscolumn.table_id where
table_name='TRegieBuchungen'
=> it works fine with ISQL.
But when i refer to the result-set of VB, i always get an Error "No update
tables are specified".
Any ideas?
thanks!
Christian
c.pauzenberger@telecom.at
...
how can get the group column value?My dw have group and group total columns,
I can use getitem to obtain the first group's group total value,
but how can I get the other group's group total value?
I use dw_report.getitemnumber(?, "group_total)
no matter what value of ?, all return the first group total value!!
pls help!!!
...
How can i get the default-value of a column?I' m using this statement with VB 6.0:
select column_name, table_name, "default" from syscolumn, systable join
syscolumn on systable.table_id = syscolumn.table_id where
table_name='TRegieBuchungen'
=> it works fine with ISQL.
But when i refer to the result-set of VB, i always get an Error "No update
tables are specified".
Any ideas?
thanks!
>select column_name, table_name, "default" from syscolumn, systable join
>syscolumn on systable.table_id = syscolumn.table_id where
>table_name='TRegieBuchungen'
>...
How to get crosstab datawindow column valuemy problem
How to get crosstab datawindow column value
Hi Wisdom,
Try dot notation. There is a good possibility to show data as well:
MessageBox( "Data", dw_Crosstab.Describe( "DataWindow.Data" ) )
Alexander
Wisdom Pan schrieb:
> my problem
>
> How to get crosstab datawindow column value
don't forget to set the statis property to TRUE, before trying to access the
dynamically generated columns.
"Wisdom Pan" <pan_steve@hotmail.com> wrote in message
news:jB9UYNty$GA.110@forums.sybase.com...
my problem
How to g...
How can I get the value of a column in a datagrid?
Hello. I have a datagird with textboxes on a column item template, I also
have 2 other columns that are hidden and I want to retrieve his value. But I
havent found how to do it.
Thanks very much in advance
This is the code that loops through all rows. find the textboxes controls
Private Sub btnguardarplandesarrollo_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles btnguardarplandesarrollo.Click
Page.Validate()
If Page.IsValid Then
Dim cont As Int32 = 0
Dim di As DataGridItem
For Each di In dgplandesarrollo.Items
Dim responsabili...
Get Value of column dynamic of datawindow crosstabHello to all.
I have datawindow crosstab and I need to obtain the value of the
generated columns .
Thanks!
Hola a todos.
Tengo un datawindow crosstab y necesito obtener el valor de las
columnas generadas dinamicamente
Read the thread started by Davy De Permentier with the subject "CrossTab" on
friday.
"Raul Gil" <gl_ra@hotmail.com> wrote in message
news:414f86f2$1@forums-1-dub...
> Hello to all.
>
> I have datawindow crosstab and I need to obtain the value of the
> generated columns .
>
> Thanks!
>
&...
Re-Post : getting the value of crosstab columnHi all,
I'd posted this several times. But, i couldn't get any solution. Is there
any problem regarding the explanation? Is it non-readable?
Please help me to arrive at a solution.
Thanks
Arun
...
Can't get a hidden column value
When I hide a column and try to retrieve a value from that column for a specific row I get nothing.
Here is my code:
<-----VB ----->
Dim sdgUserID As String = CType(e.Item.FindControl("lblUserIDHold"), Label).Text
<----- HTML ----->
<asp:TemplateColumn Visible="False" HeaderText="Hold"> <ItemTemplate>
<asp:Label Visible="False" Runat="server" ID="lblUserIDHold">
<%# sUserID %>
</asp:Label>
</ItemTem...
GridView, How can i get de value from a chekbox column
Hi, how you doing?
I try ti get it using code like Cbool(.SelectedRow.Cells(x).Text) but it doesn't work. How can i get the checkbox column value?. I mean i want to know if its checked or not.
Thks
Use the control's ID in a FindControl
bool checkIt = ((CheckBox)gridView.SelectedRow.FindControl("checkBoxID")).Checked DonFalcon Web Technologies, LLC.Net Hosting | email & survey marketing
ok, thks, but the "checkBoxID", from where can i know it?
How can i know the id of the chkbox?
Hi:
You can try TemplateField instead of B...
how can I get the property value on any column of DW in JSHi
I have one column (Text field) and a button in my datawindow. On Button
click I want to write a javascript that tells me the value of color property
of that field.
How can I get that value of DW filed in JavaScript.
I wrote the following method.
function demo(){
var f = document.obj_dataForm;
var dw_prop;
dw_prop = obj.getProperty("beg_dt.Color");
//obj is the refernce to datawindow and column name is beg_dt
alert ("property on : "+dw_prop);
}
Thanks
...
How can I get other column value of DataSource in ItemDataBound event?
Hi all
In ItemDataBound event, How can I get other column value of DataSource?
for example ,I have 3 column,customer_id,customer_name,customer_tel
customer_id,customer_name has display on DataGrid.
Now I want to get customer_tel in ItemDatabound event.
How do I?
Thanks a lot.
Clare
There is a DataItem property of the e.Item that ruturns items datasource. All you need to do is to cast it to an appropriate type. If you binding your grid to DataTable or DataView, it is DataRowView
Dim dtr as DataRowView = ctype(e.Item.DataItem,DataRowView)
Bug [MCSD]...
how can I Get value in "row " in crosstabIn crosstab,thare are three data:'row', 'column' and 'value'.When execute
it,'row' ,'column' and 'value'display different data.Now I want to get data
in 'row'range when user clicked the cells.How can I do?
thanks!
Hi,
The first thing you need to do is put the crosstab in static mode, using:
dw_1.Modify("DataWindow.Crosstab.StaticMode='yes'")
Do this after the crosstab has been created (ie. after the retrieve).
You can now use GetItem/SetItem on each of the cells. If your 'value' column
was cal...