InfoPath: Passing Command Line parameters to a new form

A frequent question from InfoPath users is “How can I pass parameters to a new InfoPath form when it is created?”

Unfortunately, there’s no built-in functionality for passing command-line parameters to infopath.exe.

BUT, that doesn’t mean it can’t be done J

Note that the solution below requires the InfoPath SP-1 Preview.

Solution:

Jscript files can instantiate InfoPath with a new form from a template using NewFromSolution().  Jscript can also access the InfoPath DOM and pass parameters to it.  And finally, Jscript files can also accept command-line parameters.

Usage: 

In my case, I wanted my C# application to pass parameters to a new Form.  Basically, the user (running my App) searches the SQL database for a customer (in my case, patient) account.  They can then view/edit all of that account’s data right in the app.  The user can then select a date and time for an appointment and click “Create Encounter.”  This button calls my jscript file, passing it the ID number, date, and time that were selected.  The Jscript file creates a new InfoPath form from the template, and fills in the ID number, date, and time.  The Form Template has the “AfterChange” event for the ID number text box set so that it queries the database with that ID number, which returns that customer/patient’s information and populates all relevant fields in the Form.  It then closes InfoPath, and my application simply says “Encounter file created.”

The form’s submit code puts it in a SharePoint library with a unique filename generated from the ID number and date/time of the appointment.

Calling the script:

In VB .NET, this is a simple matter of:

Dim ProcID As Integer
Dim Proc As Process
ProcID = Shell("cscript script.js " + IDnum + " " + Date+ " " +Time + " " + AMPM)
Proc = Process.GetProcessById(ProcID)
Proc.WaitForExit(3000)
MsgBox("Form created.")

The Script:

//myscript.js
//parse parameters
if(WScript.Arguments.count()==4)
{
var param1 = WScript.Arguments.Item(0);
var param2 = WScript.Arguments.Item(1);
var param3 = WScript.Arguments.Item(2);
var param4 = WScript.Arguments.Item(3);
}
//Start the application
var oApp = new ActiveXObject("InfoPath.Application");
WScript.Echo("InfoPath Version: " + oApp.Version);
//Open an InfoPath document from the published template
var oXDocumentCollection = oApp.XDocuments;
var oXDocument = oXDocumentCollection.NewFromSolution("http://server/Forms/template.xsn";;);
// Get pointers to the target fields
var oID = oXDocument.DOM.selectSingleNode("//ID");
var oDate = oXDocument.DOM.selectSingleNode("//my:Date")
var oTime = oXDocument.DOM.selectSingleNode("//my:Time")
var oAMPM = oXDocument.DOM.selectSingleNode("//my:AMPM") 
//Update the fields
oID.text = param1;
oDate.text = param2;
oTime.text = param3;
oAMPM.text = param4;
//Submit the Form
oXDocument.Submit();
//Close up shop
oXDocumentCollection = null;
oApp.Quit();
oApp = null;

This is a ready-to-go script file and all you need to change is A) The number of parameters B) The location of your template and C) The names of the fields you wish to populate.  You also may not want to submit the file or close InfoPath.  Or you may want to use oXDocument.SaveAs();


Feedback

# re: InfoPath: Passing Command Line parameters to a new form

Is it possible to do it through C#? 9/1/2004 5:36 AM | dino07

# re: InfoPath: Passing Command Line parameters to a new form

Is it possible to pass parameters to already create infopath using ASP.NET? 12/7/2004 6:09 PM | Surenra parmar

# re: InfoPath: Passing Command Line parameters to a new form

Very effective solution to what seems to be a common problem, thanks much!

I would just add that the DOM's SelectSingleNode method is very picky about the node definition, such that it must match the 'pathing' of the query field in the Data Source task pane exactly. Thus, to preload data about a specific Widget in my database table (using just the ID field), I had to use the following line:

var oID = oXDocument.DOM.selectSingleNode("//dfs:myFields/dfs:queryFields/q:Widgets/@WidgetID");

5/27/2005 5:41 PM | jeff d.

# Passing Command Line Parameters to a New Form

Got this question from a customer, and someone else came to my rescue with info on this post
http://www.geekswithblogs.net/bpaddock/archive/2004/05/14/4907.aspx... 11/10/2005 5:41 AM | Pashman's InfoPath Goldmine

# re: InfoPath: Passing Command Line parameters to a new form

