Nevermind.
It's amazing to me how badly my attention to detail is deteriorating.
I think it's lack of sleep/stress.
The reason why it wasn't grouping the way I want is becuase i was overlooking the fact that the FirstGroup group is the one I want to break by. so I had to arrange grouping. I...
ok I got the ordering of the groups fixed.'
Right now, everything is sorting correctly, but here's the problem:
My Group (third group) returns the first 2 letters of the location code in a formula {@LocFirst}. I have in the group footer a "new page after" command.
here's my problem
Page 1...
Sure.
My groups: IN ORDER:
WO (Work Order, DB Value, No Formula)
\_ @LocationString -
if {PickListData.LocationCount} <= 1 then 'Single Location' else 'Multiple Locations'
\_ @FirstGroup
if {@Location String} = 'Single Location' then
{PickListData.t_sitm}
else
{@LocFirst}...
Basically, I have 3 groups.
If a flag is set one way, the formula that I'm grouping by returns a value from field, if a flag is set the other way, it returns a value from a different field.
I first group by that flag, then I group by the 3 formula fields.
However, it seems that the group is...
Ok, here's the deal,
I'm grouping based on a formula.
I have 3 groups.
Each group is being sorted by a forumla.
In each formula, I have
if {@RecordType} = 'SingleLocation' then
{MyTable.SomeField}
else
{MyTable.AnotherField}.
If the Record type is MultipleLocation, I want it to...
Is conditional grouping possible?
Basically, I've got a formula that sets a flag one way or the other.
If the flag is set one way, I want to group by location ONLY. If not, I want to sort by Item, then by location.
The only way I can figure to do this is
Conditional group by Item...
You're trying to retrieve BLOB (Binary Large OBject) data.
Here's an article explaining how to do that:
Utilize ADO.NET and C# to work with BLOB data.
--NipsMG
I've got a library (tagnetlib) that i'm using to grab id3v2 information from an MP3 File. I'm specifically having trouble with embedded image information.
I'm able to extract the data, which is in the following format:
Size)HexStringGoesHere+.
FrameName[Type,Enclding, MimeType, ?, ?, Data]
An...
I'm trying to use the ResEditor sample in the .NET Framework.
There's code for an "Open File " Dialog box as listed below:
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
currentFileName = openFileDialog1.FileName;
FileInfo efInfo = new FileInfo(currentFileName);
...
I've got DFS set up for one network share.
I randomly run into issues with terminal server users, who cannot map to that share.
I'm using S: as the mapped drive letter.
When investigating the problem, it appears the user's s: is not mapped to anything. From the command line, NET USE S...
That's the kind of thing I'd love to do. It makes so much sense to do things that way, but it would be much easier for me to visualize if I had some form of example.
The issue is, I've got a company of 200 people here, and at the moment, a 2 person IT department.
My many hats include IT...
I don't understand the resistance to using some kind of database system. Especially if this is supposed to be multi user, and the data is of a critical nature. If you don't want to go for SQL Server, use MYSQL or MSDE. There's no point trying to re-invent the wheel, or implement your own...
I'm trying to design in this way more frequently. However, I've found it extremely cumbersome in many cases to make a separate data layer in front of the databsae. Too often, there's come complex data operations that jsut don't lend themselves to a black box, one size fits all, data layer.
I...
You'd have no record locking, and multiuser access would be unreliable. Basically, you'd have to read the XML file into a dataset at runtime. Until you decided to write it again, the XML file would stay static. IF another user opens the XML file, then you make a change and write it, his...
Just make a case statement.
Pull the operator and value
Public Function Compare(ByVal MyValue as Integer) AS Boolean
dim Value as integer, Operator as String
Value = DataRow("Value")
Operator = cstr(DataRow("Operator")
Select Case Operator
Case ">"...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.