Questions tagged [datafield]
64 questions
0
votes
2 answers
Hide Data Field in an Org Chart in all Shapes in Visio Using VBA
I have code that runs and imports a lot of data from Excel to Visio, adds fields, formats, etc. It all works fine but recently we decided we want to be able to hide one of the fields (the top/first field) as an option. I have tried to record a…

learningthisstuff
- 91
- 2
- 15
0
votes
3 answers
replacing the autogenerated checkbox feild with radio button in a Autogenerated columns Grid View
I have a Grid view for which columns are auto-generated. The binding data-table would be having a Bit(Boolean) column. Now when the data is binded, the check-box field is generated in place of the Bit Column.
Requirement
Check box fields needs to be…

suryakiran
- 1,976
- 25
- 41
0
votes
0 answers
Prevent Data from changing in a Access table
I'm trying to have a table only be updated by queries in the access database and prevent the ability for anyone to update the data in the tables physically. They will be able to still open the table and look at the data though.
Is this possible and…

ThatTallGuy88
- 29
- 4
0
votes
0 answers
How can i change the position of a data in a data field in mongoDB?
I am learning a mongoDB right now and to progress on my project I wanted to be able to change the position of a data inside a a data field.
For example:
FROM
{"Student_No": "1", "Last_Name": "Jain", "First_Name": "Rohan"}
TO
{"Student_No": "1",…

Shlok
- 43
- 4
0
votes
1 answer
CAN Busmaster DataField Decoding message
I need to parse and decode the data field from a CAN Message.
I sent the transmitted the request and i got back the data field :
02 01 20 00 00 00 00 00
Now I have to decode it in a SWITCH, the first byte is the length(02) but how I split the…

Parge Beniamin
- 1
- 3
0
votes
1 answer
Garmin Connect IQ custom data field time in zone
A real noob question here but I am trying to write my first ever Custom data field for my Garmin Edge 520. All that I would like to do is add up the time in Zone 3 + Zone 4 + Zone 5 and display it in a simple data field.
I'm sure that there's a…

ShaunP
- 463
- 1
- 5
- 20
0
votes
3 answers
xml attribute datafield datagrid
Why cannot I bind xml attribute for datafield? (flex 4)

legion
- 1
- 1
0
votes
1 answer
How can I find a BoundField inside a GridView by DataField?
I want to change the CSS class behind the tenth BoundField inside my GridView, but I'd like to find it by DataField (i.e., use a string as index).
protected void gdDeliveryDates_RowDataBound(object sender, GridViewRowEventArgs e)
{
if…

ShieldOfSalvation
- 1,297
- 16
- 32
0
votes
1 answer
Create an Instance of a class field with rtti
I have a class which should contain datafields like TIntegerField, TFloatField, ... In an Init-Function I want to open a dataset to get the right datarecord from DB and put the values to the fields in the classinstance. Because I don't want to write…

Rudi77
- 11
- 1
0
votes
1 answer
Getting dataFields of DataGridColumn into ArrayCollection
I have a DataGrid with 3 DataGridColumns. All 3 of them have separate dataFields.
I need to get the datafields into an ArrayCollection and pass it to a funciton. I dont want to hard code the ArrayCollection.
Is there any way to achieve this?

Vishal
- 2,711
- 7
- 33
- 42
0
votes
1 answer
How to retrieve a MySQL Database field with data between brackets {} as an array
I need to retrieve data from this table in magento sales_flat_quote_payment. There is a field in the table called additional_data.
In the additional_data field is data within brackets { }
Here is how the data looks formatted
a:6:{
…

Mike
- 607
- 8
- 30
0
votes
1 answer
Apache Camel Bindy - can I have a customized data-type for a field?
I have a field that it can have just two values, let us say "A" or "B". If we use FF4J (Fixed format 4J), so we can have a formatter and define an enum for that reason.
How abount Apache Camel Bindy.
I do not find anything similar to FF4J…

Sheri
- 75
- 9
0
votes
1 answer
How do I access the data fields inside a bag in pig latin?
I am using the IMDB database to find the actor/actress with the highest rating and was in the most movies in a given year. I am trying to join the actors dataset with their ratings. Then filter the year and sort the data based on highest rating and…

K8E
- 13
- 1
- 3
0
votes
1 answer
Java - changing data fields?
There are two things I need help with but I'm having a hard time figuring out. They are listed below - any assistance is greatly appreciated.
1) I need to add a method that prompts the user to enter an int (1-3) to change the volume (default set to…

StevenC
- 109
- 1
- 20
0
votes
1 answer
How can I add elements of a subclass type to an array with the superclass as element type?
I've got a BetterBuilding class which extends Building, and a BetterElevator class which extends Elevator. Building, in its constructor, fills up an array Elevator[] elevators with Elevator objects. Now, I'm trying to create the BetterBuilding…

Jochem Bruijninckx
- 21
- 5