[DotNetDevelopment] Re: question about initializing an instance variable

2011-02-13 Thread lauhw
If you drag the MyClass control to a winform, then, MyClass.Var should have been set to some value in the form designer (ie, design time). At the runtime, the actual value will load the design time value instead of the value set in the constructor.

[DotNetDevelopment] Re: question about initializing an instance variable

2011-02-10 Thread Cerebrus
That is only a matter of coding style, nothing wrong with it. I use the same style. On Feb 11, 2:38 am, iDesmet wrote: > Why are you using directly mVar instead of using the public property > Var? >

[DotNetDevelopment] Re: question about initializing an instance variable

2011-02-10 Thread Cerebrus
It should. It appears that the mVar is being set to 1 someplace. On Feb 10, 8:16 pm, jacksmash wrote: > public class MyClass : UserControl > { >   private int mVar; > >   public int Var >   { >      get {return mVar;} >      set {mVar = value;} >   } > >   public MyClass() >   { >     mVar = 8; >

[DotNetDevelopment] Re: question about initializing an instance variable

2011-02-10 Thread iDesmet
Why are you using directly mVar instead of using the public property Var? On Feb 10, 9:16 am, jacksmash wrote: > public class MyClass : UserControl > { >   private int mVar; > >   public int Var >   { >      get {return mVar;} >      set {mVar = value;} >   } > >   public MyClass() >   { >     m

Re: [DotNetDevelopment] Re: Question about navigating through records

2011-01-12 Thread Arsalan Tamiz
If you are talking about Physical Database e.g. Access, SQL Server, then they won't update in this way. Normally Data binding is done in memory which means all your updates will also take place in memory. You have to TableAdapter, SQLCommand, etc. to replicate the updates in physical database. On

[DotNetDevelopment] Re: Question about navigating through records

2011-01-12 Thread Markei54545
Thanks for that. Forgot to mention, when I make changes to my records using the databound fields, they don't update the underlying database as expected. Any ideas? Thanks On Jan 10, 6:32 am, Arsalan Tamiz wrote: > BingindSource.MoveNext() > > > > On Sun, Jan 9, 2011 at 1:35 AM, Markei54545 wro

Re: [DotNetDevelopment] Re: Question about Try Catch statements with multiple catch (VB.Net)

2010-11-15 Thread Jamie Fraser
No, it doesn't "miss" them, but they have already been caught by the block of code above. On Sat, Nov 13, 2010 at 5:22 PM, Davej wrote: > > > So does this miss IO exceptions? > > Catch ex As Exception > MsgBox("Error: " & ex.message) > End Try >

[DotNetDevelopment] Re: Question about Try Catch statements with multiple catch (VB.Net)

2010-11-14 Thread Davej
On Nov 11, 10:50 am, OliE wrote: > Hi all, > > my co-worker and I had an argument about try catchs, so I thought > about asking everyone here since I can't find an answer over my > internets :P > > I found something I find weird in one of his try catch in his code. > Instead of having multiple cat

[DotNetDevelopment] Re: Question about Try Catch statements with multiple catch (VB.Net)

2010-11-14 Thread OliE
Thanks for the replies. I still have a doubt that I might be wrong considering this article : http://www.codeproject.com/KB/architecture/exceptionbestpractices.aspx?fid=151762&df=90&mpp=25&noise=3&sort=Position&view=Quick&fr=51 My doubt comes from the section "Don't catch (Exception) more than o

[DotNetDevelopment] Re: Question about Try Catch statements with multiple catch (VB.Net)

2010-11-12 Thread Benj Nunez
The second one is correct and is the widely-accepted practice. Syntax and semantics aside, even in Java we were taught to catch *specific* exceptions first and the general exception (or the "catch- all" exception block) last. Regards, Benj On Nov 12, 12:50 am, OliE wrote: > Hi all, > >

Re: [DotNetDevelopment] Re: question

2010-03-03 Thread Saji K Nambiar
Thanks Kiran ..this is exactly what I was looking for. On Wed, Mar 3, 2010 at 1:24 AM, Processor Devil wrote: > I know we had some lesson about that... > > What is the time? > Can you please tell me what the time is. > I don't know what the time is. > etc. > > I haven't got any English lessons no

Re: [DotNetDevelopment] Re: question

2010-03-02 Thread Processor Devil
I know we had some lesson about that... What is the time? Can you please tell me what the time is. I don't know what the time is. etc. I haven't got any English lessons now, I am a working man :D 2010/3/3 Cerebrus > Nope, it correctly ends with a question mark. > > "Can you please stay awake i

Re: [DotNetDevelopment] Re: question

2010-03-02 Thread Kiran Raj
You should have tried *code project. *anyway try this http://www.codeproject.com/KB/aspnet/weather.aspx On Tue, Mar 2, 2010 at 9:11 PM, Saji K Nambiar wrote: > I am aware that I have to use screen scraping...i was wondering if someone > has a r

[DotNetDevelopment] Re: question

2010-03-02 Thread Cerebrus
Nope, it correctly ends with a question mark. "Can you please stay awake in the English class, henceforth ?" ;-) On Mar 2, 6:25 pm, Processor Devil wrote: > Shouldn't the sentence "Can you please tell me how I can do it" end with dot > instead of a question mark? > I am not sure about that, I w

Re: [DotNetDevelopment] Re: question

2010-03-02 Thread Saji K Nambiar
I am aware that I have to use screen scraping...i was wondering if someone has a ready made code : ... @Processor Devil :Thanks for the English lesson.. :) ... On Tue, Mar 2, 2010 at 8:25 AM, Processor Devil wrote: > Shouldn't the sentence "Can you please tell me how I can do it" end with

Re: [DotNetDevelopment] Re: question

2010-03-02 Thread Processor Devil
Shouldn't the sentence "Can you please tell me how I can do it" end with dot instead of a question mark? I am not sure about that, I was sleeping during that English lesson... :D 2010/3/2 Cerebrus > I fixed your post for you : > > P.S: This group has some good resources/threads on the subject, t

[DotNetDevelopment] Re: question

2010-03-02 Thread Cerebrus
I fixed your post for you : P.S: This group has some good resources/threads on the subject, too. On Mar 2, 10:31 am, Kiran Raj <23ki...@gmail.com> wrote: > you need to look into "screen scraping". > i don't have much idea on that but you can you use the keywords in google > search. >

[DotNetDevelopment] Re: Question about VB IDEs

2010-01-29 Thread Steve
Hi Alan VB 6.0 is in effect, completely different. VB.NET uses the .net framework and as such, will not work in vb6. There is an upgrade process for vb6 applications to .net however its not perfect and it usually means rewriting alot of code. Steve http://www.srsoftware.co.uk On Jan 28, 3:09 am,

[DotNetDevelopment] Re: Question about VB IDEs

2010-01-28 Thread Benj Nunez
It will not as indicated here: http://www.thescarms.com/vbasic/VB6vsVBNet.aspx Regards, Benj On Jan 28, 11:09 am, Alan wrote: > In terms of compatible code, is Visual Basic 2008 Express Edition > compatible with Microsoft VB 6.0 Enterprise Edition?  That is, if I > develop code in the firs

[DotNetDevelopment] Re: Question about how to recover a corrupted .NET installation

2009-11-25 Thread Carfield Yim
It already done and too bad the problem still there On Nov 24, 8:53 pm, Raghupathi Kamuni wrote: > Repair the installation using .NET software CDs > > On Tue, Nov 24, 2009 at 10:15 AM, Carfield Yim wrote: > > There is a .NET application I run fine for a long time, then due to > > change project

[DotNetDevelopment] Re: Question about IList and inheritance

2009-03-25 Thread graphicsxp
Thanks to both of you for the help. You are right, and I think the only way I've got is to do what Joe suggested, i.e looping through the elements. Thanks On 24 mar, 17:46, tomilay wrote: > What you are actually doing is trying to cast an IList into a List > (casting an interface into a concret

[DotNetDevelopment] Re: Question about IList and inheritance

2009-03-24 Thread tomilay
What you are actually doing is trying to cast an IList into a List (casting an interface into a concrete object). This seems odd to me. What happens if you try IList myPosts = posts; I am just doing mental arithmetic here since my .NET environment is down and am unable to make more specific sug

[DotNetDevelopment] Re: Question about IList and inheritance

2009-03-24 Thread tomilay
In addition my previous post. What you are doing is attempting to convert and IList into a List. This casting is troublesome because while an List implements IList, not every IList is a List. That is the problem I see with your code. There is no way that the framework will know how to convert

[DotNetDevelopment] Re: Question about IList and inheritance

2009-03-24 Thread Joe Enos
I was thinking of IList, not IList - sorry about that - the constructor only accepts a type-safe collection. If you need a List from a non-type-safe collection, you'll have to manually convert it to a List: List postList = new List(posts.Count); foreach (Post post in posts) { postList.Add(post)

[DotNetDevelopment] Re: Question about IList and inheritance

2009-03-24 Thread graphicsxp
Thanks, I've tried your suggestion but I get a compilation error : Cannot resolve constructor 'List(System.Collections.IList)', candidates are : List(int) (in class List) List(System.Collections.Generic.IEnumerable) (in class List) Any idea what I can do ? On 20 mar, 14:18, Joe Enos wrote: > W

[DotNetDevelopment] Re: Question about IList and inheritance

2009-03-20 Thread Joe Enos
When you're doing a direct cast like that, if the variable is not of type List or a descendant, then the cast will not succeed. Your "posts" variable is apparently of type Post[] or Collection or ArrayList or something other than List, which means a direct cast is impossible. Collection types ar

[DotNetDevelopment] Re: Question regarding ThreadPool

2009-02-28 Thread Bhargav Patel
Simply Join All Threads one By One On 2/24/09, Benj Nunez wrote: > > " Is there any other way I can wait for all threads to > complete ?" > > > Hi there, > > This article might give you a clue: > > http://www.codeproject.com/KB/threads/waitforthreads.aspx > > > Cheers, > > > Benj > > > > On Feb

[DotNetDevelopment] Re: Question on ListView and CheckedItems property

2009-02-26 Thread Cerebrus
Hmm.. thanks for letting us know. Sure had me wondering because nothing was obviously wrong with the presented code. :-) On Feb 27, 9:14 am, Tom wrote: > Never mind.  The code works fine.  I had another problem which caused > this code to seem like it was not working. > > On Feb 25, 4:49 pm, Tom

[DotNetDevelopment] Re: Question on ListView and CheckedItems property

2009-02-26 Thread Tom
Never mind. The code works fine. I had another problem which caused this code to seem like it was not working. On Feb 25, 4:49 pm, Tom wrote: > My application reads the file names in a folder and presents the data > in a ListView on a form.  The CheckBoxes property on the ListView is > true.  

[DotNetDevelopment] Re: Question regarding ThreadPool

2009-02-23 Thread Benj Nunez
" Is there any other way I can wait for all threads to complete ?" Hi there, This article might give you a clue: http://www.codeproject.com/KB/threads/waitforthreads.aspx Cheers, Benj On Feb 23, 10:56 pm, graphicsxp wrote: > Actually SetMaxThreads does work, I wasn't testing properly.

[DotNetDevelopment] Re: Question regarding ThreadPool

2009-02-23 Thread graphicsxp
Actually SetMaxThreads does work, I wasn't testing properly. If I do : ThreadPool.SetMaxThreads(2, 2); I can see my threads being queued to the pool, but then they only complete by batch of two, which is exactly what I would expect :) I have another question though. I'm using an array of Manual

[DotNetDevelopment] Re: question

2008-12-08 Thread Cerebrus
The problem being that many interviewers use those same internet resources to come up with "latest interview questions". So the interviewee could well find that the question being asked is just the one he prepared for. ;-) On Dec 8, 2:25 pm, CK <[EMAIL PROTECTED]> wrote: > Interview questions are

