|
Maurice Lantier wrote: 1. Do any of you have tips regarding what I need to remember and what I can simply pull up from Visual Studio?
What's "pull up"? Usually the answer is "when I press '.'", which should be Ctrl-Space . Intellisense shows the available types in the currently loaded namespaces, as available in the currently referenced assemblies. Most members of those types are available, along with any XML-documentation and a reflection of the parameters, and and indication of any overloads.
Maurice Lantier wrote: 2. Do any of you have suggestions regarding the best way to begin remembering code? 3x5 cards, etc...?
Memorizing isn't going to help, you'll need to experiment. A lot.
No, I really mean a lot!
Maurice Lantier wrote: 3. Any suggestions regarding websites to access, good video's, etc... to help with my learning the necessary?
This site, MSDN and Coding4Fun would be my top three; problem is, first is a community, not a school; second is a reference-site, not a manual, third is too complex often to use it for starters.
|
|
|
|
|
By "pull up" I WAS indeed referring to intellisence. Thanks for your tips... I will use them and any other's that I receive.
|
|
|
|
|
It couldn't have been the Help-file (available under F1 ). You obviously have internet, so that's your primary resource - CodeProject and MSDN. The first is the ideal starterplace for new projects, the articles provide a nice basis for new applications, and the forums are usually open. The second is the ideal reference, explaining how the building-blocks that are available, look like.
Best recommendation is a good book, not an ebook, but one you can use to kill small animals. Both Manning and O'Reilly offer a nice range of books.
You're welcome, hope that more people respond with something more original
|
|
|
|
|
You should remember the places where you need to look, and where common things are. Intellisense is great when you know what you are looking for, but if you don't know the class name it won't help. For example, a C++ or Java person might try looking for 'Map', and the autocomplete will fail them completely – but knowing that you can find collections under System.Collections.Generic will give you the clues you need.
You also need to develop Google-fu. C# is a very popular mainstream language, and most problems you're likely to have have been solved and published already, if you can find them. StackOverflow is a trustworthy site if it appears with an answer for your question (I'll take the downvotes for recommending it, it's better than CP in my opinion for small, self-contained questions), as is CP, and MSDN.
The best way to learn depends on your personal style. Myself, I enjoy learning by example so I would get a tutorial or a book and leave that on my desk (virtual or real), and then try creating some simple applications to pick things up. The Framework is too big to learn it academically and expect to hold onto it.
|
|
|
|
|
Sounds like I should learn by doing, doing and doing some more! Good advice! I'll check out the StackOverflow site too.
|
|
|
|
|
A large percentage of my code generally comes from the internet simply because it's both a pain and unnecessary to re-write code that someone else has written and tested. The rest is from writing my own code and adjusting the samples I've found online to fit my purpose. Basically, google-fu
As has previously been said, I strongly advise you experiment. A lot. The best advice I can give you is to code, code and code. It's like learning a musical instrument. You only get better with practice. Make simple projects for yourself and write them. As you get better, you'll find yourself designing better code and reusing functions and classes you've written previously and even get to writing your own code library.
A good book always helps, I feel that "Programming C# 4.0" by Jesse Liberty et al. is an essential desktop purchase. Pretty much the core of the language is clearly explained part by part with a simple example to show you it in use. Jon Skeet's "C# in Depth - Second Edition" will help you better understand what is going on in your programs.
Finally, don't be afraid to experiment and ask for help if you get stuck. We all began somewhere and the majority of people will be keen to help if they can.
|
|
|
|
|
Thanks! I'll check out the books you recommended!
|
|
|
|
|
HI Gurus,
iam new to c#. i need to Design a product home and Login forms using c#.How i will add the individual png files i got for this page design. How to add Click events for the button images.
Please guide me or tell some Videos or Links.
Thanks & Regards,
Rajeev
|
|
|
|
|
Rajeevhyd wrote: How i will add the individual png files i got for this page design
What's a page? If you want a form, please do. Images (whatever format) are linked as a resource. In ASP.NET, you'd simply link to the picture on the server.
Rajeevhyd wrote: How to add Click events for the button images.
Please guide me or tell some Videos or Links.
These are very basic questions; you'll find answers to more of similar questions you'll have in a good book on the topic. I suggest you start in the nearest library, or the beginner portal[^].
|
|
|
|
|
Hi lads and lasses, I have just started looking into communication between services and GUI apps. I decided to use Named Pipes but upon reading a lot of documentation and web examples etc etc it seems that after every message is sent and received you have to setup another server/client to get the next message???
Is this the case? What I wanted was a TCP like connection (yes I know that is an option) where I can set a server listening then connect a client and then through the lifetime of the app just pass messages between the two apps (service and GUI).
Is this possible?
thanks
Nemo1966
|
|
|
|
|
You're not creating a new listener for each and every message.
You would normally create a listener that waits for connections. Once that connection request arrives, you create a pipe server for that client. That way, you can have multiple clients connected to the service at the same time and no interfere with each other.
Now, if you just want the local machine applications to talk to the server, then the service only has to listen for one connection. It doesn't have to spawn a new server object for each incomming connection.
|
|
|
|
|
Thanks for the reply, but the problem is all the examples do spawn a new server object or shut down the server after the first message arrives.
thanks
|
|
|
|
|
You're going to have to point these out because that's not the norm.
|
|
|
|
|
|
Bad example. That one does do what you siad, but it was written as an ad-hoc example to demonstrate the new Pipe classes. It's NOT meant as a tutorial on how to use the classes in production.
That example actually comes straight from the MSDN documentation, which uses very simplistic examples on using specific classes. That example, and many many more in MSDN, is by no means the definitive source on how to properly implement a server using pipes.
An implementation that would look closer to a real-world example is this[^].
|
|
|
|
|
Hi to all,
How can i communicate between Siemens PLC and Visual C# via USB PPI cable as serial communication? When i plug it to my pc so it is identified as a HID device. i want it as com port.(serial pot). how can i achieve this? must i attach any kind of dll to my project? Anyone can help me?
|
|
|
|
|
The driver for the device has to expose the device as a COM port. If it doesn't, you're going to have to go to the manufacturer of the device and either get an updated driver that does this or get a SDK for the device that allows some other method of communication.
|
|
|
|
|
|
I have three text boxes A,B,C.if i enter numeric values in A & B text boxes then i should get product of those values in third Text box automatically . Please tell me the solution and code in C# as soon as possible..
REGARDS
Ameeruddin Syed
|
|
|
|
|
if you are looking at doing this automatically I would have a look at the leave event of the textboxes.
Textbox.Leave[^] event further reading.
you will need to write on of these for both textboxes, and on leave I would check to make sure that the value is a number before performing the addition of the 2 values.
Lobster Thermidor aux crevettes with a Mornay sauce, served in a Provençale manner with shallots and aubergines, garnished with truffle pate, brandy and a fried egg on top and Spam - Monty Python Spam Sketch
|
|
|
|
|
<quote>Message from Member 9550558:
Please i want complete code as per my question
Sorry I have told you in a descriptive way how to do it, in the link I also gave you it had an example of how to use the event, but I am not going to write it for you! I will however help you debug the solution if you have trouble.
Lobster Thermidor aux crevettes with a Mornay sauce, served in a Provençale manner with shallots and aubergines, garnished with truffle pate, brandy and a fried egg on top and Spam - Monty Python Spam Sketch
|
|
|
|
|
This is one of the reasons I have email disabled.
|
|
|
|
|
|
If you're expecting someone to do your homework for you, you're going to be very disappointed. Class work is where YOU do the work to show that you are learning the concepts presented.
|
|
|
|
|
hello everyone
i want to build a simple metro app private diary using c# please help me guys... i want to give simple calender to the user so that user can pick date and he can go through with editing his stuff.. after he should be able to retrive the content by clicking on particular date. How can i go through please share your vies 
|
|
|
|