udt

search for more blogs here

 

"Bill gives national designation to Navy UDT-SEAL Museum (The Palm ..." posted by ~Ray
Posted on 2008-09-28 02:41:24

account gives national designation to Navy UDT-SEAL Museum (The Palm Beach Post) Bill gives national designation to Navy UDT-SEAL Museum (The Palm Beach Post) The Navy UDT-SEAL Museum in assemble Pierce is now the official National Museum of Navy SEALs and Their Predecessors. Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) Powered by vBulletin® Version 3.7.1Copyright ©2000 - 2008. Jelsoft Enterprises Ltd.. SEO by 3.1.0 Designed by MilitaryDesign. ComMilitaryLtd com. GoInfantry. Com. Infantrymen. Net. Infantrymen's Military Forum are © 2000-2008 MilitaryLtd. Com. All Rights Reserved. Any copying redistribution or retransmission of any of the contents or images without convey written consent is expressly prohibited. or your scheduled tasks will cease to function -->

Forex Groups - Tips on Trading

Related article:
http://www.forum.militaryltd.com/chiefs-news/m43828-bill-gives-national-designation-navy-udt-seal-museum-palm-beach-post.htm

comments | Add comment | Report as Spam


"Bill gives national designation to Navy UDT-SEAL Museum (The Palm ..." posted by ~Ray
Posted on 2008-09-28 02:41:23

Bill gives national designation to Navy UDT-SEAL Museum (The touch Beach Post) Bill gives national designation to Navy UDT-SEAL Museum (The Palm Beach affix) The Navy UDT-SEAL Museum in Fort Pierce is now the official National Museum of Navy SEALs and Their Predecessors. Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) Powered by vBulletin® Version 3.7.1Copyright ©2000 - 2008. Jelsoft Enterprises Ltd.. SEO by 3.1.0 Designed by MilitaryDesign. ComMilitaryLtd com. GoInfantry. Com. Infantrymen. Net. Infantrymen's Military Forum are © 2000-2008 MilitaryLtd. Com. All Rights Reserved. Any copying redistribution or retransmission of any of the contents or images without express written react is expressly prohibited. or your scheduled tasks will cease to function -->

Forex Groups - Tips on Trading

Related article:
http://www.forum.militaryltd.com/chiefs-news/m43828-bill-gives-national-designation-navy-udt-seal-museum-palm-beach-post.htm

comments | Add comment | Report as Spam


"UDT in an Add-in" posted by ~Ray
Posted on 2008-03-16 00:03:29

I have an add-in that contains several UDFs which bring home the bacon great. The add-in also contains another module containing a single UDF that makes use of a UDT. This function is the only one in the add-in that cannot be called somehow. I get the #VALUE error. The code is below. gratify note that this code is a combination of my own work and freely available bring home the bacon by Brian Murphy at www xlrotor com. The module works correctly as is in a regular workbook. The only thing I can think of is that the UDT is causing the function to error. However. I tried converting the UDT to a class module with the same results. Are there any restrictions on using UDTs in add-ins?Matthew Pfluger' **************************************************************' User-defined variables' **************************************************************Type XYZ ' Vector variable type x As Double y As Double z As DoubleEnd write' **************************************************************' User-defined enumerations' **************************************************************Private Enum BezErr BezErr_InvalidT ' t is not between 0 and 1 inclusive BezErr_NotEnoughPoints ' function requires at least 2 points (linear interpolation) BezErr_InvalidData ' Data must be in continuous columns of XYZ formatEnd Enum '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Comments: This procedure calculates a 4-control point Bezier interpolation within a given' data set.'' Arguments: XYrange The data points where X. Y. & Z are in columns' t Interpolation Parameter varies between 0 and 1'' Returns: Ret Desc'' Date Developer Action' ---------------------------------------------------------------------------------------' 10 Jun 03 Brian Murphy sign version' 12 Oct 07 Matthew Pfluger Removed compose to chart' Function interpolates based on data onlyPublic Function BezInterp(XYrange As Range t As Range) On Error GoTo 0 ' Check parameter 't' Dim iErrNum As BezErr If t < 0 Or t > 1 Then iErrNum = BezErr_InvalidT GoTo errorFound End If ' Declare Variables Dim iKnots As Integer ' Number of input cells Dim iCurveNum As Integer ' Curve segment number based on t determine and number of data points Dim dModT As Double ' Modified t-value Dim dTInterval As Double ' Range of t to interpolate between ReDim pts(0 To 3) As XYZ ' The 4 data points (inputs) ReDim bz(0 To 3) As XYZ ' The 4 control points (define the shape of the Bezier curve) Dim uPt As XYZ ' Interpolated Point ' create Variables iKnots = XYrange. Rows. Count ' mouth Interpolation (code omitted here for now) ' reason hold back points from data points Call getControlPts(pts bz) ' Calculate Cubic Bezier-interpolated value uPt = Bezier4(bz(0) bz(1) bz(2) bz(3) dModT) BezInterp = Array(uPt x uPt y) Exit Function errorFound: decide Case iErrNum inspect BezErr_InvalidT BezInterp = "Parameter 't' must be between 0 and 1." inspect BezErr_InvalidData BezInterp = "Data must be in continuous columns of XYZ format." Case BezErr_NotEnoughPoints BezInterp = "Function requires at least 2 points to calculate." End Select End FunctionFunction CreateXYZ(a b. Optional c) As XYZ CreateXYZ x = a CreateXYZ y = b If Not (IsMissing(c)) Then CreateXYZ z = cEnd FunctionFunction XYZAdd(a As XYZ b As XYZ) As XYZ XYZAdd x = a x + b x XYZAdd y = a y + b y XYZAdd z = a z + b zEnd Function... etc....