[DotNetDevelopment] Re: question

2008-12-08 Thread CK
Interview questions are rubbish. Anyone can practise for questions. A much better test at an interview is to get someone to actually write some code and you watch. Then you can see how competent they are. On 5 Dec, 10:09, "kishor kumar" <[EMAIL PROTECTED]> wrote: > Deal all, > > Anybody have do

[DotNetDevelopment] Re: question

2008-12-07 Thread Stratum
On Dec 7, 8:44 am, Stratum <[EMAIL PROTECTED]> wrote: > I might also you suggest in your spare time, if you have any, > that you *invent* an example of usage to back up each answer > you find. This sentence should read: I might also suggest that in your spare time, if you have any, that

[DotNetDevelopment] Re: question

2008-12-07 Thread Stratum
On Dec 5, 2:09 am, "kishor kumar" <[EMAIL PROTECTED]> wrote: > Deal all, > > Anybody have dot net interview question pls just share with me . its urgent. Heh. It's time for an enterprising author to write (or I should say "put together") a book with a thousand C# interview questions. I'm not

[DotNetDevelopment] Re: question

2008-12-07 Thread Cerebrus
Tell that to the OP. ;-) On Dec 7, 3:13 am, "Charles A. Lopez" <[EMAIL PROTECTED]> wrote: > dear not deal. > > On Sat, Dec 6, 2008 at 2:44 PM, Brandon Betances <[EMAIL PROTECTED]>wrote: > > > > > the deal is you give him interview questions and he gets a job he cant do. > > > On Sat, Dec 6, 2008

