DataWindow This, DataWindow That...Blah blah blah
You've heard it enough that you don't even want to comment on how many
times...
The DataWindow.
....but it can't be enough anymore...can it?
This from one of our colleagues
(and yes my apologies for taking it out of context)...
"...PB covers all you need to do that in ONE Tool. This
includes Windowprogramming ( meaning the interface to the user:
Windows, Sheets, diallougeboxes, etc.), Database operability AND
Reporting! Well, I see als well as many other PB users that some of
the implementations and features PB offers are improvable. But thi...
DataWindow.NET : issue using external datawindowHello,
I created an external datawindow with 3 columns, but I have
error messages when I want to use it in my .NET application
:
When I want to insert rows, I get the message : "InsertRow
was called when no DataWindow object was attached."
I set in design mode my pbl library and also the datawindow
name I want to use. I also tried to set it dynamically in
the code, but it changes nothing.
I'm sure SQLCA isn't useful for this kind of DataWindow, but
I also tried to set it and I get the message "SetTransaction
was called when no DataWindow object was att...
DataWindow.NET : issue using external datawindow #2Hello,
I created an external datawindow with 3 columns, but I have
error messages when I want to use it in my VB.NET
application :
When I want to insert rows, I get the message : "InsertRow
was called when no DataWindow object was attached."
I set in design mode my pbl library and also the datawindow
name I want to use. I also tried to set it dynamically in
the code, but it changes nothing (I can see the DataWindow
in design mode).
I'm sure SQLCA isn't useful for this kind of DataWindow, but
I also tried to set it and I get the message "SetTransaction
...
DataWindow.NETI'm using DataWindow.NET 1.5.1 9004 on a Windows XP
Professional SP 2 machine with the latest Microsoft Update
patches.
The release notes indicate that change request 385532 is
corrected.
However, if I configure my computer to use a Windows XP
theme the border does not render as expected; a blue
bordered box is displayed. If I configure my computer to
use a Windows Classic theme the border is rendered as
expected. Is there something else I need to do to get the
datawindow object column borders to render correctly when
using a Windows XP theme?
Ken
Are you using 3D Lower...
Problems with External Datawindows in Datawindow .NetHas anyone used an external datawindow within a datastore in a .Net
application? We are converting a piece of functionality from PowerBuilder to
C# .Net and the routine uses an external datawindow. Since it is an external
I didnt do SetTransObject before doing the InsertRow. I simply tried
inserting a row into the datastore and a DatawindowNotCreatedException was
thrown. Has anyone run into something similar?
We are widely using external datawindow.
Your error is not concerned with external datawindow. It is concerned with
DataWindowControl bad behaviour (it is documented,...
PB Datawindow to DataWindow .Net MigrationWe have a datawindows in PB 9 and PB 11 also. Now we are planing move
to .Net Applications. We are generating all PB objects in to .Net(C#)
except data windows. Now we are planing to move PB datawindows to
DataWindow .Net 2.5.
Can you please explaing the way to convert/migrate PB Datawindows to
DataWindow .Net 2.5.
Advanced thanks for your suggesstions.
Thank You,
Chaithu
Start the Datawindow Designer applet and create a new Project.
Then use the Import... feature to import the datawindow source .SRD files.
These can be exported from PowerBuilder.
--
Paul Horan[Sybase]
...
datawindow and Datawindow.NET Function ComparisonHi All!
What is the equivalent function in datawindow.net for the
dw_1.GetSelectedRow()
Is there any listings or comparison available for datawindow.net function
and datawindow?
Thanks.in advance
S. Viswanathan
Look to DataWindowControl.FindNextSelected(RowNumber) method.
Regards,
Mikhail Klygin.
Viswanathan S �����:
> Hi All!
>
> What is the equivalent function in datawindow.net for the
> dw_1.GetSelectedRow()
>
> Is there any listings or comparison available for datawindow.net function
> and datawindow?
>
> Thanks.in advanc...
Converting datawindow objects to datawindow .NetHi,
Can someone please list the various methods we can use to
convert the standard datawindow object to a datawindow .net
object ?
Thanks,
Sanjay
I'm lost. There's no conversion necessary. PB and DW.Net use the
same datawindow objects.
On 19 Feb 2007 17:46:15 -0800, Converting wrote:
>Hi,
>
>Can someone please list the various methods we can use to
>convert the standard datawindow object to a datawindow .net
>object ?
>
>Thanks,
>
>Sanjay
Thanks Bruce. I probably confused you but good to know that
we can modify the datawin...
How to share the datawindow to inner datawindow of nested datawindowHow to share the datawindow to inner datawindow of nested datawindow.
Ex
--------
dw_1 is normal datawindow dw_nes is nested datawindow, both are placed
one window
dw_nes contain dw_child datawindow
Question
----------------
i want to share dw_1 and dw_child.
I have tried the below code, getting error
dw_1.sharedata( dw_nes.object.dw_child)
It's the dot notation. You will need to dw_nes.GetChild("dw_child", ldwc)
where ldwc is a _local_ datawindowchild.
<kzganesan@gmail.com> wrote in message
news:4c64c402-bac5-4ee0-83aa-4ac08ffe43e5@r66g2000hsg.go...
DataWindow.NET and PB10.5 DataWindow Extentions ?Hi,
will the next release (so far I know DataWindow.NET 2.0) will based
on the Powerbuilder DataWindow engine 10.5.
or in other words:
The new DataWindow extentions from PB10.5 (treeview datawindow, autosize
....) will be part of
of the next DataWindow.NET Release
Till now we are in the process of testing the same pbl's (and datawindows)
in Webforms and PB apps.
TIA
Heino Hellmers
Yes. The PowerBuilder 10.5 DataWindow engine is used and those features are
supported.
"Heino Hellmers" <heino@hellmers.com> wrote in message
news:42ff2c87$1@f...
Is there any issue in creating dynamic datawindow in Datawindow.Net?Hi
I have created a datawindow object in PB10 and exported in to SRD file.
In my dot.net application, I read the file into string and issued the
following command to create datawindow dynamically.
But it throws an methodfailureexception error as "incorrect syntax at line
18 and column 14.
Dim ls_create As String
Dim fs As FileStream
fs = New FileStream(curFileName, FileMode.Open, FileAccess.Read)
'declaring a FileStream to open the file named file.doc with access mode of
reading
Dim d As New StreamReader(fs)
'creating a new StreamReader and passing the filestream...
accessing datawindow in composite datawindowHi All,
I have a composite datawindow d_comp having two datawindow d_first and
d_second.
Using code, i want to save the content of the d_first and d_second
datawindow content txt format. Is it possible to save the content
using saveasascii or saveas function ??
i was trying to use
dw_comp.object.d_first.saveasascii(ls_temptxfile,"~t","","~n")
but getting error...
Thanks .
-Brijesh
Hi,
if that is really a composite datawindow you should be able
to get a reference to d_first and d_second using getChild().
You get a DataWindowChild which impl...
External Datawindow in a Composite DatawindowHi All
I have a question. Can I use an extrernal datawindow in a composite datawindow? If yes, how do we
access its properties. The specific problem is that I want to combine two dws. One is generated
externally and the other is a simple tabular dw coming from a db. If I try to use getchild() then I
do not have columns for get child.
I am using PB 7.0.3 on Windows 2000 Server with MS SQL Server.
Thanks.
Sincerely
Saleem
> Can I use an extrernal datawindow in a composite datawindow? If yes, how
do we
> access its properties.
ldw_dw.object.r_pumpputyyppi.object...
ole datawindows and composite datawindowI have 5 external datawindows that I will use for printing
an enrollment form. Two are purely legal text that I am
using an ole(word doc) for, one will be populated using
embedded sql and setitem calls, and the other two are a
combination of ole and external columns.
Questions:
1. Does the normal process of dw_control.settransobject
dw_control.retrieve work for ole based datawindows?
2. If this is the right approach, then do I "retrieve" the
ole datawindows and populate my other datawindows first and
then
3. retrieve the composite datawindow for preview and print
...