Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
all groups > c# > october 2003 > threads for wednesday october 8

Filter by Day: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

How to display multilines in textbox
Posted by Tom at 10/8/2003 11:20:47 PM
Hi, Here is the code: this.textBox1.AcceptsReturn = true; this.textBox1.Multiline = true; this.textBox1.Name = "textBox1"; this.textBox1.ReadOnly = true; this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both; this.textBox1.Size = new System.Drawing.Size(552, 296); this.textBo...more >>


Classic DLL Library
Posted by Krzysztof at 10/8/2003 10:59:48 PM
Hi all I'm newbee in creating dll library, and I have one "nonstandard" question... I must in VS.Net create classic library for WinNT4. How do this? I choose ClassLibrary project but is that all? What I must set in property to create classic dll? Regards Krzysztof ...more >>

Threading issue: can't see controls even though visible = true
Posted by shaunlandau NO[at]SPAM hotmail.com at 10/8/2003 10:02:32 PM
I have a C# winforms app in which I am calling a method on a different thread, using the Thread.Start() method. The method that is being executed on the new thread attempts to make a button visible and a panel visible after doing some work asynchronously. The button and panel are private to the ...more >>

test
Posted by zwerg at 10/8/2003 9:54:44 PM
test ...more >>

UML and C#
Posted by Errlord at 10/8/2003 9:53:18 PM
Hi, Since C# is supposed to be an OO language is there any UML tool on the market that is C# embeded like TCC is for java. Is there any tool like that for C# Thanks ...more >>

Setting thread priority to low(est)
Posted by Stu Banter at 10/8/2003 9:45:20 PM
I have a couple of small single-thread Console utilities doing cpu-intensive stuff. Is there an easy way to set the program execution priority to LOW from within the program ? Now I pause the things first and invoke TaskManager and manually set the priority... A bit cumbersome. ...more >>

PrintDocument
Posted by JMMB at 10/8/2003 9:28:34 PM
A PrintDocument created in a Windows Apps is printer device independent? No problems with older printers? thanks, ...more >>

Windows messags
Posted by JMMB at 10/8/2003 9:25:09 PM
How can I capture Windows OS events (messages)? thanks a lot. ...more >>



ValueType
Posted by Shawn B. at 10/8/2003 9:14:05 PM
Greetings, Is it possible to create a custom ValueType object in C#? Or must I use managed C++ for that? Thanks, Shawn ...more >>

calling unmanaged c++
Posted by Jacob Gladish at 10/8/2003 9:07:54 PM
Can someone provide a small snippet of how to call unmanaged c++ from within a c# application. The code is in a .lib file, and not in a .dll. Can you include headers in c# !!??? ...more >>