[DotNetDevelopment] Re: question

2008-12-06 Thread Charles A. Lopez
dear not deal. On Sat, Dec 6, 2008 at 2:44 PM, Brandon Betances <[EMAIL PROTECTED]>wrote: > the deal is you give him interview questions and he gets a job he cant do. > > > On Sat, Dec 6, 2008 at 2:02 PM, Cerebrus <[EMAIL PROTECTED]> wrote: > >> >> I don't see no deal here. What's the deal, f

[DotNetDevelopment] Re: question

2008-12-06 Thread Brandon Betances
the deal is you give him interview questions and he gets a job he cant do. On Sat, Dec 6, 2008 at 2:02 PM, Cerebrus <[EMAIL PROTECTED]> wrote: > > I don't see no deal here. What's the deal, fella ? > > On Dec 5, 3:09 pm, "kishor kumar" <[EMAIL PROTECTED]> wrote: > > Deal all, > > > > Anybody have

[DotNetDevelopment] Re: question

2008-12-06 Thread Cerebrus
I don't see no deal here. What's the deal, fella ? On Dec 5, 3:09 pm, "kishor kumar" <[EMAIL PROTECTED]> wrote: > Deal all, > > Anybody have dot net interview question pls just share with me . its urgent. > > Thanks & Best Regards > Kishor