That doesn't seem to work with Infopath SP2 ?? 5/10/2006 8:23 AM | Stef T.

# re: InfoPath: Passing Command Line parameters to a new form

How to set TextBox value through javascript? I created a TextBox with name ID and used this code

var oXDocument = oXDocumentCollection.NewFromSolution("http://server/Forms/template.xsn";;);

var oID = oXDocument.DOM.selectSingleNode("//ID");

it gives me this error
" Microsoft JScript runtime error: 'oID' is null or not an object"

any idea what m i missing here? 6/14/2006 1:39 PM | Ali

# re: InfoPath: Passing Command Line parameters to a new form

I think these blog is really useful for new comers and Excellent resource list. It?s a very interesting Blog and simple answer of many questions. Keep up the good work! Thanks it helps me a lot… 4/11/2007 3:17 AM | ireadnews

# re: InfoPath: Passing Command Line parameters to a new form

I still have recurrent problems with explore your site in Internet Explorer 4.0. please fix this problem
4/16/2007 6:40 AM | 50 cent

# re: InfoPath: Passing Command Line parameters to a new form

I still have recurrent problems with explore your site in Internet Explorer 4.0. please fix this problem 4/21/2007 10:38 AM | david

# re: InfoPath: Passing Command Line parameters to a new form

Very effective solution to what seems to be a common problem, thanks much 4/27/2007 3:28 AM | Auction

# re: InfoPath: Passing Command Line parameters to a new form

it looks sooooo beautiful, thanks for showing it! man i wish i can do such a nice design. i love it. 4/30/2007 11:18 PM | celebrity news

# re: InfoPath: Passing Command Line parameters to a new form

Thanks for very interesting article. btw. I really enjoyed reading all of your posts. It’s interesting to read ideas, and observations from someone else’s point of view… makes you think more. So please keep up the great work. Greetings 5/16/2007 1:46 AM | Pozycjonowanie

# re: InfoPath: Passing Command Line parameters to a new form

Good article 5/29/2007 1:49 AM | budowa domów

# re: InfoPath: Passing Command Line parameters to a new form

Thanks for very interesting article. btw. I really enjoyed reading all of your posts. It’s interesting to read ideas, and observations from someone else’s point of view… makes you think more. So please keep up the great work. Greetings 6/9/2007 10:11 AM | robienie stron www

# re: InfoPath: Passing Command Line parameters to a new form

"I still have recurrent problems with explore your site in Internet Explorer 4.0. please fix this problem" - Who uses IE4 this days ??? 8/15/2007 8:52 PM | kompresory

# re: InfoPath: Passing Command Line parameters to a new form

ie4 ?? are you serious lol 9/7/2007 8:41 PM | antenna booster

# re: InfoPath: Passing Command Line parameters to a new form

Produkcja regałów 9/8/2007 2:14 AM | Regaly jezdne

# re: InfoPath: Passing Command Line parameters to a new form

Thanks for information. 9/13/2007 1:49 AM | freeworlddvd

# re: InfoPath: Passing Command Line parameters to a new form

Got this question from a customer, and someone else came to my rescue with info on this post htank 9/13/2007 5:18 AM | karl oyunlar

# re: InfoPath: Passing Command Line parameters to a new form

Thank You for the comments! Greetings 9/25/2007 8:31 AM | profesjonalne strony internetowe

# re: InfoPath: Passing Command Line parameters to a new form

Great site 9/30/2007 7:31 PM | pneumatyka

# re: InfoPath: Passing Command Line parameters to a new form

Very effective solution to what seems to be a common problem, thanks 10/3/2007 9:48 AM | Jungle

# re: InfoPath: Passing Command Line parameters to a new form

Worked out very well for me, thank you very much 10/4/2007 7:53 AM | Zutestrane

# re: InfoPath: Passing Command Line parameters to a new form

Interesting article!
Thanks 10/6/2007 8:11 AM | Pendrive

# re: InfoPath: Passing Command Line parameters to a new form

how can be this done in C#? 10/6/2007 8:48 AM | bottom line

# re: InfoPath: Passing Command Line parameters to a new form

Odlewy - Thanks for your article. 10/7/2007 10:26 PM | Odlewnia

# re: InfoPath: Passing Command Line parameters to a new form

Dzieki 10/17/2007 9:19 PM | Grajcie-online.com - najlepsze g

