|
Hi All Tech Gurus..!
I am working as a software engineer in pune and recently I was told by my seniors to complete MCTS certification in 3 months. I have started studying it but I was wondering about some practice tests or dumps to go through parallaly so as to boost my confidence for exams.
PLease send me latest dumps for MCTS 70-536,70-529,70-528 at earliest...plz help me guys..My emaila ddress is dreamstocatch@gmail.com
|
|
|
|
|
koolbuddy4u20004 wrote: PLease send me latest dumps
No....get some books and start studying.
koolbuddy4u20004 wrote: My emaila ddress is dreamstocatch@gmail.com
You realize this is not a wise thing to do in a public forum?
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
Hi ,
I am working on some report generation project.Any idea about inserting data from MS SQL SERVER in MS EXCELL Sheet.
G Singh
|
|
|
|
|
What ideas have you come up with?
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
Not the end solution but it will set you on the right track. Consider using the OleDbConnection object to open the excel spreadsheet. This will then allow you to execute T-SQL commands against spreadsheet as if it were a table.
Fernando Mendes
Senior .NET Developer, Architect
|
|
|
|
|
Hi,
I'm working on a project at work which involves updating the programming language our program is written in from C to possibly C#.
I'm only at this job for a short period of time, I was wondering if it is possible to update parts of the program at a time to C#, yet still allow the whole program to work?
In other words, is there a way getting a program to run by writing it using two different languages?
Thanks,
Alan
|
|
|
|
|
The only way to do that would be to split the application apart into separate DLLs, one in C and the other in C#. There is more work needed to make sure that both assemblies can work together and that the main application can use both of them and still work correctly. It's possible, but not trivial.
Scott Dorman Microsoft® MVP - Visual C# | MCPD
President - Tampa Bay IASA
[ Blog][ Articles][ Forum Guidelines] Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai
|
|
|
|
|
You can have multiple languages in the same project.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
Paul Conrad wrote: You can have multiple languages in the same project.
Is what you said possible if I am mixing a managed language(C#) and an unmanaged language (C)?
If not, then if I were to compile the unmanaged language(C) in VS would it work?
modified on Thursday, July 31, 2008 6:06 AM
|
|
|
|
|
Almadeus wrote:
I only have Express Editions of VS so I can't directly test this myself right now..
If you go the Express Edition route, you have to have the multiple languages in different projects using the Express Edition for the particular language. Compile the class, then reference it in the other Express Editions...
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
Ok thank you very much for your help! I can get it to work for what I am doing!
|
|
|
|
|
Hi guys,
I hope you can help.
I want to start work as a trainee developer and to do this I plan to train myself up in C# and .NET.
In order to prove to employers that I have done this work, I plan to take the Microsoft exam 70-536: TS: Microsoft .NET Framework, Application Development Foundation.
However, the only self study material available at the moment is the Microsoft self paced kit. I've read mixed revues about this book unfortunately. Some people say it's good but a lot say it's not and apparently it contains many errors which could easily confuse beginners. I see that a second edition of the book is coming out in October though, so what I thought I'd do is wait until the second edition comes out and, in the mean time, begin studying C#.
Is this a good idea, heading towards this exam?
I was wondering if anyone knew of a good book to start studying C#? I was thinking of the Microsoft book 'Visual C# 2008 Step by Step' by John Sharp. I've looked at this and a couple of other books; they all come with CD's but none of them say if the CD includes any sort of version of C# to practice on. Could anyone tell me if the books would include a copy of C# to practice on or would I have to go out and purchase it?
I'm not at all sure how these things work so forgive me if I sound naive.
Thanks very much,
Dan
|
|
|
|
|
Dan - you can download the express editions (free) of things like Visual C# 2008 directly from Microsoft. I'm also biased against people who have little real experience, but have passed an MS exam as they don't really end up with the depth and breadth I would expect. I would rather that a developer had spent their time writing sample programs, helping out here on the forums and generally shown a bit of get-up-and-go.
|
|
|
|
|
|
You might want to move this to the ASP.NET forum.
Scott Dorman Microsoft® MVP - Visual C# | MCPD
President - Tampa Bay IASA
[ Blog][ Articles][ Forum Guidelines] Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai
|
|
|
|
|
Wrong forum, better chance at getting help is in the ASP.NET forum.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
i wanna make my carrier in c++.
i dont have gud knowelge abt c++.
pls help me to make me perfect..
tell me wat is prtotype ?
why we used?
how computer implement array ?
|
|
|
|
|
First of all, don't use TxtSpeak, use properly formed and spelled words and sentences.
Second, use a subject line that actually has some meaning about your question.
Third, pick up some good reference books on C and C++, or look at any of the "introduction to programming" type tutorials available on the internet.
If you have specific questions about something after trying to understand it, post that question (and try to limit it to one topic per post) and people will try to help.
You have actually asked to very different questions:
1. What is a C++ prototype and why is it used? Typically, this is a declaration of a function that omits the function body. It does specify the function name, return type and arguements. Function prototypes are used to declare the signature of a function ahead of time so the compiler can be informed about that function. (http://en.wikipedia.org/wiki/Function_prototype[^])
2. How is an array implemented? This is a much more complicated question than it sounds, as the actual implementation is potentially different for different languages and hardware. See this[^] for some more information.
Scott Dorman Microsoft® MVP - Visual C# | MCPD
President - Tampa Bay IASA
[ Blog][ Articles][ Forum Guidelines] Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai
|
|
|
|
|
heena_0001 wrote: pls help me to make me perfect..
Get a book and learn. Don't use textspeak, and pick the Visual C++ forum next time.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
Hi,
Can anybody help me to collect the details about certification in Crystal Reports (BOCP-CR)?.
Thanks in advance!
Regards,
EbyZ
|
|
|
|
|
Have you google around or taken a look at CR's site?
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
when i made MDI parent with C# i used multi language (English & Arabic and Spanish and so on)
all language write from left to right except Arabic it's from rgith to left now i'm tring to put Image as a MDI parent back ground read it from Resource files every resource file for one language every thing is ok except Arabic background doesnot work with righttoleftlayout why i donot now any one have a good answer to this problem and pls donot say use designer and make localization=true and so on in this method cos this method make resource file to every form in application and i made one resource file to every language for all forms this meaning that i have 3 resource files thanks for every trial to solve this problem 
|
|
|
|
|
You might want to ask this in one of the programming related forums, either the C#[^] or Windows Forms[^] forum.
Scott Dorman Microsoft® MVP - Visual C# | MCPD
President - Tampa Bay IASA
Hey, hey, hey. Don't be mean. We don't have to be mean because, remember, no matter where you go, there you are. - Buckaroo Banzai
[ Forum Guidelines][ Articles][ Blog]
|
|
|
|
|
This forum is about Work and Training Issues, not programming problems. You may want to try the C# forum.
"The clue train passed his station without stopping." - John Simmons / outlaw programmer
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
|
|
|
|
|
hi all...
I have completed MCTS 70-536 and 70-528...next which paper I have to write?
what is the difference between MCTS 70-536 and 70-315..
.if anybody knows plz reply me
Thanks
Rajendran.AL
|
|
|
|