[DotNetDevelopment] Re: question

2008-12-05 Thread karthi keyan
I am sure ...you will get lot of replies :P On Fri, Dec 5, 2008 at 3:39 PM, kishor kumar <[EMAIL PROTECTED]>wrote: > Deal all, > > > Anybody have dot net interview question pls just share with me . its > urgent. > > Thanks & Best Regards > Kishor > > >

[DotNetDevelopment] Re: Question about using MD5

2008-12-03 Thread Al Longobardi
My Results : Encoded Hash: 9E2A13BC30EF95CC7798D698E62BECD9 On Mon, Nov 24, 2008 at 3:57 AM, CK <[EMAIL PROTECTED]> wrote: > > well, as i thought, MD5 seems to be platform independent. > > rhaazy, either you don't have the correct password, or you / client > aren't doing the MD5 properly. > >

[DotNetDevelopment] Re: Question about DataKeyNames

2008-11-26 Thread Brandon Betances
de nada. contento podría ayudar. or glad i could help.

[DotNetDevelopment] Re: Question about DataKeyNames

2008-11-26 Thread Daniel G. Samborski
Hi Brandon, thanks for you answer, It resolved as folows, only change this line Guid id = new Guid(grdListadoDeSitio.SelectedDataKey["IdSitio"].ToString()); as this Guid id = new Guid(grdListadoDeSitio.DataKeys[e.RowIndex].Value.ToString()); And worked correctly. Again, tankyou for your an