# re: InfoPath: Passing Command Line parameters to a new form

Very effective solution to what seems to be a common problem, thank you 10/21/2007 10:46 AM | Pozycjonowanie

# re: InfoPath: Passing Command Line parameters to a new form


Great job you've made on this site, it helps me with overcoming my problems 10/30/2007 8:05 PM | kompresory wroclaw

# re: InfoPath: Passing Command Line parameters to a new form

"I still have recurrent problems with explore your site in Internet Explorer 4.0. please fix this ! 11/1/2007 8:22 PM | osuszacze wrocław

# re: InfoPath: Passing Command Line parameters to a new form

Thanks for very interesting article. 11/8/2007 12:22 AM | transport międzynarodowy

# re: InfoPath: Passing Command Line parameters to a new form

Thanks for this information, workds like a charm 11/11/2007 11:55 AM | yellowpages

# re: InfoPath: Passing Command Line parameters to a new form

Thank you for this article, 11/11/2007 9:05 PM | Odlewnia

# re: InfoPath: Passing Command Line parameters to a new form

It’s very good article. Great site with very good look and perfect information.
11/14/2007 10:21 AM | Usb pendrive

# re: InfoPath: Passing Command Line parameters to a new form

Very Informative. Thanks 11/20/2007 2:20 PM | BMW body kit

# re: InfoPath: Passing Command Line parameters to a new form

great article. i like it a lot 11/21/2007 2:42 AM | hosting

# re: InfoPath: Passing Command Line parameters to a new form

I like your style of writing. Well done 11/21/2007 4:04 AM | erekcja

# re: InfoPath: Passing Command Line parameters to a new form

thanks for very interesting article. btw. I really enjoyed reading all of your posts. It’s interesting to read ideas, and observations from someone else’s point of view… makes you.. 11/28/2007 7:12 AM | proxy site

# re: InfoPath: Passing Command Line parameters to a new form

Thank you very much, i like SpamKarma2 more than akismet 11/30/2007 12:24 AM | siłowniki pneumatyczne

# www.r10.net küresel ısınmaya hayır seo yarısması

thank you you oyu 12/6/2007 3:49 AM | www.r10.net küresel ısınmaya hay

# www.r10.net küresel ısınmaya hayır seo yarısması

www.r10.net küresel ısınmaya hayır seo yarısması 12/6/2007 3:49 AM | www.r10.net küresel ısınmaya hay

# re: InfoPath: Passing Command Line parameters to a new form

What do you mean, man? 12/6/2007 11:10 AM | LC

# re: InfoPath: Passing Command Line parameters to a new form

Thanks for help, Keep up the good work.
12/10/2007 10:51 AM | emo

# re: InfoPath: Passing Command Line parameters to a new form

Interesting article! 12/19/2007 6:53 AM | Pendrive

# re: InfoPath: Passing Command Line parameters to a new form

Thank you, for very interesting article. 12/20/2007 9:35 PM | kız oyunları

# re: InfoPath: Passing Command Line parameters to a new form

SEO (Search Engine Optimization) yarışmasınının genel amacı "wmwebtr ödüllü seo yarışması" kelimesinde google da ilk üçe girebilmektir. İlk üçe girenlere sürpriz hediyeler var. 12/21/2007 8:00 PM | wmwebtr ödüllü seo yarışması

# re: InfoPath: Passing Command Line parameters to a new form

Amaç: hem eğlenmek hemde yarışma coşkusunu yaşatacak forum etkinliğidir. Bu yarışma sonucunda ilk sırada olan arkadaşımız 2007 yılının en iyi SEO'cusu seçilecek ve ödüllendirilecekdir.Ayrıca dereceye giren ilk üç kişiye sürpriz hediyeler var. 12/21/2007 8:01 PM | www.r10.net Küresel Isınmaya Hay

# re: InfoPath: Passing Command Line parameters to a new form

thanks for all.. 12/25/2007 5:29 AM | mirc

# re: InfoPath: Passing Command Line parameters to a new form

Good website - thank you 12/28/2007 1:33 PM | Hobby Articles

# re: InfoPath: Passing Command Line parameters to a new form

Hey, really nice blog, great ideas!! :)
is it possible to save a form and at the same time skip providing file name while saving???
i mean i got a form in ASPX page once it is saved the user specify the name of that instance (form
), how can i know the name he specified, so that i can rerender the same form??? or how can i skip providing file name level while saving and create a unique name whnever a form is saved???
thanks 1/7/2008 1:58 AM | OMomani