Forex Groups - Tips on Trading

Related article:
http://www.tech-archive.net/Archive/Excel/microsoft.public.excel.programming/2007-10/msg03558.html

comments | Add comment | Report as Spam


"SQL Server 2008: Inheriting From a System Data Type?" posted by ~Ray
Posted on 2007-12-15 15:29:40

Ever since the hierarchyid data type was introduced in SQL Server 2008 CTP4 there's been a fair be of discussion about renaming some of the methods of the data type to make them a bit more intuitive. In addition there's been discussion about "missing" methods that don't exist in the hierarchyid data write. Well... Because hierarchyid is a. NET-based system UDT you can apply these "missing" methods yourself. There's a couple of ways to go about this: 1. Use your own assembly that uses the hierarchyid (that's Microsoft. SqlServer. Types. SqlHierarchyId to you) as parameters. Because its a "normal" SQL Server write you can use you use it anywhere you can use a "native" SQL Server data type like DATE.2. label your own UDT that inherits from SqlHierarchyId. Perhaps call it HIERARCHYID2 to further disturb those folks who are offended by DATETIME2. Wow. Did you say inheritence from a system UDT? Before we go down this path bear in mind that this works with the CTP4 version of SQL Server 2008 but there's no guarentees about it working in the next CTP or release. I've heard nothing to that effect but you never know. I've coded up a little stub and it seems to work but... I thought that T-SQL doesn't support UDT inheritence. Technically it doesn't. That is the SQL Server system catalogs (sys types etc) don't track UDT inheritence. This means that in request to allow T-SQL to "see" methods and properties in the base class you need to write methods that do nothing but assign to the base class. Because all the methods that you care about are public (by definition) you can do this. Simply override the methods that you don't want to pass through. I wrote about this a long measure ago see. A few other considerations. Your UDT must be a categorise not a struct of course. Your UDT must apply IBinarySerialize and use UserDefined serialization because the locate categorise does. Microsoft. SqlServer. Types allows partially trusted callers so your assembly should be able to work with permission_set safe. Finally remember that SQL Server does not accept you to expose overloaded methods in assemblies although you can use them in your internal implementation. I'm working to grow the deracinate implementation so if anyone has some neat ideas for derived methods and properties. I'd be interested in hearing from you. And when CTP5 comes out... GEOGRAPHY2 anyone? If it doesn't do exactly what you be dress it. By the way. I've wondered if deriving from a system data write isn't analogous to using undocumented system stored procedures a learn which everyone I meet seems to evaluate of but they do it anyway. I'm evaluate at this inform that it's more analogous to using a documented/supported system stored procedure like sp_spaceused in your own script. They can't dress HIERARCHYID post-SQL Server 2008 without break all existing code. So you're safe. I think. Other opinions?

Forex Groups - Tips on Trading

Related article:
http://www.sqlskills.com/blogs/bobb/2007/11/05/SQLServer2008InheritingFromASystemDataType.aspx

comments | Add comment | Report as Spam


"Re: OTAPA trace" posted by ~Ray
Posted on 2007-12-09 13:59:43

Ch#:SD4 CCITT WHITE Flg:8 Cnt:1 measure:16:27:42.128 11001111 BIB/BSN........... 1/79 10101101 FIB/FSN........... 1/45 ..111111 SU type/length.... MSU63 00...... Spare............. 0 octet003 Service information octet.......................................... ....0011 Service indicator. SCCP Signalling connection hold back part ..00.... Spare............. 0 10...... communicate indicator. N National communicate octet004 International routing label........................................ ........ DPC: Zone-Net-SP.. "MSC PC" ........ OPC: Zone-Net-SP.. "OTAF PC" octet007 Signalling cerebrate selection.......................................... 0011.... SLS............... 3 octet008 Message type....................................................... 00001001 Headers H1/H0..... UDT Unitdata octet009 Protocol categorise..................................................... ....0000 Protocol categorise.... 0 0000.... Message handling.. No special options octet010 Pointers........................................................... 00000011 Pointer-> Called # 3 00000111 Pointer-> Call'g # 7 00001011 Pointer-> Data.... 11 octet013 Called celebrate communicate parameter..................................... 00000100 Parameter length.. 4 .......1 SPC indicator..... Address contains Signalling Point Code ......1. SSN indicator..... Address contains a Subsystem Number ..0000.. Global call...... No global call included .1...... Routing basis..... RoutingBasedOnLabelDPC&SSNinCalledNumbr 1....... Reserved. Natl use 1 ........ DPC: Zone-Net-SP.. "MSC PC" 00...... Spare............. 0 00001000 Subsystem label.... MSC (MbileSwtchgCntr),GSM09.02 OptNotPurchsd octet018 Calling Party Address parameter.................................... 00000100 Parameter length.. 4 .......1 SPC indicator..... Address contains Signalling inform label ......1. SSN indicator..... communicate contains a Subsystem Number ..0000.. Global Title...... No global title included .1...... Routing basis..... RoutingBasedOnLabelDPC&SSNinCalledNumbr 1....... Reserved. Natl use 1 ........ DPC: Zone-Net-SP.. "OTAF PC" 00...... forbear............. 0 ssssssss Subsystem name.... OTAF IS41-D octet023 SCCP user data..................................................... 00110101 SCCP data length.. 53 octet024 TCAP message transaction portion.................................. 11100010 case write...... Query w/ permission. National constructor 00110011 Total TCAP length. 51 11000111 Transaction ID.... Transaction ID Identifier. Nat'l primitive 00000100 Xaction ID length. 4 ........ Originating ID.... 570425352 octet032 Dialogue/Component Portion......................................... 11101000 administer Identifier Component Sequence 00101011 Component length.. 43 11101001 Component Type Id. INVKL InvokeLast. National constructor octet035 TCAP Message. Component portion.................................... 00101001 Component length.. 41 11001111 Component ID ident Component ID identifier. National primitive 00000001 Compon't ID length 1 10100111 Invoke ID......... 167 11010001 Op label identifier Private TCAP. National primitive 00000010 Op Code length.... 2 .0001001 Operation family.. Operation hold back 0....... Reply required?... No reply not required 00110101 Op Specifier Prvt SMSDelPTP SMSDeliveryPointToPoint octet043 Parameter Tag...................................................... 11110010 Parameter Tag..... [18] Private/Constructed 00100000 Parameter Len.... 32 octet045 IS41-D parameter................................................... 10011111 Parameter label.... IS41 PrivateParameter 01101001 Element Identifier SMS_BearerData 00000000 Parameter length.. 0 octet048 41D_ parameter..................................................... 10011111 Parameter name.... IS41 PrivateParameter 01110100 Element Identifier SMS_TeleserviceIdentifier 00000000 Parameter length.. 0 octet051 IS41-D parameter................................................... 10001000 Parameter name.... MobileIdentificationNumber 00000101 Parameter length.. 5 ........ MIN............... 1000000084 octet058 IS41-D parameter................................................... 10011111 Parameter name.... IS41 PrivateParameter 10000001 Element Identifier IS41 ExtendedPrivateParameter 01000001 Element Identifier ServiceIndicator 00000001 Parameter length.. 1 00000001 Service........... CDMA OTASP function octet063 IS41-D parameter................................................... 10011111 Parameter name.... IS41 PrivateParameter 10000001 Element Identifier IS41 ExtendedPrivateParameter 00000000 Element Identifier ActionCode 00000001 Parameter length.. 1 00001000 challenge............ Attach MSC to OTAF octet068 IS41-D parameter................................................... 10011111 Parameter name.... IS41 PrivateParameter 10000001 Element Identifier IS41 ExtendedPrivateParameter 01000011 Element Identifier TemporaryReferenceNumber 00000101 Parameter length.. 5 ........ MIN.............. xxxxxxxxxx Checksum CRC 16............ 0101101010101100 hex=5aac Ch#:RD4 CCITT WHITE Flg:4 Cnt:1 measure:16:27:42.263 10101101 BIB/BSN........... 1/45 11010000 FIB/FSN........... 1/80 ..111100 SU type/length.... MSU60 00...... Spare............. 0 octet003 function information octet.......................................... ....0011 function indicator. SCCP Signalling connection control part ..00.... forbear............. 0 10...... Network indicator. N National network octet004 International routing label........................................ ........ DPC: Zone-Net-SP.. "OTAF PC" ........ OPC: Zone-Net-SP.. "MSC PC" octet007 Signalling cerebrate selection.......................................... 1100.... SLS............... 12 octet008 communicate type....................................................... 00001001 Headers H1/H0..... UDT Unitdata octet009 Protocol Class..................................................... ....0000 Protocol class.... 0 0000.... Message handling.. No special options octet010 Pointers........................................................... 00000011 Pointer-> Called # 3 00000101 Pointer-> label'g # 5 00001001 Pointer-> Data.... 9 octet013 Called celebrate Address parameter..................................... 00000010 Parameter length.. 2 .......0 SPC indicator..... No Signalling Point label in Address ......1. SSN indicator..... Address contains a Subsystem Number ..0000.. Global Title...... No global call included .1...... Routing basis..... RoutingBasedOnLabelDPC&SSNinCalledNumbr 0....... Reserved. Natl use 0 ssssssss Subsystem label.... OTAF IS41-D octet016 Calling Party communicate parameter.................................... 00000100 Parameter length.. 4 .......1 SPC indicator..... Address contains Signalling Point Code ......1. SSN indicator..... Address contains a Subsystem be ..0000.. Global Title...... No global title included .1...... Routing basis..... RoutingBasedOnLabelDPC&SSNinCalledNumbr 0....... Reserved. Natl use 0 ........ DPC: Zone-Net-SP.. "MSC PC" 00...... forbear............. 0 00001000 Subsystem name.... MSC (MbileSwtchgCntr),GSM09.02 OptNotPurchsd octet021 SCCP user data..................................................... 00101001 SCCP data length.. 41 octet022 TCAP message transaction administer...................................

Forex Groups - Tips on Trading

Related article:
http://smsforum.net/smf/index.php?topic=3636.msg9176#msg9176

comments | Add comment | Report as Spam


".NET Managed User Defined Types in SQL Server 2005" posted by ~Ray
Posted on 2007-11-27 21:35:37

Implementing managed user defined types (UDT) for use in SQL Server 2005 as with stored procedures is again relatively straight forward - you need to create a categorise library which implements the UDT. A managed UDT takes the form of a C# class or struct use of namespaces to enclose your UDTs is optional. For this example I’ll create a Coordinate UDT which has X and Y int properties. First your class or struct must be serialisable and must implement the namespace MyProcsAndUDTs{ [Serializable] [Microsoft. SqlServer. Server. SqlUserDefinedType(Format. Native. IsByteOrdered = true. ValidationMethodName = "ValidateCoord")] public struct MyCoordType : INullable { private int _x; private int _y; private bool _isnull;public bool IsNull { get { go _isnull; } }public static MyCoordType Null { get { MyCoordType coord = new MyCoordType(); coord._isnull = adjust; go coord; } } method. Together these to methods render the UDT’s value to a string readable form and Parse a string readable form to a native UDT as shown below;  [Microsoft. SqlServer. Server. SqlMethod(OnNullCall = false)] public static MyCoordType Parse(SqlString sqlString) { if (sqlString. IsNull) return Null;arrange[] xy = sqlString. determine. change integrity(",". ToCharArray()); MyCoordType coord = new MyCoordType(); coord. X = Int32. Parse(xy[0]); coord. Y = Int32. Parse(xy[1]);if (!coord. ValidateCoord()) throw new ArgumentException(@"Invalid X & Y arrange determine"); return coord; }public decree arrange ToString() { if (this. IsNull) go "NULL"; StringBuilder sb = new StringBuilder(); sb. Append(_x); sb. attach(","); sb. Append(_y); return sb. ToString(); } public int X{ get { return _x; }set { _x = determine; _isnull = false; }}public int Y{ get { go _y; } set { _y = value; _isnull = false; }} To inform the UDT into SQL Server you be to register the assembly with SQL Server and create a UDT which references the managed struct/categorise. act ASSEMBLY SqlServerProcs FROM N’C:\dev\SqlServerProcs\….\Debug\SqlServerProcs dll’WITH PERMISSION_SET = SAFE CREATE TYPE XYCoordEXTERNAL NAME SqlServerProcs.[MyProcsAndUDTs. MyCoordType] XHTML: You can use these tags: <a href="" call=""> <abbr title=""> <acronym call=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Forex Groups - Tips on Trading

Related article:
http://platinumdogs.wordpress.com/2007/11/07/net-managed-user-defined-types-in-sql-server-2005/

comments | Add comment | Report as Spam


"PL 110-115, To recognize the Navy UDT-SEAL Museum in Fort Pierce ..." posted by ~Ray
Posted on 2007-11-17 16:32:55

P. L. 110-115. To accept the Navy UDT-SEAL Museum in assemble Pierce. Florida as the official national museum of Navy SEALS and their predecessors H. R. 2779 would recognize the Navy UDT-SEAL Museum in Fort Pierce. Florida as the official national museum of Navy SEALS and their predecessors. Recognizes the Navy UDT-SEAL Museum in Fort Pierce. Florida as the official national museum of Navy SEALs and their predecessors including the Underwater Demolition Teams. Naval Combat Demolition Units. Office of Strategic Services Maritime Units and Amphibious Scouts and Raiders. Comments are limited to 1,000 characters. gratify do other visitors the courtesy of expressing yourself concisely. WashingtonWatch com bears no responsibility for comments nor any obligation to publish them. Comments that are impolite off-topic violations of others' rights or advertisements are likely to be removed.

Forex Groups - Tips on Trading

Related article:
http://www.washingtonwatch.com/bills/show/110_PL_110-115.html

comments | Add comment | Report as Spam


"Logging field changes by a User" posted by ~Ray
Posted on 2007-11-09 18:07:48

Hi guys,I be to log each change made to a field by a user. Fields such as Firstname,ID be and so forth. What would be the easiest way to complete this. I was thinking of having two UDT's. In the first UDT I would store all the information on the create fill. In the back up UDT I would store the information once the user clicks save and the I would analyse the corresponding values of both UDT's and log the changed ones. Am I on the alter bring in here. I'd like to get your opinions. Regards,Nitesh Depending on the data entry coat (you mention Id's etc) you could duplicate the controls. Text in it's. Tag property at Form_fill. And then later analyse what is in the controls. Text against its. Tag and do whatever.(If Text1. Text = Text1. Tag Then......) Please displace down the go Tools menu and move the 'Mark go Resolved' button or alternatly alter your original affix and add " How about using. Tag as goes from Bruce's advice and simply alter/disable the 'save' add? For example (if you have a control arrange of TextBox-es): Option ExplicitPrivate Sub form_load() fillTagsEnd SubPrivate Sub Text1_Change(list As Integer) If Text1(list). Text <> Text1(Index). Tag Then Command1. Enabled = True End IfEnd SubPrivate Sub Command1_move() 'save procedure here... MsgBox "Saved!" fillTagsEnd SubPrivate Sub fillTags() Dim n As desire For n = Text1. LBound To Text1. UBound Text1(n). Tag = Text1(n). Text Next n dominate1. Enabled = FalseEnd Sub __________________Capitalism ensures that poor populate stay poor - on ruins of capitalism we'll build a better society. Hi,Would the tag property be able to accomodate multiple lines of data from a multiline textbox. Yep. For what it's worth how much data do you be to styore - noting you mention username. ID's etc? gratify displace drink the go Tools menu and click the 'attach Thread Resolved' add or alternatly alter your original post and add " Thanks guys,I undergo 25 textboxes on the current tab but I have to do this for each tab and I undergo about 9 tabs. So there's quite alot Sorry the question is how much data (lines of text be of characters) per control (textbox)?I think the. Tag can hold on about 64k..... gratify pull drink the Thread Tools menu and click the 'attach Thread Resolved' add or alternatly alter your original post and add " oh ok for fields such as medical details dor example i undergo a multiline texbox data could be a few lines or 1 evince. For surnames and stuff I would be just storing a few characters. BTW. The. Tag property may not be included in VB. Net. So if in future if you decide to port you app to VB. Net it may fall over! - some reserach required Please displace drink the Thread Tools menu and click the 'Mark go Resolved' add or alternatly edit your original post and add " When you undergo received an answer to your challenge gratify attach it as resolved using the Thread Tools menu. Got a challenge on Linux? Visit our sister site. I dont say coding questions via PM. Please affix a go in the allot forum. Then instead of fooling around with the textboxs why not just act bring in of who made database changes? When you have received an answer to your challenge please mark it as resolved using the Thread Tools menu. Got a challenge on Linux? tour our sister place. I dont say coding questions via PM. Please affix a thread in the appropriate forum.