[DotNetDevelopment] Re: Question about DataKeyNames

2008-11-26 Thread Brandon Betances
You have to instances of GUID with the same name? Try changing the second one. Or remove the ToString() method. Lemme know what happens. On Wed, Nov 26, 2008 at 8:52 AM, Daniel G. Samborski < [EMAIL PROTECTED]> wrote: > Hi, I'm Daniel and I'm new in this group, > Sorry, but my english isn't good

[DotNetDevelopment] Re: Question about using MD5

2008-11-26 Thread rhaazy
I'm still unable to get the correct hash from the input string given to me... I did try the code CK posted and infact I do get the same result. I've spoken with a couple of senior level programmers I work with and they seem to confirm my thoughts of needing some key value. So this leaves me with

[DotNetDevelopment] Re: Question about using MD5

2008-11-25 Thread Charles A. Lopez
Salting is a good technique to develop different hashes for the same password. On Tue, Nov 25, 2008 at 11:55 AM, rhaazy <[EMAIL PROTECTED]> wrote: > > I appreciate all of your feedback. > > I figured out the problem was that my client was "salting" his md5 > method with base64 encoding. > > Th

[DotNetDevelopment] Re: Question about using MD5

2008-11-25 Thread rhaazy
I appreciate all of your feedback. I figured out the problem was that my client was "salting" his md5 method with base64 encoding. Thanks for your time. On Nov 24, 12:30 pm, CK <[EMAIL PROTECTED]> wrote: > C, anything else would break the bounds of reality!  I just wanted > people to see it f

[DotNetDevelopment] Re: Question about using MD5

2008-11-24 Thread CK
C, anything else would break the bounds of reality! I just wanted people to see it for themselves :) On 24 Nov, 16:17, Cerebrus <[EMAIL PROTECTED]> wrote: > Suspected the former from the start... so much so that I didn't bother > to try it out on my computer. (Sorry, CK !) ;-) > > On Nov 24, 1:5

[DotNetDevelopment] Re: Question about using MD5

2008-11-24 Thread Cerebrus
Suspected the former from the start... so much so that I didn't bother to try it out on my computer. (Sorry, CK !) ;-) On Nov 24, 1:57 pm, CK <[EMAIL PROTECTED]> wrote: > well, as i thought, MD5 seems to be platform independent. > > rhaazy, either you don't have the correct password, or you / cli

[DotNetDevelopment] Re: Question about using MD5

2008-11-24 Thread CK
well, as i thought, MD5 seems to be platform independent. rhaazy, either you don't have the correct password, or you / client aren't doing the MD5 properly. On 21 Nov, 14:36, Glenn <[EMAIL PROTECTED]> wrote: > Windows XP SP3 32-bit on Dell DUO Core system: > 9E2A13BC30EF95CC7798D698E62BECD9. > >

[DotNetDevelopment] Re: Question about using MD5

2008-11-21 Thread Glenn
Probably a university that is re-using old e-mail addresses. ...Glenn On Fri, Nov 21, 2008 at 9:42 AM, Cerebrus <[EMAIL PROTECTED]> wrote: > > I wonder how we manage to subscribe such kind of idiots > "automatically". >

[DotNetDevelopment] Re: Question about using MD5

2008-11-21 Thread Cerebrus
I wonder how we manage to subscribe such kind of idiots "automatically". On Nov 21, 7:34 pm, Glenn <[EMAIL PROTECTED]> wrote: > Then unsubscribe from this list. > > ...Glenn > > On Fri, Nov 21, 2008 at 8:45 AM, ramakrishna manda < > > [EMAIL PROTECTED]> wrote: > > plz iam not a eng student dont s

[DotNetDevelopment] Re: Question about using MD5