# re: InfoPath: Passing Command Line parameters to a new form

Thanks for pretty wearisome critique. btw. I genuinely enjoyed snap all of your posts. It’s waterless to read ideas, and observations zealless terran else’s point of worshipfulness… makes you conceivable altogether. So favor keep up the great planking. Greetings 1/12/2008 8:32 PM | automotive repair manual

# re: InfoPath: Passing Command Line parameters to a new form

Great article on your site. Well done 1/16/2008 8:00 PM | pozycjonowanie

# oyunlar

thanks a lott.... 1/18/2008 2:28 AM | var misin yok musun

# re: InfoPath: Passing Command Line parameters to a new form

"
oTime.text = param3;
oAMPM.text = param4;
"
I have error here :/
1/31/2008 6:44 AM | counter strike

# re: InfoPath: Passing Command Line parameters to a new form

thanks best regards 2/8/2008 2:00 AM | mirc

# re: InfoPath: Passing Command Line parameters to a new form

thank you kanksss 2/13/2008 3:17 PM | evden eve nakliyat

# re: InfoPath: Passing Command Line parameters to a new form

cok saol kanka sana varya 2/13/2008 3:18 PM | evden eve nakliyat

# re: InfoPath: Passing Command Line parameters to a new form

cok saol kankss herzaman 2/13/2008 3:19 PM | evden eve nakliyat

# re: InfoPath: Passing Command Line parameters to a new form

ah varya sen varya mujka 2/13/2008 3:20 PM | penis büyütücü

# re: InfoPath: Passing Command Line parameters to a new form

Ithankss 2/16/2008 11:07 AM | evden eve nakliyat

# re: InfoPath: Passing Command Line parameters to a new form

thanks..
2/16/2008 11:07 AM | evden eve nakliyat

# re: InfoPath: Passing Command Line parameters to a new form

Thanks for this really useful article.Great cheat sheet, I appreciate it very much. 2/22/2008 5:32 AM | dizi izle

# re: InfoPath: Passing Command Line parameters to a new form

great article. It's very interesting. Thanks a lot 2/22/2008 11:33 PM | single

# re: InfoPath: Passing Command Line parameters to a new form

Thanks . Bookmarked!
Güzel oyunlar. 2/27/2008 10:47 AM | En güzel oyunlar

# re: InfoPath: Passing Command Line parameters to a new form

thanks for this article, great site. 3/7/2008 9:45 PM | dobreprogramy

# re: InfoPath: Passing Command Line parameters to a new form

thanks, great ;] 3/7/2008 9:47 PM | download mp3

# re: InfoPath: Passing Command Line parameters to a new form

thanks adminn 3/21/2008 9:59 AM | hazır mesajlar

# sohbet

thankss yoursss 3/29/2008 9:40 AM | chat sohbet

# sohbet

thansk yours veryf good yours 3/31/2008 8:41 AM | chat sohbet

# re: InfoPath: Passing Command Line parameters to a new form

The form’s submit code puts it in a SharePoint library with a unique filename generated from the ID number and date/time of the appointment. 3/31/2008 10:55 PM | Golf cart

# re: InfoPath: Passing Command Line parameters to a new form

Very good nice 4/1/2008 7:10 AM | Klimatyzacje

# re: InfoPath: Passing Command Line parameters to a new form

Klimatyzacje Toruń - serwis - sprzedaż 4/1/2008 7:11 AM | Klimatyzacje Toruń

# re: InfoPath: Passing Command Line parameters to a new form

Rzeczoznawca Majątkowy Toruń 4/1/2008 7:12 AM | Rzeczoznawca

# re: InfoPath: Passing Command Line parameters to a new form

http://www.tricks.com.pl 4/1/2008 7:13 AM | Tricks

# re: InfoPath: Passing Command Line parameters to a new form

Przepisy kucharskie www.gicio.pl 4/1/2008 7:13 AM | Przepisy kucharskie

# re: InfoPath: Passing Command Line parameters to a new form

Kserokopiarki Toruń 4/1/2008 7:14 AM | Kserokopiarki Toruń

# re: InfoPath: Passing Command Line parameters to a new form

Thank you for your amazing site. 4/8/2008 4:36 AM | wspaniale dziewczyn