Parsing text containing tabs
Posted by Johan Goris at 10/8/2003 8:54:01 PM
What is the best way to parse text containing tabs by using Regex? Is this already correct? What can be added? private string[] SplitsOp(ref string teDoen) { int counter = 1; int count1; Regex expression = new Regex(@".*\t"); string[] s = new string[count1]; // I want to equal ...more >>

Stripping a DateTime Object of its time value
Posted by tariq at 10/8/2003 8:42:12 PM
Hi, Any knows how i can strip a Date time object of the time value in it. My current approach is tempdate = DateTime.Parse(tempDate.ToShortDateString()); Looks quite nasty. Anyone knows of a better way? - T ...more >>

Reclaiming asp.net memory
Posted by Alvin Bruney at 10/8/2003 8:41:41 PM
Interesting problem here. Asp.net does not immediately give back its memory. How can i force it to give back this memory? I thought of having a scheduled low priority thread running in the background for my app, cleaning unused static objects and possibly calling the garbage collector manually. ...more >>

Stack trace dump of the system and deadlock detection.
Posted by muscha at 10/8/2003 7:45:12 PM
Hello, Is there a function like CTRL-Backspace in .Net / C# like in Java? I suspect there is a deadlock in my code and I am trying to find it. thanks, /m ...more >>

How to write a string to a file in non-default encoding mode when use AppendText() function.
Posted by krondor NO[at]SPAM dreamwiz.com at 10/8/2003 7:10:05 PM
I've tried to record some data to the file with C#. The data should be added in the end of log file, And If there is no log file, A new log file should be created to write the data for that reason, AppendText() function used to open the log file. but AppendText() returns StreamWriter object u...more >>

JXTA Implementation
Posted by andreas christensen at 10/8/2003 6:59:24 PM
Hi, does anybody knows a JXTA Implementation under C#?? Thx AC ...more >>

Need Help From Expert
Posted by Kate Luu at 10/8/2003 6:57:11 PM
I have down load some source codes from the internet and it wasn't worked right, but I'm really know what's wrong about it. May some expert help me please...I'm deeply appreciated for your help. Have a nice day... Kate the code look like this: string strPersonSchema = "PersonPet.xsd...more >>

Getting rowcount from a stored procedure
Posted by Richard G at 10/8/2003 6:50:28 PM
I'm a database guy, so go easy on me here. :) How can I get the rowcount of the affected rows of a SQL statement from a stored procedure call? I know that "set nocount on" does not return the number of affected rows to the client, so I would assume that "set nocount off" sends the number of a...more >>

Help !
Posted by Gary at 10/8/2003 6:45:46 PM
Hi, I am developing a windows application in C# using Visual Studio .Net IDE. The application has a standard Menu bar which is visible on the top of the screen. The items of the Menu bar are 1. File 2. Edit 3. Tools 4. Help Short cuts are also there for user to select a menu item. N...more >>

outlook express style toolbar
Posted by Saso Zagoranski at 10/8/2003 5:58:01 PM
Hi! I would like to know whether it is possible to modify the existing Toolbar class so it would look like MS Outlook's toolbar. Has anyone done this already? Thanks, Saso ...more >>

problem binding comboBox to dataset
Posted by Omar at 10/8/2003 5:51:35 PM
When I try to databind my comboBox (specifically field "emplcode") to a filled dataset , the contents of the comboBox displays a bunch of "System.Data.DataRowView". I assume the amount of times "System.Data.DataR..." is displayed inside the combobox is the amount of records in the dataset. On t...more >>

thread context switch question
Posted by William Stacey at 10/8/2003 5:21:37 PM
Using the following code sample: public byte[] Get() { // <= Possible to switch Here?? lock(syncLock) { //Do something in Get(). } } It is possible for a thread switch to happen after a method is entered, but before the first line of code in the method? I am thin...more >>

Socket dont really close. Please help microsoft MVP!
Posted by AA at 10/8/2003 5:16:16 PM
This is making me crazy!! Please, if some body can help me. I'm testing a ver simple socket client. In my test I just open and close a connection (in a loop) to my local IIS server (port 80) using System.Net.Sockets; for (int I = 0; I < 5000; I++) { TcpClient myCl...more >>

Extended Sorted List
Posted by Cybertof at 10/8/2003 5:15:39 PM
Hi ! I would like to make an array of structure (collection ?) that would behave like an advanced sorted list : a sorted list with one key but with multiple values (sorted lists are key/value items). - indexed by value index or by key (2 indexers) - sortable by key or a secondary key - s...more >>

robots.txt parser
Posted by muscha at 10/8/2003 4:41:04 PM
Hello all, Does anyone know an open source implementation of robots.txt parser in c# (or java)? thanks, /m ...more >>

Blocking with TCP Sockets
Posted by Logan McKinley at 10/8/2003 4:35:46 PM
I have a C# program that uses blocking sockets and want to allow the user to stop the server. The problem I am having is the socket blocks on -------------------------------------------------------------- listener = new System.Net.Sockets.TcpListener(6254); listener.Start(); //skt is a socket ...more >>

Add Reference (SolutionExplorer/Using keyword)
Posted by Cybertof at 10/8/2003 4:17:23 PM
Hello, What is the difference between : - adding a new reference to a namespace within the SolutionExplorer (right click, Add Reference...) - adding a new reference with the 'using' keyword in the source code For example, System.Windows.Forms is both in the SolutionExplorer and in the u...more >>

Kind of Eval needed
Posted by Nicolas at 10/8/2003 4:06:35 PM
How can I do this in Csharp private void applyColor(Control ctr, string oProperty, Color newVal) { ctr.oProperty= newVal; } Need to Evaluate (ctr.oProperty) so the program understand for example (this.Button1.BackColor = newVal) Than you for your help ...more >>

Referencing a control on MDI Parent
Posted by George at 10/8/2003 3:57:47 PM
I am just moving from VB to C# so I hope this isn't going to be too obvious... I am trying to reference a control (status bar) on an MDI parent from a child form and can't seem to get the syntax correct. I have made the control public on the parent form yet get this to work. Can anyone point...more >>

recurse through members of an enum
Posted by Laszlo Szijarto at 10/8/2003 3:48:57 PM
What's the best way to recurse through the members of an enum? I want to take an enum and dump into a ListBox the enum's names. Thank you, Laszlo ...more >>

Installer question
Posted by Patrick De Ridder at 10/8/2003 3:39:47 PM
Having created an installer, following the steps according to "Walkthrough: Deploying a Windows Application": upon using the installer, as would a client to whom the software has been supplied (by testing the installer as it appears in my directory), I get the error <setup prog name>.vdproj not ...more >>

Getting strange InteropServices.SEHException exception
Posted by MJB at 10/8/2003 3:32:32 PM
I never get the above exception in Windows 2k. It only happens in Windows XP, which is the first oddity. My application is multi-threaded and I use the webbrowser control and media player. The exception normally occurs when I open the browser control or media control, but sometimes it just ...more >>

Problems with Crystal
Posted by Roger Boesch at 10/8/2003 3:23:52 PM
I try to set the connection parameters with the following code, but the password is not set after a call to ApplyLogOnInfo. What i am doing wrong ?? The call of TestConnectivity() brings: "Invalid Connection Parameter", but the values are correct. // Get the ConnectionInfo Object. Ta...more >>

hex value
Posted by RickN at 10/8/2003 3:00:11 PM
I want to set a char value to hex 1D, what is the best way to do this? Thanks, RickN ...more >>

Bluffing or what?
Posted by Alvin Bruney at 10/8/2003 2:59:28 PM
I'm looking at this guy's resume to call him in for an interview and he lists VisualStudio.Net 2003 5 years. C'mon. Is that really possible? He hasn't worked or consulted for MS either. ...more >>

How to prevent RowChanging event when filling dataset
Posted by J at 10/8/2003 2:10:12 PM
I'm experimenting with strongly typed datasets, and when the .Fill method is called, the RowChanging fires for each row. This causes a problem when the existing data does not adhere to the rules outlined in the RowChanging method. Is there an easy way to not have the RowChanging event occur whe...more >>

DataGrid -- when do selected rows end up on clipboard?
Posted by danielle_nm NO[at]SPAM yahoo.com at 10/8/2003 2:08:20 PM
Hi, I would like to understand when a selected cell, selected row or selected rows in the DataGrid control ends up on the clipboard. All I know is that the selection ends up on the clipboard, because when I issue a copy command then paste to an editor, the selected datagrid cell(s) end up on...more >>

Get Hashtable Object Directly
Posted by John E at 10/8/2003 1:36:28 PM
Is there any way to directly get the object stored in a hashtable simply by using the key (without implementing an Enumerator)? ...more >>

method for retrieving values from INI file (but encrypted)
Posted by Omar at 10/8/2003 1:26:59 PM
My app has to be able to read values from an external configuration file (preferably an INI). The problem is that this INI file will contain secure information (eg. SQL server authentication) and, since an INI is a text file, anybody that opens the file will be able to read this sensitive info. ...more >>

multithreaded windows service? threadstart doesn't get called
Posted by n_o_s_p_a__m NO[at]SPAM mail.com at 10/8/2003 1:21:28 PM
I run my multithreaded classes (class library) in a standard exe host, works with no problems; but once hosted in SCM, the threads are not spawned, yet no exceptions are thrown. Is this some kind of limitation?...more >>

Creating objects at runtime
Posted by Kimmo Laine at 10/8/2003 1:08:07 PM
Hello, (how) can i do the following (in C#)? // . . . class MyForm : Form { // . . . protected Button myButton = null; protected TextBox myTB = null; protected void AddControl( ref Control ctrl, string strType, Size s, Point pt, string txt ) { ctrl = new < ...more >>

Intellisence for a custom object
Posted by Bene at 10/8/2003 12:59:37 PM
Hey, I created a custom object. For the public properties I used /// <summary> /// xxx ///</summary and i used also the [description]- attribute. I build a dll and referenced to it from another application. The control works fine, but there is no intellisence and no description in ...more >>

Structure Declaration (class level or proc level)
Posted by Cybertof at 10/8/2003 12:26:10 PM
Hello, I would like to understand the difference between declaring a structure/variable in a class body, and doing the same thing in a procedure body. Example : In the following code, what are the differences between mCustomer1 & mCustomer2 ? class MyClass { struct CustomerStruc...more >>

Convert from VBA double to NET double
Posted by Henke at 10/8/2003 12:25:53 PM
Hi I'm porting an old VBA-application to C#. All data i stored in files and this files needs to be converted to NET data types. If I try to read a data file with a BinaryRead object and uses the ReadDouble the value doesn't get correct converted. How should this data be read from file to be abl...more >>

[COM] How to use the .idl ?
Posted by Vincent Lascaux at 10/8/2003 12:23:05 PM
Hi, I need to implement the IDownloadManager interface. I found the files DownloadMgr.h and DownloadMgr.idl that define this interface, but I dont know what to do know ;-) I saw somewhere that I need to use the midl tool... so, C:\Temp\Include>midl downloadmgr.idl 'midl' n'est pas reconnu ...more >>

How to change the BGcolor of DateTimePicker ?
Posted by CYShao at 10/8/2003 11:33:43 AM
How to change the BGcolor of DateTimePicker ? I fialed to find any attributes of this, but only found BGcolor of calendar. How can I change the BGcolor of DateTimePicker window? Thanks CYShao ...more >>

Create pop3 mailboxes progmatically
Posted by Ron Vecchi at 10/8/2003 11:32:48 AM
I a runnning w2k3 pop3 mail server that came with iis6. I would like to write an application that progammtically creates the new mailboxes in an already established mail domain. Does anyone know how I would access this funcationality? Thanks, Ron Vecchi ...more >>

How can i compare an integer value with a string variable?
Posted by Vaj at 10/8/2003 11:11:38 AM
Hi, when i'm Validating the Age TextBox like this if(txtAge.Text>125) reqage.ErrorMessage=3D"age should be less than = 125"; [reqage--its a requiredfieldvalidator, txtAge.Text contains only integer = values ]. I'm getting an errormessage "cannot use > to compare a string with an = inte...more >>

Datagrid GridColumnStyles not showing checkbox
Posted by Paul Sampson at 10/8/2003 10:32:34 AM
Hello, I've added a TableStyle and two GridColumnStyles to my datagrid in design mode, to allow setting the size of the columns. This works fine (even though it's WAY too complicated for something so simple). However, prior to this the second column was a checkbox, reflecting the underlying...more >>

Populating DropdownCombo
Posted by Vaj at 10/8/2003 10:02:51 AM
Hi, I've a combobox ,I'm populating that combo from my database using , DropCountry.DataSource=3Drsreader2;DropCountry.DataTextField=3D"Country";= DropCountry.DataValueField=3D"idcntry";DropCountry.DataBind(); I'm storing ID in Datavalue field and it's country name in = DataTextField for d...more >>

Can Arraylist store string aswell as integer values
Posted by Vaj at 10/8/2003 9:55:33 AM
Hi, I'm attaching a code here.this code works successfully, But my doubt is, Can an arraylist store this integer value "J" as wellas string value "S" ArrayList ArrMM=new ArrayList(); for(int j=1;j<=12;j++) {if(j<10) {string s="0" + j;ArrMM.Add(s);} else {ArrMM.Add(j);} } Can anyon...more >>

"cannot serialize interface" error in web service, help please
Posted by n_o_s_p_a__m NO[at]SPAM mail.com at 10/8/2003 9:35:13 AM
My web service has a webmethod whose return type is declared as an interface type, for example: [WebMethod()] public IBusinessProcess GetBusinessProcess() {} which generates the lovely error: Cannot serialize interface IBusinessProcess The returned object (which implements IBusinessPro...more >>

Displaying XML in ie form
Posted by chawes7420 NO[at]SPAM aol.com at 10/8/2003 9:14:52 AM
Can anyone tell me where I can find information or examples on how to create an instance of the WebBrowser control and display the XML in there so that it is nicely formatted, using C#....more >>

parse text object for INT string?
Posted by Stephen Russell at 10/8/2003 9:14:21 AM
I have been tasked to run through textbox and determine it's numeric equivalent. ALL-13A, FLR-145, ZX-1X MAK-145ZD are all valid data in the textbox. 13, 145, 1, 145 are the values I need to pull out. How can I find the telltale "-" mark? And then is there a function like IsNumeric? T...more >>

How do I get version resources from the executing assembly?
Posted by Frank T. Clark at 10/8/2003 9:10:17 AM
I am having trouble trying to retrieve the version resources of the executing assembly at runtime. I want to retrieve AssemblyTitle, AssemblyDescription, AssemblyCompany, AssemblyProduct, and AssemblyCopyright.I assume it has something to do with GetExecutingAssembly. What am I missing? A line o...more >>

C# vs MVC/C
Posted by Umesh Balani at 10/8/2003 9:08:34 AM
Hi Guys, I am going ahead with creating an application that is going to feature all the components that you see in MSN Messenger. i.e. - IM/Presence - Application Sharing - Audio - Video I want someone to tell me, how much of an intrinsic support is there in C# to allow ...more >>

Create New EventLog
Posted by Stefan at 10/8/2003 8:19:42 AM
Hi NG I try to create a new EventSource in an asp.net projetct with the following code but I always get the error Registry access nod allowed... I changed the userName in the processModell of my machine.config file to SYSTEM. What else do I have to do? try { if (!System.Diagnostics.EventLog...more >>

C Sharp Certification PLEASE HELP
Posted by vanessabj NO[at]SPAM free.linux.net.mk at 10/8/2003 7:47:12 AM
Hi. I am an amateur C# enthusiast. I currently work as a carpenter and I moonlight on the weekends as a photographer. I'm trying to transition a career change. Is there an exam that leads to certification in C# like there is with Java? How much of the exam will rely on memorization? How much...more >>

how to turn off "missing xml comment" warnings ?
Posted by n_o_s_p_a__m NO[at]SPAM mail.com at 10/8/2003 7:05:40 AM
someone please advise...more >>

Can the dll used in no touch deployment have unsafe blocks
Posted by smlewis NO[at]SPAM lordjoe.com at 10/8/2003 6:46:31 AM
What are the restrications on unsafe blocks using the object tag or Assembly.LoadFrom - it does not seem to work for me even with full trust of the site...more >>

C# Dot Net Platform?
Posted by Martin Schmid at 10/8/2003 6:42:28 AM
Is it possible to run C# Dot Net applications on IIS4/NT4? What are the minimum OS requirements? Thanks for any links for information! -- Thanks, Martin Schmid, EIT, CCSA, MCDBA, MCSE ...more >>

Help...chat like connection for web page...update on the fly
Posted by jaybald NO[at]SPAM yahoo.com at 10/8/2003 6:40:09 AM
Hello, I am trying to create a web client that keeps a connection to the server. Whenever the server updates information I want it to force the client to update the information. An example of this would be if I had a server that had play by play information about a football game and the c...more >>

File upload using c# application to an asp on the server
Posted by John Woo at 10/8/2003 4:30:29 AM
How do I upload a file to an ASP page using a C# application(client). The client side is c# application which takes the filename. and the server side is written in asp. John *** Sent via Developersdex http://www.developersdex.com *** Don't just participate in USENET...get rewarded fo...more >>

Automating Source Safe
Posted by Peter Tragardh at 10/8/2003 4:02:58 AM
Is it possible to automate Source Safe the way Office is automated by writing your own code? What I would like to do is to create some code to enhance Source Safe, to customize it. There is an official object model for Office. Does one like it exist for Source Safe? /Peter...more >>

download complete
Posted by dagda1 NO[at]SPAM hotmail.com at 10/8/2003 3:23:33 AM
Hi all, I am in a bit of a quandry. We have a change to make to an existing windows service which polls a folder at configurable times and if a certain file is found, it is ftp'd to a remote directory. We have a new requirement where by we are now downloading large files to UNIX. We have ...more >>

text display in textbox with timer
Posted by Tom at 10/8/2003 3:12:53 AM
Hi, I want to display a text "Hello" in a textbox for every 30 seconds. How can I do this? I saw the code [code] static void Main() { Application.Run(new main()); } private void textBox1_TextChanged(object sender, System.EventArgs e) { } [/code] Do I need to make use of...more >>

Why is this bad practice
Posted by philipl NO[at]SPAM vistatec.ie at 10/8/2003 3:11:41 AM
hi, while reading .net framework sdk, it says that the following is bad practice, then it goes on to give an example with the very same instance of this 'bad practice'. Can someone comment on this, is it good or bad? //msdn public int Number { get { return number++; // D...more >>

Shortcuts not working when grid is readonly
Posted by Shravan at 10/8/2003 2:58:57 AM
Hi All, I am working with Windows Forms DataGrid. I am suffering with the problem described in Knowledge base article. 815252 - Form Key Events Are Not Raised When You Type in a DataGrid Cell with the KeyPreview Property Set to True Can anybody tell me whether there is any worka...more >>

Icons
Posted by marc parthoens at 10/8/2003 2:44:02 AM
We have started a c# development. We are looking for a simple way to get a collection of icons. Icons type we need: - classical windows form like exit, undo, redo, copy to clipboard, ... - database management icons like next record, last record, ... - other like Office icons, ... We wa...more >>

How to Move files into trashbox?
Posted by lu NO[at]SPAM ils.uec.ac.jp at 10/8/2003 2:32:47 AM
Dear all, Could you please tell me how to move files into trashbox? FileInfo.Delete() will delete files completely. But I want to get files back if necessary. I searched document of .net framework 1.1, but it seems like no such information. JR...more >>

I get an "The type 'System.Web.UI.UserControl' has no event
Posted by michel_mathijssen NO[at]SPAM hotmail.com at 10/8/2003 2:25:45 AM
Hi all, I just created a new usercontrol, which basicly display's a dropdowlist. For this control, I created the a new SelectedIndexChanged event to raise the SelectedIndexChanged event of the dropdowlist to the parent. This all runs fine, but every time I open a page which contains my c...more >>

Listview and Icons
Posted by Matthias Kwiedor at 10/8/2003 2:19:46 AM
I have a Listview in Detail Mode. No i create lines with ListViewItem lvwItem = new ListViewItem(); lvwItem = new System.Windows.Forms.ListViewItem(new System.Windows.Forms.ListViewItem.ListViewSubItem[] { new System.Windows.Forms.ListViewItem.ListViewSubItem(null, "text1", System.Drawing...more >>

Model-View-Controller Framework in C#
Posted by Liz at 10/8/2003 1:33:11 AM
I'm trying to get my head around using Model-View- Controller Framework in C#. I have a good book called Design Patterns in VB.NET but all the examples are in VB. Does anyone know of a C# oriented book that could help me? I just need some SIMPLE examples to help me understand the concepts....more >>

Q: Logic for TreeView
Posted by Soul at 10/8/2003 1:26:16 AM
Hi, I am learning C# at the moment. I am trying to develop a simple program that will get data from a MS Access database into a dataSet. The result of dataSet should be something like: Year Semester Code Task --------------------------------------------------- "2003" "One" "CSE902...more >>

Total Newbie
Posted by news.verizon.net at 10/8/2003 1:22:47 AM
Hello, I am new to C# and to programming. Where can I find some good online resources for learning this language? Thanks, Bill ...more >>

need help...
Posted by Corey Dyke at 10/8/2003 1:00:26 AM
K here's the situation, attached is a copy of the lab i have due next week. But I won't be around for the next few days, so I 've gotta get it done ASAP. but it's driving me crazy. We have to design a windows application for children to use for simple arithmetic. They must have an option butt...more >>


DevelopmentNow Blog