2008-11-21 Thread Glenn
Windows XP SP3 32-bit on Dell DUO Core system: 9E2A13BC30EF95CC7798D698E62BECD9. ...Glenn On Fri, Nov 21, 2008 at 5:26 AM, CK <[EMAIL PROTECTED]> wrote: > > Hi rhaazy, haven't seen you for a while. > > This is in interesting problem, one that as a group we may be able to > identify better. > > I

[DotNetDevelopment] Re: Question about using MD5

2008-11-21 Thread Glenn
Then unsubscribe from this list. ...Glenn On Fri, Nov 21, 2008 at 8:45 AM, ramakrishna manda < [EMAIL PROTECTED]> wrote: > plz iam not a eng student dont send any dot net &information >

[DotNetDevelopment] Re: Question about using MD5

2008-11-21 Thread ramakrishna manda
plz iam not a eng student dont send any dot net &information On Fri, Nov 21, 2008 at 8:15 AM, Charles A. Lopez <[EMAIL PROTECTED]>wrote: > give us sample data. > > On Thu, Nov 20, 2008 at 3:30 PM, rhaazy <[EMAIL PROTECTED]> wrote: > >> >> Greetings. >> >> I have a client who has a web service tha

[DotNetDevelopment] Re: Question about using MD5

2008-11-21 Thread Stephen Russell
Sent: Friday, November 21, 2008 4:27 AM To: DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting Subject: [DotNetDevelopment] Re: Question about using MD5 Hi rhaazy, haven't seen you for a while. This is in interesting problem, one that as a group we m

[DotNetDevelopment] Re: Question about using MD5

2008-11-21 Thread CK
Firstly, don't thread hijack. Secondly, the code is there in my post (albeit in C#, but is easily translatable). On 21 Nov, 12:37, "Troy International" <[EMAIL PROTECTED]> wrote: > hi > > how shall i genertate a astring or value that should be encrypted and show > in url ie:some large > > number

[DotNetDevelopment] Re: Question about using MD5

2008-11-21 Thread Troy International
hi how shall i genertate a astring or value that should be encrypted and show in url ie:some large number like this..:9E2A13BC30EF95CC7798D698E62BECD9 pls give the code in VB.Net On 11/21/08, CK <[EMAIL PROTECTED]> wrote: > > > Hi rhaazy, haven't seen you for a while. > > This is in interesti

[DotNetDevelopment] Re: Question about using MD5

2008-11-21 Thread CK
Hi rhaazy, haven't seen you for a while. This is in interesting problem, one that as a group we may be able to identify better. If everyone runs the following code and posts their results (with .Net version, OS and 32 / 64 bit), we might be able to track it down: String password = "passwordabc1

[DotNetDevelopment] Re: Question about using MD5

2008-11-20 Thread Charles A. Lopez
give us sample data. On Thu, Nov 20, 2008 at 3:30 PM, rhaazy <[EMAIL PROTECTED]> wrote: > > Greetings. > > I have a client who has a web service that I need to authenticate > with. > He sent me credentials for testing, which I currently have hardcoded. > The password he sent me is the md5 encrypt

[DotNetDevelopment] Re: question related to localhost by a rookie

2008-10-15 Thread ReggieC
Thanks a lot for the tips. As a newbie, I do not understand all provided info but will try later. Using "New Web Site" recommended by Stratum, I am able to save under localhost now. It is an important step for me. If I move test folders to C:\inetpub \wwwroot which were created by "New Project"

[DotNetDevelopment] Re: question related to localhost by a rookie

2008-10-15 Thread Glenn
I think you need to specify "New Web Site" to do what you want to do. If you select new project, then you build/test locally and "deploy" to your website. ...Glenn On Tue, Oct 14, 2008 at 11:21 PM, ReggieC <[EMAIL PROTECTED]> wrote: > > Hi there, > > I'm new in ASP .NET. > > I got Visual Studio

[DotNetDevelopment] Re: question related to localhost by a rookie

2008-10-15 Thread Stratum
Your choices are New Project or New Web Site. For a new ASP.Net site, I suggest the second choice. Then specify the location as something like C:\inetpub\wwwroot\ Your files will be based in a folder with the project name or (solution name, actually). On Vista installations, a folder with