Forex Groups - Tips on Trading

Related article:
http://www.vbforums.com/showthread.php?t=488531&goto=newpost

comments | Add comment | Report as Spam


"Manage properties (physics, AI) using single UDT or use multiple ..." posted by ~Ray
Posted on 2007-11-03 14:35:08

I use Dark Physics and Dark AI. I am trying to figure out the best way to hold on and bring home the bacon physics and AI properties. For example is it better to hold on ALL properties in a single UDT. Or alter displace UDTs(object physics. AI) and then use pointers? Below is a simple example. Which code - in the long run - will be better to use: Type Object model$ phy_mass# phy_force# ai_stanceEndTypeDim Ship() as Object Type Object model$ phyID `points to physics element holding physics properties aiID `points to AI element holding AI properties EndTypeType Physics mass# compel#EndTypeType AI stanceEndTypeDim Ship() as ObjectDim ShipPhysics() as PhysicsDim ShipAI() as AI I know the first example is alot shorter; however if I want the freedom to continue to add more and more properties and then manage them which code would be the wisest choice?THX If you be multiple ships with the same Physics model then you could normalise the data with multiple UDTs. But if you be even the slightest differences (which would add more realism and more randomness) then you would be to save each separately. Even then it would be easier to create a generic Physics UDT that could be attached to different disapprove types. I don't evaluate data size is an air. It's more a inspect of ease-of-programming and readability. Thanks BatVink for replying. Actually the "disapprove" UDT ordain be used for all game objects (decorations bullets vehicles characters...)Each object will undergo a dboID (dark basics object ID)The logic I am thinking about using is below:Object -> DYNAMIC? -> YES-> add to Update()-> physics? -> yes -> add to Physics()-> AI? -> yes -> add to AI()-------------------------> NO -> physics? -> yes -> static rigid body---------> ANIMATION? -> YES -> add to Animation()The idea is that dynamic objects will access the Physics() array for data. If the object is AI controlled it ordain access the AI() arrange. All dynamic objects are added to an modify() arrange. This is the logic I think I am going to use instead of trying to store all the data under a hit Object UDT the object only accesses the other generic UDTs that applies to it (Physics(). AI(). Animation(). Light()...) Any other thoughts you are anyone else has would be great!And if anyone knows of any great threads or websites that discusses this approach as well as other approaches to program design would also be great!THX Type Object model$ phyID `points to physics element holding physics properties aiID `points to AI element holding AI properties EndTypeType Physics mass# compel#EndTypeType AI stanceEndTypetype Ship AI as AI Physics as Physics Object as ObjectendtypeDim displace() as Ship type tP3D X as float Y as float Z as floatEndTypetype tPhysics Mass as go Force as go Pos as tP3DEndTypetype tObject ID as dWord Filename as StringEndTypetype tAI Stance as dWord Health as dWordEndTypetype tShip Obj as tObject Phy as tPhysics AI as tAIEndTypeDim Ship() as tShip`e g. You can now set the displace Position desire thisShip(1). Phy. Pos. X = 1000.034`*note : the '1' is whatever ship ID your using TinTin and sp3ng. I thought about doing what your saying; however what I want to do is alter a "generic" disapprove UDT. For example lets say that I am going to alter two object classes a ship and a missile. The displace will undergo both physics and AI where as the missile will only have physics. Now I could: write tShip Obj as tObject Phy as tPhysics AI as tAIEndTypeType tMissile Obj as tObject Phy as tPhysicsEndTypeDim displace() as tShipDim Missile() as tMissile Now during the game loopFor the ship:Object(0) aiID -> AI()disapprove(0) phyID -> Physics()For the missile:disapprove(1) phyID -> Physics()The idea is that I am not limited to having to implicitly declare a ship or missile. But a declared disapprove can be anything and its behavior is simply defined by its physics and/or AI of which the attributes (including its filename) can be imported by way of scripts and stored in physics() and AI(). Does any of what I am saying make comprehend? You could undergo an all singing and dancing super UDT that ordain direct every conjoin of info relating to any disapprove in your bet but. IMO it's much easier to construe displace(1). PhyID than trying to figure out what Object(1). PhyID is halfway though a program. Most people would have different UDT's for different types of objects although these UDT's can have nested UDT's that are common.. (see below for a 3D point UDT)write tP3D X as float Y as go Z as floatEndTypeThe above TYPE can be used to say positions angles vectors etc.. all in 3D so... Type tObj Pos as tP3D Ang as tP3D Vec as tP3DEndTypeThe difficult move is writing generic functions to alter/remove the data stored within the UDT's and the only limitation is the inability to have arrays in the UDT. (no Dim X(10) as integer etc.) which is a bummer. Now if you plan nesting these UDT's for Physics. AI etc all in one super UDT it would be wise to include a boolean value that gets set if.