# re: InfoPath: Passing Command Line parameters to a new form

thanksssssss 4/12/2008 7:37 AM | +18 OYUN

# re: InfoPath: Passing Command Line parameters to a new form

Gotto say riight and ok for teh input

Berabere Gazeteler Gazete oku TV izle Radyo Dinle Yerel Gazeteler Dizin Haberler Resimler Oyunlar Rüya Tabirleri Süper Oyunlar Bedava Oyunlar Oyun Güzel Resimler Komik Resimler Directory 4/13/2008 11:46 AM | resimler

# re: InfoPath: Passing Command Line parameters to a new form

Very good 4/17/2008 6:20 PM | Rise

# re: InfoPath: Passing Command Line parameters to a new form

yhansk good information 4/22/2008 11:39 AM | travesti

# re: InfoPath: Passing Command Line parameters to a new form

yhansk good information but maybe some people dont understood that 4/22/2008 11:39 AM | travesti

# re: InfoPath: Passing Command Line parameters to a new form

Searching through websites I came across this article. I think it is fairly interesting considering the spam crusing about the net. Good Job. 4/25/2008 3:43 AM | szkatulki

# ask

thankss yours 4/28/2008 9:22 AM | alcak

# re: InfoPath: Passing Command Line parameters to a new form

thank you..

resim
canlı tv
rüya tabirleri 4/28/2008 12:52 PM | resim

# re: InfoPath: Passing Command Line parameters to a new form

Thanks for codes. 5/7/2008 10:25 AM | güzel resimler

# re: InfoPath: Passing Command Line parameters to a new form

Thank you for the codes. I think these will be very usefull... 5/7/2008 10:31 AM | güzel resimler

# re: InfoPath: Passing Command Line parameters to a new form

travesti
travesti
mobilyacı 5/11/2008 12:48 AM | travestş

# travesti

# MyBB sevenler seo yarışması
5/11/2008 6:23 AM | yakup

# re: InfoPath: Passing Command Line parameters to a new form

thank youor 5/11/2008 8:44 AM | mirc

# re: InfoPath: Passing Command Line parameters to a new form

resimler
resim 5/12/2008 10:00 AM | hakan

# re: InfoPath: Passing Command Line parameters to a new form

woow thanks. man 5/13/2008 4:26 AM | canlı tv

# re: InfoPath: Passing Command Line parameters to a new form

Excellent article. Just make sure you keep spam at bay... 5/16/2008 11:08 AM | Webdesign Hamburg

# re: InfoPath: Passing Command Line parameters to a new form

Great and excellent article it’s realy helpful. Thanks again. 5/18/2008 4:42 AM | bilard

# re: InfoPath: Passing Command Line parameters to a new form

thankssssss 5/21/2008 8:38 AM | +18 oyun

# re: InfoPath: Passing Command Line parameters to a new form

thanksssssstt 5/21/2008 8:38 AM | resimler

# re: InfoPath: Passing Command Line parameters to a new form

harika<br />Çarşamba<br />Carsamba<br />Samsun , Carsamba<br />Tarihi resimleri<br />Carsamba
<span class="commentInfo">5/22/2008 9:10 AM | <cite>Otel</cite> 5/27/2008 9:13 AM | Çarşamba

# re: InfoPath: Passing Command Line parameters to a new form

This is interesting article, I did not it think that it yes. Interesting it knew persons about this how much. Sorry if I wrote bad there now my English is novice and I do not it write yet good. 5/28/2008 4:59 AM | pakowanie prezentow

# re: InfoPath: Passing Command Line parameters to a new form

Great job! I’ll try a few on my website! Congratulation. 6/1/2008 11:31 PM | przepisy kulinarne

# re: InfoPath: Passing Command Line parameters to a new form

Hello.
I recently saw an article written by a professor, which confirm that what is written here. I agree with that.
:) 6/9/2008 12:57 AM | Hodowla Golebi

# re: InfoPath: Passing Command Line parameters to a new form

thans so muchsaa 6/10/2008 5:59 PM | ilahiler

# re: InfoPath: Passing Command Line parameters to a new form

Good site !!! 6/11/2008 7:13 PM | silowniki

# re: InfoPath: Passing Command Line parameters to a new form

Good ..