[DotNetDevelopment] Re: question related to localhost by a rookie

2008-10-15 Thread ReggieC
Toanmh, Yes, I've IIS activated on the Vista Business. Another issue could be related is that IIS on Vista Business is version 7. After IIS was turned on, I noticed that a new user (IUSR_MACHINENAME) was created. However, it did not appear in group IIS_IUSERS and I've added IUSR_MACHINENAME

[DotNetDevelopment] Re: question related to localhost by a rookie

2008-10-15 Thread toanmh\
Have you install IIS.If you installed you could make virtual directory web site for your project. But I'm using VSS2005 and vista but not install IIS after I'm run website(F5) that still run correct because VSS not need IIS. --~--~-~--~~~---~--~~ You received this m

[DotNetDevelopment] Re: question

2008-09-17 Thread Glenn
The format of .ini files is simple enough that, if you can program in .NET at any reasonable level, you should be able to create your own .ini processing class in a fairly quick manner. The product I work on uses files that are similar to .ini files, but in a slightly different format. The String

[DotNetDevelopment] Re: question

2008-09-17 Thread Cerebrus
I don't think it's all that bad... The use of .ini files is deprecated in .NET because we have much more structured and implicit ways of reading startup configuration. On Sep 16, 5:14 pm, "Pankaj Kapoor" <[EMAIL PROTECTED]> wrote: > shit, i have to deal with a number of ini files in my app.. I wr

[DotNetDevelopment] Re: question

2008-09-17 Thread Pankaj Kapoor
shit, i have to deal with a number of ini files in my app.. I wrote a C++ app before that read from some existing ini files, and it did it well, but now i have to make same app in C#.. Im gonna be fried :-( On Thu, Sep 11, 2008 at 9:50 PM, Glenn <[EMAIL PROTECTED]> wrote: > Avoid .ini files if at

[DotNetDevelopment] Re: question

2008-09-17 Thread shan gita
console.readline is used to read the value console.writeline is used to write the output On Wed, Sep 10, 2008 at 2:40 PM, uma <[EMAIL PROTECTED]> wrote: > > how can i read and write ini files using c# > > > > --~--~-~--~~~---~--~~ You received this message because

[DotNetDevelopment] Re: question

2008-09-13 Thread Rajeshbabu Pola
hello uma u can read and write file using IOStream. in that we hve option to save the files in disk On Wed, Sep 10, 2008 at 2:40 PM, uma <[EMAIL PROTECTED]> wrote: > > how can i read and write ini files using c# > > > > -- Rajesh Babu. Pola, Junior Consultant, INC IT&Systems. Cell: + 91 9966

[DotNetDevelopment] Re: question

2008-09-11 Thread Peter Smith
http://www.google.com/search?q=ini+files+c%23 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "DotNetDevelopment, VB.NET, C# .NET, ADO.NET, ASP.NET, XML, XML Web Services,.NET Remoting" group. To post to this group,

[DotNetDevelopment] Re: question

2008-09-11 Thread Glenn
Add another replacement keyboard to the list!! :) On Thu, Sep 11, 2008 at 12:42 PM, Cerebrus <[EMAIL PROTECTED]> wrote: > > You cannot ! No one ever taught c# to read and write. The poor thing > is totally illiterate. > > On Sep 10, 2:10 pm, uma <[EMAIL PROTECTED]> wrote: > > how can i read and w

[DotNetDevelopment] Re: question

2008-09-11 Thread Cerebrus
You cannot ! No one ever taught c# to read and write. The poor thing is totally illiterate. On Sep 10, 2:10 pm, uma <[EMAIL PROTECTED]> wrote: > how can i read and write ini files using c# --~--~-~--~~~---~--~~ You received this message because you are subscribed t

[DotNetDevelopment] Re: question

2008-09-11 Thread Glenn
Avoid .ini files if at all possible. The same task can be done easier and better through the use of an XML file. If you absolutely must use an ini file, you have two choices: 1. Write your own ini file processing class. The structure of the file is basic. 2. Use P/Invoke to interface to the old