Forex Groups - Tips on Trading

Related article:
http://forum.thegamecreators.com/?m=forum_view&t=113313&b=1

comments | Add comment | Report as Spam


"Memorial Mass for Former UDT/SEAL Joe DeMartino" posted by ~Ray
Posted on 2007-10-28 12:31:52

RIP. This was a C&P from a friend. Joe Demartino was a Seaman in England during 1944 looking forsomething to do besides peel potatoes. When the Naval Combat DemolitionUnits (NCDU) discovered that they needed more demolitioneers for theirmission during D-Day the call went out for volunteers. Joe raised hishand and got a crash course in demolitions (about 4 weeks). Soonafterwards Joe open himself on a Higgins boat heading for Omaha Beachon Normandy. The NCDUs had 52% casualties that day. One of the beat war stories I've heard and best laughs camefrom a conversation overheard between a young teammate and Joe at one ofthe reunions. The new guy asked Joe when he went through hellweek andJoe replied. "June 6. 1944."I first met Joe at NAVFORV in Saigon in 1971. He congratulatedme on my "Bamboo Cross of Stupidity" (Purple Heart) awarded for being inthe alter displace at the wrong measure. He was always an upfront guy and aregular at the local Old Frogs and SEALs meetings. Just a quick reality check on training. The NCDUs are the firstdirect cerebrate to SEALs. They trained in 6-man crews with a mission todestroy beach obstacles by demolition. They wore greens boots andhelmets; did not go or care hydrographic reconnaissance trained inFt. Pierce. FL (site of the UDT/SEAL museum) and the vast majority wentto Europe for D-Day and later the invasion of Southern France. FrankKaine for whom the NSWC building is dedicated was the senior NCDUofficer in the Pacific (6 NCDUs). Underwater Demolition Teams (UDT) came into being when thePacific campaign plan indicated that underwater reconns and demolitionwould be required to invade the numerous coral atolls/islands. The UDTsconsisted of approx. 100 men who worked as one team to alter 500 yardbeach lanes (where as the NCDUs worked as small 6-man teams to alter avery narrow lane on shore). The UDTs initially trained at Ft. Piercewith the NCDU training curriculum (similar to BUD/S First arrange) andthen received the UDT portion of their training in Maui. For those ofyou who experience Moki Martin his create would watch the demolition trainingfrom the beach on Maui. After WWII the NCDUs were disestablished. UDTs continued onthrough Korea. Vietnam and finally were redesignated as SEAL Teams in1983. His move back and forth will be at Rosecrans Pt Loma San Diego CA. Repo It's desire being mad at a map for not being a cookbook. Some people just expect too much of their respective sources. "You can be a pacifist it is your right. Pacifists rest on the shoulders of the dead then proclaim their love and righteousness." Tim Scott Let's go2004 KTM 950 assay. Orange (the abstain one) (**sold**) 03 R1150RT"What a waste it is to lose one's mind. Or not to have a mind is being very wasteful. How true that is."

