IT SOLUTIONS
Your TECHNOLOGY partner! 
-Collapse +Expand
Coder
Search Coder Group:

Advanced
-Collapse +Expand Coder Group Home
-Collapse +Expand Message Board
-Collapse +Expand Coder KB
-Collapse +Expand Coder Study Test
PRESTWOODCERTIFIED
-Collapse +Expand Coder Store
PRESTWOODSTORE
-Collapse +Expand Members Only
   ► MB LobbyAll Groups   All Groups   Print This   

Coder Message Board

Coding & OO Q&A

Coder Message Board (Q&A). Free help! Answer questions. Part of our Coder Group. This group is devoted to general coding concepts and best practices including OO and non-OO topics.

To start a new thread, choose a topic, then click [New Thread].

Coder Specific Topics

TopicThreadsPostsLast Active Thread 
Coding Techniques642
Wes Peterson
RE: Delphi vs VB... What is better...
Things change fast! Would it be important to you to have a tool that would allow you to run your applications on Windows, Mac, iPad and iPhone - from a single code-base? Delphi has a new "personality" that they call FireMonkey.  Like Delphi, it uses the same Ojbect Pascal language. But Firemo...
32 days ago
Nothing New Since Your Last Visit
General .Net Concepts311
S 0 n Y
Please Read - .aspx website with .asp code in it.
My entire website is written in .aspx, i have a voting poll that a friend made for me that was written in .asp, I have been trying to research on the internet on how exactly to get my .asp voting poll on my .aspx site. Do any of you .aspx gurus out there know a site with informat...
6 years ago
Nothing New Since Your Last Visit
Object Orientation (OO)314
radhu_75
Delphi OO
Hi, I am new to delphi and would like to understand more about OO techniques. The application I have developed uses ADO technology. I would like to know some basics of how to define a class that uses ADOQUery and ADODatabase objects to connect to the database and perform updates. As I come from VB b...
48 months ago
Nothing New Since Your Last Visit
Palm OS Developement39
Anonymous
Reply
You have many roms located in Palm Emulator folder.---Tae
16 months ago
Nothing New Since Your Last Visit
Pocket PC / Win CE Development614
Isaac
SQLCE
I use SQL server CE and VS.NET to develop application on pocket pc 2003 I have on my db about 8000 record and when I try to load the application it takes about 15 min to load is there a solution to load data faster, , thanks
8 years ago
Nothing New Since Your Last Visit

Newest Posts...

New Posts: Coder Board

More...

Thread 10 of 10
Thread Starter  

Zak
Delphi vs VB... What is better?
Hi All, , I know it's not the wright place, but I didn't other place. , , Please I want trustable & proficinal answer. What is the better Delphi or VB? Why VB is more famous than Delphi., , Note , I'm Delphi programmer., , Thanks
Posted to MB Topic: Coding Techniques
12 years ago
18 replies. Last post:

Wes
Things change fast! Would it be important to you to have a tool that would allow you to run your applications on Windows, Mac, iPad and iPhone - from a single code-base? Delphi has a new "personality" that they call FireMonkey.  Like Delphi, it uses the same Ojbect Pascal language. But Firemonkey dispenses with the older Delphi VCL (visual control library) which consisted, largely, of wrappers around existing Windows controls. Firemonkey,...
32 days ago
Nothing New Since Your Last Visit
11889
Hits

Thread 9 of 10
Thread Starter  

Langley McKelvy
ROM Files
Anyone have a Handspring Visor Deluxe ROM File? I have the USB cradle and can't get mine with out the hassle of faxing Handspring.
Posted to MB Topic: Palm OS Developement
11 years ago
2 replies. Last post:

Anonymous
You have many roms located in Palm Emulator folder.---Tae
16 months ago
Nothing New Since Your Last Visit
2323
Hits

Thread 8 of 10
Thread Starter  

Daniel Kram
Great Delphi and .Net Tool
Bought this two days ago. Easy to implement, flexible and everything it says it is: http://eurekalog.com/ Well worth the price.
Posted to MB Topic: Coding Techniques
45 months ago
1 Reply:

mprestwood
Hi Daniel, Yeah, that's a great tool. One of our members demoed it at one of our Sac Delphi user group meetings a few years ago. Mike
44 months ago
Nothing New Since Your Last Visit
1619
Hits

Thread 7 of 10
Thread Starter  

radhu_75
Delphi OO
Hi, I am new to delphi and would like to understand more about OO techniques. The application I have developed uses ADO technology. I would like to know some basics of how to define a class that uses ADOQUery and ADODatabase objects to connect to the database and perform updates. As I come from VB background I would like to convert my query methods to classes. For example, I have a pas file which has set of query statements and I would like to convert this file to a class. There is a set of functions which takes in a parameter and returns the query string as output. Function buildtestquery(paramname:string; paramname1:string):string;How to build something which is more generic as I dont want to keep increasing the number of inputs to the function as the number of parameters increases. Do I create a class which uses TParam and define the parameters from my form when I need to execute this query? Any explanation and example code will be useful for me to understand this better.Thanks.,
Posted to MB Topic: Object Orientation (OO)
48 months ago
3 replies. Last post:

rdkram
Okay. Sounds good. Sorry I could not write more, but I did not know how to wrap it up nicely inthe time I had at the moment.
47 months ago
Nothing New Since Your Last Visit
2590
Hits

Thread 6 of 10
Thread Starter  

Brian Prestwood
Silverlight = DLR + WPFe
The dynamic language runtime (DLR) browser plug in is a paired down version of the common language runtime, similar to the compact framework for Pocket PCs, that installs as a browser plug in and runs in the process space of the browser. In other words, the DLR is Microsoft's entry into the browser sand box fray (ala Sun Java and Adobe Flex). The Windows Presentation Foundation (WPF) is a new application, vs gaming, graphics engine that addresses many of the problems of the GDI. In particular, WPF dynamically scales the UI elements of your app to make the most of the available screen resolution. Ironically, at the base of WPF, the DirectX gaming engine is doing most the work. WPFe is a scaled down version of WPF designed to run in the process space of the browser and install as a browser plug in. The Microsoft marketing department saw an excellent opportunity to market these development tools to non-developers and hide the valuable technical lineage of the tools at the same t...
Posted to MB Topic: Coding Techniques
52 months ago
6 replies. Last post:

bprestwo
{Too Long}
52 months ago
Nothing New Since Your Last Visit
2429
Hits

Thread 5 of 10
Thread Starter  

swapna
Associative Array
What is the difference between a normal and an associative array with the help of an example. can i get the explanation on the same?
(Moved from knowledge base.)
Posted to MB Topic: Coding Techniques
59 months ago
1 Reply:

mprestwood
An associative array links one set of unique values with another set of values (not necessarily unique). Think of an associative array as a two column table. An array is just a set of values. Think of a regular array as a single column table. I also know associative arrays as "dynamic arrays" in ObjectPAL, a "lookup" table in DBA terms, and dictionaries or HashTables in C#. You didn't say which language you wanted an example in so here's an ...
59 months ago
Nothing New Since Your Last Visit
2688
Hits

Thread 4 of 10
Thread Starter  

S 0 n Y
Please Read - .aspx website with .asp code in it.
My entire website is written in .aspx, i have a voting poll that a friend made for me that was written in .asp, I have been trying to research on the internet on how exactly to get my .asp voting poll on my .aspx site. Do any of you .aspx gurus out there know a site with information that could help me get started in the right direction on how i can get this working correctly? Any help is appreciated, thank you very much.
Posted to MB Topic: General .Net Concepts
6 years ago
5 replies. Last post:

S 0 n Y
Thank you very much ASPguy, i hope you think of something that i wasnt able to think of. If you are unable to think of a way to get this working, do you or  anyone else have any suggestions for me to get a poll on my .aspx website ? Maybe theres a developer tool out there that has a good poll that comes with it, or maybe some good voting software that is compatible with .aspx? Any suggestions would be appreciated, thank you very mu...
6 years ago
Nothing New Since Your Last Visit
3051
Hits

Thread 3 of 10
Thread Starter  

Moet
Connecting to Paradox tables using VS.NET
How do I go about connecting to Paradox tables using VS.NET. I'm new to VS.NET and at the moment feel VB.NET is the way to go. We currently only require to read the Paradox tables (if that makes life easier). We are starting to develop Web sites and initially will access data contained within our legacy Paradox CRM applications.RegardsJon
Posted to MB Topic: General .Net Concepts
6 years ago
2 replies. Last post:

Moet
Wes,Many thanks for your reply. I have tried to follow your steps. Creating the ODBC is fine.When I come to adding the textbox and accessing the Data | Data Bindings Property I do not have an Advanced option only the '...' button which opens a form entitled 'Textbox1 DataBindings'. This form has all the properties of the textbox but no mention of enabling binding or clicking 'Add Project Datasource'I'm using VS 2003 btwRegardsJon
6 years ago
Nothing New Since Your Last Visit
2497
Hits

Thread 2 of 10
Thread Starter  

cvduk
coupling and cohesion
Need a little help. Have the question "How has OOD helped with coupling and cohesion?" Can find plenty of definitions but no real answers. Any help would be greatly appreciated.
Posted to MB Topic: Coding Techniques
11 years ago
1 Reply:

adamlum

Low coupling, high cohesion, that’s what we all aim for right (or have been instructed to aim for by Software engineering books and instructors).

 


Icon Legend:
Recent or not:
- Recent activity (within last two weeks).
- No activity last two weeks.
 Since your last logged visit:
- New to you or updated since your last visit (sign in now to activate).
- NOT new to you since your last visit (sign in now to activate).



-
  Load Time=1 seconds.
 
Print This
-
 
Have a question? Need our services? Contact us now.
--Mike Prestwood

Call: 916-726-5675

email: info@prestwood.com


385 People Online Now!!  
Online Now: Sign In to see who's online now!  Not a member? Join now. It's free!
Show More...


©1995-2013 PrestwoodBoards  [Security & Privacy]
Professional IT Services: Coding | Websites | Computer Tech