Tagged Questions
The typed tag has no wiki summary.
4
votes
2answers
4k views
Arraylist in parcelable object
I have seen many parcelable examples so far, but for some reason I can't get it to work when it gets a bit more complex.
I have a Movie object, which implements Parcelable. This book object contains ...
3
votes
2answers
445 views
statically/dynamically typed vs static/dynamic binding
everyone what is the difference between those 4 terms, can You give please examples, thanks in advance for any help
2
votes
5answers
982 views
Typed AS3 JSON Encoder and Decoder?
I need to encode and Decode AS3 Objects in a typed manner. http://code.google.com/p/as3corelib/ only supports untyped encoding and decoding.
http://code.google.com/p/ason/ supports some kind of typed ...
2
votes
3answers
72 views
Why i can't call the Model and ViewData, and Html in the strong typed page?
I created a new strong typed View ,something like this:
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master"
...
1
vote
0answers
41 views
unable to connect to mysql from dataset designer
I want to create a typed dataset which gets data from mysql. I have done this before using sqlserver 2005. But i have a big problem in connecting to MYSQL.
In the first step after adding Table ...
1
vote
4answers
31 views
javascript problem with implicitly typed variables
Forgive this novice question (novice in Javascript!).
In a html page I have a set of images with a name and a number: img1 img2 img3... img12...
And there is a JS function where I need to iterate ...
1
vote
2answers
216 views
Cycle categories with subcategories
1) i have 2 tabs Categories and SubCategories on db with relation 1 to many (im using entity framework)
2) i have to create a vertical menu like this
<ul>
<li>category 1
...
1
vote
2answers
158 views
DAL using typed dataset
Are there any performance issues in using Typed Data Sets as DAL? Is it a recommended approach? I am using it for listing purposes only (repeater). It has paging, sorting functionalities too.
1
vote
3answers
1k views
Custom datatable with metadata used for binding to a Gridview?
I'm binding a datatable to a gridview control, and when I format each column I need to format the data based on whether that column has a particular custom attribute. In this case, a column can ...
0
votes
1answer
23 views
JSON strongly typed array of objects
JSON will normally encode an array of objects as something like:
"batter":
[
{ "id": "1001", "type": "Regular" },
{ "id": "1002", "type": "Chocolate" },
{ "id": "1003", "type": "Blueberry" },
{ "id": ...
0
votes
0answers
39 views
Binding typed IQueryable vs anonymous IQueryable
Consider next class example:
Public Class myClass
Shared Function load() as IQueryable(Of subClass)
return (from db in dbcontext.table select new subClass with {.guid = db.guid})
End Function
...
0
votes
0answers
52 views
VS2010 makes a copy of .Designer.cs-file
I'm using VS2010 (C#) for a WinForm database program. I've created a dataset, myds, which generates a couple of related files:
myds.xsd
myds.Designer.cs
myds.xsc
myds.xss
When I edit the xsd-file ...
0
votes
1answer
70 views
Typed DataSet - InvalidCastException
I've got a typed dataset. I bind the data with a binding source to a form with arround 200 textboxes, dataedits and so on. Everything works fine with one exception:
In my database I have empty ...
0
votes
1answer
87 views
XML mapping with typed criteria queries
I'm using hibernate with xml mapping I'm trying to run some simple code without much success. I am confident that mapping and classes are correct as I am able to perform other queries using JPQL.
...
0
votes
0answers
66 views
Castle windsor, releasing factory obtained component, but where?
after I read quite some about castle windsor transients, release policies and Typed Faactory facility, I'm a bit confused on how to act ina specific scenario.
Say you have (more or less) this ...
0
votes
3answers
363 views
Difference between LongWord and Cardinal in Delphi XE?
This code doesn't compile in XE :
const
InitSignature : array[0..3] of LongWord =
($67452301, $EFCDAB89, $98BADCFE, $10325476);
[DCC Error]: E2026 Constant expression expected
but this ...
0
votes
4answers
216 views
Pointers to a typed variable in C#: Interface, Generic, object or Class? (Boxing/Unboxing)
First of all, I apologize if this has been asked a thousand times. I read my C# book, I googled it, but I can't seem to find the answer I am looking for, or I am missing the point big time.
I am very ...
0
votes
3answers
164 views
Generic WinForms ListView (with regards to Tag)
I'm trying to improve on a Winforms project where datatable rows are stored in the Tag property of ListViewItems. When the datatable is refactored to List<T> (or actually classes containing ...
0
votes
1answer
226 views
Selecting one row when working with typed datasets
I have a typed dataset in my project. I would like to populate a datatable with only one row instead of all rows. The selected row must be based on the primary key column. I know I could modify the ...
0
votes
4answers
1k views
Flex - Typed ArrayCollection as Horizontallist's dataprovider
I have an ArrayCollection of objects.
I'm passing this array to a horizontallist as a dataprovider and I'm using a custom itemRenderer.
When executing the application, the horizontallist is ...
0
votes
2answers
858 views
problem with update strong typed dataset turn to database in C# .net framework 3.5
I want to remove some special characters in a table of database. I've used strong typed table to do it. When i got all data into dataset from database and modified it then i called method update() of ...
0
votes
5answers
680 views
saving a records containing a member of type string to a file (Delphi, Windows)
I have a record that looks similar to:
type
TNote = record
Title : string;
Note : string;
Index : integer;
end;
Simple. The reason I chose to set the variables as string (as ...
-1
votes
2answers
84 views
what's wrong with these?
I create a strong typed view ,but i can't get the Mode and viewdata and the Html...
This is my sample code:
<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" ...