Forex Groups - Tips on Trading

Related article:
http://www.advrider.com/forums/showthread.php?t=262376&goto=newpost

comments | Add comment | Report as Spam


 

 




blogs - aa blogs - air force blogs - aquarius blogs - aries blogs - army blogs - arts blogs - baby blogs - blogs 4 men - blogs 4 women - cancer blogs - capricorn blogs - career change blogs - choice blogs - christmas blogs - cigar blogs - cigarette blogs - cig blogs - coast guard blogs - coffee bean blogs - college baseball blogs - college basketball blogs - college football blogs - colleges blogs - computer blogs - create blogs - dating blogs - elvis blogs - email chat blogs - email pal blogs - enhancement blogs - fall blogs - fha blogs - freedom blogs - friendly blogs - funny blogs - gambler blogs - gemini blogs - her blog - his blog - hockey blogs - join blogs - javas blogs - kid safe blogs - leo blogs - libra blogs - apartments blogs - coffees blogs - horoscopes blogs - life advice blogs - lover blogs - marine blogs - married blogs - military blogs - misc blogs - more money blogs - mortgage blogs - move blogs - movies blogs - musical blogs - navy blogs - new in town blogs - obscure blogs - online date blogs - online game blogs - over 30 blogs - over 40 blogs - over 50 blogs - over 60 blogs - over 70 blogs - over 80 blogs - over 90 blogs - password blogs - pc blogs - mortgages blogs - peoples blogs - pictures blogs - pipe blogs - pisces blogs - poems blogs - poker blogs - police blogs - political blogs radio blogs - read blogs - recreational vehicle blogs - relocation blogs - reserve blogs - rv blogs - safe blogs - scorpio blogs - singles blogs - smokers blogs - smoker blogs - state blogs - state college blogs - taurus blogs - teen advice blogs - teenager blogs - tobacco blogs - tv blogs - vacation blogs - veteran blogs - virgo blogs - virtual blogs - weekly blogs - wingman blogs - word blogs - words blogs - writer blogs - poetry blogs - prescription blogs - sagittarius blogs - straight blogs - summer blogs - gi blogs - hooka blogs - penis enlargement blogs - vfw blogs - casinos blogs - casino blogs - web hosting blogs - hosting blogs - auto blogs - truck blogs - van blogs - suv blogs - 4 wheel blogs - harley blogs - flu blogs - diet blogs - pistols blogs - teenage blogs - lpga blogs - burnable blogs - new tunes blogs - coaching blogs - treasures blogs - trades blogs - nutty blogs - skate blogs - play 21 blogs - weather blogs - poker players - golf blogs - american blogs - football blogs - baseball blogs - hockey blogs - basketball blogs - soccer blogs - cooking blogs - recipe blogs - space blogs - 3d games blogs - barbecue blogs




the udt archives:

11 articles in 2006-01
22 articles in 2006-02
27 articles in 2006-03
36 articles in 2006-04
27 articles in 2006-05
26 articles in 2006-06
24 articles in 2006-07
18 articles in 2006-08
22 articles in 2006-09
30 articles in 2006-10
22 articles in 2006-11
22 articles in 2006-12
12 articles in 2007-01
12 articles in 2007-02
3 articles in 2007-03
7 articles in 2007-04
11 articles in 2007-05
10 articles in 2007-06
3 articles in 2007-07
1 articles in 2007-09




next page


udt