mirc indir<BR/>
msn indir<BR/>
mırc indir<BR/>
mirc<BR/>
halı yıkama<BR/>
koltuk yıkama<BR/>
Arkadaş<BR/>
mırc<BR/>
msn download<BR/>
msn<BR/>
msn yükle<BR/>
kız msn adresleri<BR/>
webforum<BR/>
kelebek indir<BR/>kız msnkız msnlerimsn ifadelerimsn resimlerimsn nickleri
msn adresleri<BR/>
yerinde yıkama<BR/>
oyun indir<BR/>
oyun<BR/> 6/12/2008 6:03 AM | msn

# re: InfoPath: Passing Command Line parameters to a new form

Good mirc indir<BR/>
msn indir<BR/>
mırc indir<BR/>
mirc<BR/>
halı yıkama<BR/>
koltuk yıkama<BR/>
Arkadaş<BR/>
mırc<BR/>
msn download<BR/>
msn<BR/>
msn yükle<BR/>
kız msn adresleri<BR/>
webforum<BR/>
kelebek indir<BR/>kız msnkız msnlerimsn ifadelerimsn resimlerimsn nickleri
msn adresleri<BR/>
yerinde yıkama<BR/>
oyun indir<BR/>
oyun<BR/> 6/12/2008 6:04 AM | msn

# re: InfoPath: Passing Command Line parameters to a new form

As a full time developer, this information is exceedingly useful to me. Very interesing article. Thanks for the article! :) 6/14/2008 3:30 AM | przepisy kulinarne

# video izlet ,video izlet youtub yutub yutup videolar

his is a firefox very good,But Beta :) 6/17/2008 12:03 PM | video izlet

# re: InfoPath: Passing Command Line parameters to a new form

this was an amazing post ...thanks 6/20/2008 2:26 AM | sabul

# re: InfoPath: Passing Command Line parameters to a new form

(This is a preview of your comment. It has been saved and will now be approved. It is visible only to you at this moment. It will be public in 15 minutes. There is no further action you need to take. Thanks for leaving feedback!) 6/20/2008 8:53 PM | przepisy kulinarne

# re: InfoPath: Passing Command Line parameters to a new form

mirc 6/21/2008 1:14 AM | Muhabbet

# re: InfoPath: Passing Command Line parameters to a new form



play65


paralı tavla


tavla indir

tavla

6/22/2008 7:04 AM | tavla indir

# re: InfoPath: Passing Command Line parameters to a new form

20 Mayıs Lisesi|<br />
Google|<br />
Mehmet ALP PHP Dersleri|<br />
Oktay Usta|<br />
SEO|<br />
indir|<br />
Miraç Alp|<br />
ilahi|<br />
Drift araba video|<br />
Astım
Article
indir,program yükle 6/22/2008 7:53 AM | indir

# re: InfoPath: Passing Command Line parameters to a new form

selam çok güzel 6/24/2008 3:53 AM | ilker

# re: InfoPath: Passing Command Line parameters to a new form

Webdesign Hamburg
Friseur Hamburg
Marine Surveyor Hamburg
Moderator Bremen 6/24/2008 4:40 AM | Webdesign

# re: InfoPath: Passing Command Line parameters to a new form

siirtliler forumu 6/24/2008 7:22 AM | siirt

# re: InfoPath: Passing Command Line parameters to a new form

travesti 6/27/2008 9:42 AM | travesti

# re: InfoPath: Passing Command Line parameters to a new form

thanks
travesti
Apranax
travesti 6/28/2008 3:42 AM | travesti

# adtech ile reklam 2.0 dönemi başlıyor ve Trkycmhrytllbtpydrklcktr r10.net seo yarışması

adtech ile reklam 2.0 dönemi başlıyor ve Trkycmhrytllbtpydrklcktr r10.net seo yarışması 7/2/2008 11:33 PM | adtech ile reklam 2.0 dönemi baş

# sevgi, aşk, sohbet, sohbet odaları

thanks 7/3/2008 12:25 PM | sevgi

# re: InfoPath: Passing Command Line parameters to a new form

Brilliant. Interesting to see your comments about C#. I was wondering if there were any C programmers still around, now that Python and Ruby appear to have taken over the majority of the scene. I guess you can't really do the major applications in Ruby or Python, C is still the best and most effective when it comes to those sort of applications. Interesting article, by the way, I've got lots still to learn!
7/4/2008 9:40 PM | jewellery