473,763 Members | 7,727 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Best way to get a Junior Programmer up to speed

BK
Our .Net team has just inherited a junior programmer that we need to
get up to speed as quickly as possible. Unfortunately, his skill set
is largely Access with some VB6 and ASP classic experience. We employ
some parts of XP such as pair programming, and this should help. Other
than books, does anyone have any suggestions? His skill set is pretty
antiquated and we need to get him up to speed as quickly as possible so
any suggestions are appreciated.

Background:
Mixture of Vb.Net and C#.Net code
Mixture of Oracle, DB2, and SQL server backends (we have our own
DataAccess class similar to the MS Enterprise Library Data Access)
Mostly Windows Forms for front ends
Mostly 4 tier design due to the complexity of our needs.

Thanks,

Nov 30 '06 #1
13 2506
Well ... This one has all the hallmarks of 'how long is a piece of string?'.

Your use of the word 'inherited' indicates to me that you did not recruit
him yourself. How he came to be working for your company is a major factor
in how you approach the exercise. Was he, for instance, in some other
position where he used 'MS Access' etc. and now is being moved into a more
'mainstream' area of the company, or perhaps recruited by someone else in
the company as a personal favour or similar reason. Maybe he, himself
'asked' to moved from weher he was to 'mainstream' area of the company. In
addition, is this person 'new' to you personally or have you known him for
some time. This sort of information is important to you so that you can
gauge his ability to learn, his level of self-motivation and perhaps his
abilities in analysing and solving 'problems', which, after all, programming
is all about.

Realisticly, you have to gaugue his skill levels in various areas and the
best way is to start at the beginning. That is to start him off on 'ye olde
standard' Hello World! console application. This should have the intention
of introducing him to the VS IDE, the VB.NET compiler and the VS Debugger.
It important that he understand what is actually happening when the app hits
the 'Sub Main()' because, in Access, the need to worry about that level of
functionality was hidden from the user.

As you are satisfied that he has mastered each step, increase the complexity
of the exercises at the rate you gauge to be appropriate. Some people learn
faster than others and some are able to grasp very complex concepts very
quickly indeed.

Reinforce the need to have Option Explicit and Option Strict turned on in
ALL projects, again making sure that he understands why.

Reinforce the need, and of course, the reasons, to follow the company
standards for naming conventions and coding styles at all times. Make sure
that he is given a copy of the company standards manual as early as
possible.

In parallel with this, introduce him to existing projects. For example, take
a small app and get him to dissect the code to understand what the app is
doing. It is not good enough for him to tell you he understands it, he must
be able to demonstrate that he understands it. I get people to write a
report (in prose) of their analysis of the application, which also provides
me with a way of gauging their written communication skill level. Make sure
you review the report with the person, reinforcing where they have 'got it
right' and correcting where they haven't.

Once you can gauge that their proficiency levels are at a certain stage you
can send them out 'to play' on their own, but still reviewing what they are
doing. As their skill levels increase you will be able to reduce the amount
of reviewing that you need to do. When he makes a 'mistake' make sure you
don't browbeat him with it, rather, uUse it as an opportunity for analysis
and learning.

At all steps along the way, you, of course, need to make sure that you are
pointing them toward the appropriate references that will provide more
technical explanations on various concepts.

If the person concerned is a 'quick study' and is self-motivated this
process may be as short as a few weeks. For others it may extend into
months.

Unfortunately there is no 'magic bullet' formula that dictates how long such
a process will take just as there is no 'magic bullet' formula that tells
you how you must go about it.

I have a slogan (which is never erased) written in big letters across the
top of my whiteboard. It reads "THERE IS NO SUBSTITUTE FOR TRAINING!'.

Good luck.
"BK" <bk******@hotma il.comwrote in message
news:11******** **************@ n67g2000cwd.goo glegroups.com.. .
Our .Net team has just inherited a junior programmer that we need to
get up to speed as quickly as possible. Unfortunately, his skill set
is largely Access with some VB6 and ASP classic experience. We employ
some parts of XP such as pair programming, and this should help. Other
than books, does anyone have any suggestions? His skill set is pretty
antiquated and we need to get him up to speed as quickly as possible so
any suggestions are appreciated.

Background:
Mixture of Vb.Net and C#.Net code
Mixture of Oracle, DB2, and SQL server backends (we have our own
DataAccess class similar to the MS Enterprise Library Data Access)
Mostly Windows Forms for front ends
Mostly 4 tier design due to the complexity of our needs.

Thanks,

Dec 1 '06 #2
In the interest of communication (not argument) I'd like to say it was a
treat to read Stephany's well-reasoned reply. And to Dennis, I can
appreciate the fact you run your company that way (how many employees do you
have BTW) but good/smart companies don't. If he was an "employee" it means
he has knowledge of the business and one would prefer not to throw that
away. Besides what is "easy" and what is "complicate d" and why must
everybody perform complicated tasks? Are there no routine tasks to perform?

To the original poster... I'd recommend you consider Stephany's response.
What I would add is a question "get up to speed with what?" Are you hoping
the new guy can design new input forms, write new reports, review all the
SQL stored procedures and travel to the Denver office to do training?
Perhaps there is some task that match his current skills. If his Access DB
experience makes it difficult for him to grasp the 4-tier design of your
system right now it would be best not to give him the responsibility to fix
something in that area. Generally speaking people have particular skills
and if you determine what his are he can be of benefit to you immediately.
He might (for instance) be better at designing reports than the people you
currently have doing it. Maybe he is good at finding tricky bugs that have
eluded the rest of the team or that they simply don't have time to look
into.

He is going to need a "tour" of your app and .Net given by somebody who
understands both. If that person also knows something about Access he/she
could even contrast the two languages. All things considered it may not be
..Net command set that gives him the most problem, I know people quite versed
in a language who couldn't make heads or tails of an application written in
that language. An orientation to what was done and why helps alot.

Tom
"Dennis" <De****@discuss ions.microsoft. comwrote in message
news:96******** *************** ***********@mic rosoft.com...
Simple...assign him something simple to do in VB.Net and see what he
does...if he can't figure out how to learn what he needs to know to get it
done then fire him...if he does then give him something more complicated.
--
Dennis in Houston
"Stephany Young" wrote:
>Well ... This one has all the hallmarks of 'how long is a piece of
string?'.

Your use of the word 'inherited' indicates to me that you did not recruit
him yourself. How he came to be working for your company is a major
factor
in how you approach the exercise. Was he, for instance, in some other
position where he used 'MS Access' etc. and now is being moved into a
more
'mainstream' area of the company, or perhaps recruited by someone else in
the company as a personal favour or similar reason. Maybe he, himself
'asked' to moved from weher he was to 'mainstream' area of the company.
In
addition, is this person 'new' to you personally or have you known him
for
some time. This sort of information is important to you so that you can
gauge his ability to learn, his level of self-motivation and perhaps his
abilities in analysing and solving 'problems', which, after all,
programming
is all about.

Realisticly, you have to gaugue his skill levels in various areas and the
best way is to start at the beginning. That is to start him off on 'ye
olde
standard' Hello World! console application. This should have the
intention
of introducing him to the VS IDE, the VB.NET compiler and the VS
Debugger.
It important that he understand what is actually happening when the app
hits
the 'Sub Main()' because, in Access, the need to worry about that level
of
functionalit y was hidden from the user.

As you are satisfied that he has mastered each step, increase the
complexity
of the exercises at the rate you gauge to be appropriate. Some people
learn
faster than others and some are able to grasp very complex concepts very
quickly indeed.

Reinforce the need to have Option Explicit and Option Strict turned on in
ALL projects, again making sure that he understands why.

Reinforce the need, and of course, the reasons, to follow the company
standards for naming conventions and coding styles at all times. Make
sure
that he is given a copy of the company standards manual as early as
possible.

In parallel with this, introduce him to existing projects. For example,
take
a small app and get him to dissect the code to understand what the app is
doing. It is not good enough for him to tell you he understands it, he
must
be able to demonstrate that he understands it. I get people to write a
report (in prose) of their analysis of the application, which also
provides
me with a way of gauging their written communication skill level. Make
sure
you review the report with the person, reinforcing where they have 'got
it
right' and correcting where they haven't.

Once you can gauge that their proficiency levels are at a certain stage
you
can send them out 'to play' on their own, but still reviewing what they
are
doing. As their skill levels increase you will be able to reduce the
amount
of reviewing that you need to do. When he makes a 'mistake' make sure you
don't browbeat him with it, rather, uUse it as an opportunity for
analysis
and learning.

At all steps along the way, you, of course, need to make sure that you
are
pointing them toward the appropriate references that will provide more
technical explanations on various concepts.

If the person concerned is a 'quick study' and is self-motivated this
process may be as short as a few weeks. For others it may extend into
months.

Unfortunatel y there is no 'magic bullet' formula that dictates how long
such
a process will take just as there is no 'magic bullet' formula that tells
you how you must go about it.

I have a slogan (which is never erased) written in big letters across the
top of my whiteboard. It reads "THERE IS NO SUBSTITUTE FOR TRAINING!'.

Good luck.
"BK" <bk******@hotma il.comwrote in message
news:11******* *************** @n67g2000cwd.go oglegroups.com. ..
Our .Net team has just inherited a junior programmer that we need to
get up to speed as quickly as possible. Unfortunately, his skill set
is largely Access with some VB6 and ASP classic experience. We employ
some parts of XP such as pair programming, and this should help. Other
than books, does anyone have any suggestions? His skill set is pretty
antiquated and we need to get him up to speed as quickly as possible so
any suggestions are appreciated.

Background:
Mixture of Vb.Net and C#.Net code
Mixture of Oracle, DB2, and SQL server backends (we have our own
DataAccess class similar to the MS Enterprise Library Data Access)
Mostly Windows Forms for front ends
Mostly 4 tier design due to the complexity of our needs.

Thanks,



Dec 1 '06 #3
"Stephany Young" <noone@localhos twrote in
news:OM******** ******@TK2MSFTN GP04.phx.gbl:
I have a slogan (which is never erased) written in big letters across
the top of my whiteboard. It reads "THERE IS NO SUBSTITUTE FOR
TRAINING!'.
And experience for that matter!

Dec 1 '06 #4
BK,

I completely disagree with the replies from Stephany and Tom, why are
things as 4 tier so important, is that the first goal of an organisation.
For me that sounds beginners wisdom, use the skills of the Access, ASP
programmer to start with. Those are most probably fine form and output
design coupled with skills how to present a program to an end user. For me
those parts are thousand times more important than if something is so called
4 tier (which I doubt it is because this is mostly nothing more than
multilayer).

Therefore the tone setting of some messages sounds for me derogating too
Access/ASP developers. There is not any need for that. Often they are much
better than dotNet developers in creating what is needed, the latter
sometimes don't come any further than the design instead of bringing the
programs (at the right time) to the end-user.

Just my thought reading the message and some replies.

And let him try this

http://www.vb-tips.com/dbpages.aspx?...2-b1ed16424252

Cor

"BK" <bk******@hotma il.comschreef in bericht
news:11******** **************@ n67g2000cwd.goo glegroups.com.. .
Our .Net team has just inherited a junior programmer that we need to
get up to speed as quickly as possible. Unfortunately, his skill set
is largely Access with some VB6 and ASP classic experience. We employ
some parts of XP such as pair programming, and this should help. Other
than books, does anyone have any suggestions? His skill set is pretty
antiquated and we need to get him up to speed as quickly as possible so
any suggestions are appreciated.

Background:
Mixture of Vb.Net and C#.Net code
Mixture of Oracle, DB2, and SQL server backends (we have our own
DataAccess class similar to the MS Enterprise Library Data Access)
Mostly Windows Forms for front ends
Mostly 4 tier design due to the complexity of our needs.

Thanks,

Dec 1 '06 #5
Interesting Cor.

If they have a multi-tier business app written in VB.Net and C# and a junior
programmer who knows Access then that's what they have. Nobody was putting
the programmer down for using Access but extensive knowledge of Access isn't
going to translate into "I'll implement an Interface in my new business
class." You can see the level of some of the questions posted on this
newsgroup and this is from people who actually use VB.Net. If knowing
Access is the route to good .Net code we could start recommending a side
trip.

They aren't developing in Access if they were I'd suggest the Access guy
orient the .Net folks instead.

Stephany suggested he be taught .Net, I suggested they use the skills he has
gained in Access in developing .Net... I don't think you completely disagree
:-)

Take care.
"Cor Ligthert [MVP]" <no************ @planet.nlwrote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
BK,

I completely disagree with the replies from Stephany and Tom, why are
things as 4 tier so important, is that the first goal of an organisation.
For me that sounds beginners wisdom, use the skills of the Access, ASP
programmer to start with. Those are most probably fine form and output
design coupled with skills how to present a program to an end user. For me
those parts are thousand times more important than if something is so
called 4 tier (which I doubt it is because this is mostly nothing more
than multilayer).

Therefore the tone setting of some messages sounds for me derogating too
Access/ASP developers. There is not any need for that. Often they are much
better than dotNet developers in creating what is needed, the latter
sometimes don't come any further than the design instead of bringing the
programs (at the right time) to the end-user.

Just my thought reading the message and some replies.

And let him try this

http://www.vb-tips.com/dbpages.aspx?...2-b1ed16424252

Cor

"BK" <bk******@hotma il.comschreef in bericht
news:11******** **************@ n67g2000cwd.goo glegroups.com.. .
>Our .Net team has just inherited a junior programmer that we need to
get up to speed as quickly as possible. Unfortunately, his skill set
is largely Access with some VB6 and ASP classic experience. We employ
some parts of XP such as pair programming, and this should help. Other
than books, does anyone have any suggestions? His skill set is pretty
antiquated and we need to get him up to speed as quickly as possible so
any suggestions are appreciated.

Background:
Mixture of Vb.Net and C#.Net code
Mixture of Oracle, DB2, and SQL server backends (we have our own
DataAccess class similar to the MS Enterprise Library Data Access)
Mostly Windows Forms for front ends
Mostly 4 tier design due to the complexity of our needs.

Thanks,


Dec 1 '06 #6
They also told he was a VB6 programmer

So i would recomend to throw him the Programming Microsoft Visual basic .Net
series of Francesco balena ( Core reference guide of VB )

Wich for a fact has special attention notes for Pre .Net VB programmers

Wit this book as a reference he should be able to pick up VB.Net pretty
quick , also i believe there are big misunderstandin gs about needed skills in
the pre .Net period

In VB.Net i see nowadays people calling themself proggrammers , while they
can only use drag and drop , and call methods in the framework , if there
is not an out of the box solution they are lostm cause they can`t write the
solution themselves

If you wrote complex programs in VB6 you are probably a much higher skilled
programmer as the current .Net pilots

regards

Michel Posseth [MCP]

"Tom Leylan" wrote:
Interesting Cor.

If they have a multi-tier business app written in VB.Net and C# and a junior
programmer who knows Access then that's what they have. Nobody was putting
the programmer down for using Access but extensive knowledge of Access isn't
going to translate into "I'll implement an Interface in my new business
class." You can see the level of some of the questions posted on this
newsgroup and this is from people who actually use VB.Net. If knowing
Access is the route to good .Net code we could start recommending a side
trip.

They aren't developing in Access if they were I'd suggest the Access guy
orient the .Net folks instead.

Stephany suggested he be taught .Net, I suggested they use the skills he has
gained in Access in developing .Net... I don't think you completely disagree
:-)

Take care.
"Cor Ligthert [MVP]" <no************ @planet.nlwrote in message
news:%2******** ********@TK2MSF TNGP03.phx.gbl. ..
BK,

I completely disagree with the replies from Stephany and Tom, why are
things as 4 tier so important, is that the first goal of an organisation.
For me that sounds beginners wisdom, use the skills of the Access, ASP
programmer to start with. Those are most probably fine form and output
design coupled with skills how to present a program to an end user. For me
those parts are thousand times more important than if something is so
called 4 tier (which I doubt it is because this is mostly nothing more
than multilayer).

Therefore the tone setting of some messages sounds for me derogating too
Access/ASP developers. There is not any need for that. Often they are much
better than dotNet developers in creating what is needed, the latter
sometimes don't come any further than the design instead of bringing the
programs (at the right time) to the end-user.

Just my thought reading the message and some replies.

And let him try this

http://www.vb-tips.com/dbpages.aspx?...2-b1ed16424252

Cor

"BK" <bk******@hotma il.comschreef in bericht
news:11******** **************@ n67g2000cwd.goo glegroups.com.. .
Our .Net team has just inherited a junior programmer that we need to
get up to speed as quickly as possible. Unfortunately, his skill set
is largely Access with some VB6 and ASP classic experience. We employ
some parts of XP such as pair programming, and this should help. Other
than books, does anyone have any suggestions? His skill set is pretty
antiquated and we need to get him up to speed as quickly as possible so
any suggestions are appreciated.

Background:
Mixture of Vb.Net and C#.Net code
Mixture of Oracle, DB2, and SQL server backends (we have our own
DataAccess class similar to the MS Enterprise Library Data Access)
Mostly Windows Forms for front ends
Mostly 4 tier design due to the complexity of our needs.

Thanks,


Dec 1 '06 #7
BK
First off, thanks for all the input... I won't address all the points
and questions, but here is some feedback from me (the original poster).

The programmer I "inherited" is the last of the VB6 programmers here.
The reason he was a hold out is because he is more old school and
reluctant to change. I actually did want him on the team, it was a way
to further show management how good the move was to .Net (if we can
make him more productive, we can make anyone more productive!) The
rest of us embraced the .Net environment and jumped in feet first over
a year ago. The rest of the team is very productive now, much more so
than when they coded in VB6 (I actually programmed in VFP prior to this
and came into the .Net team as a team lead). We had a few hurdles to
cross initially, but they were mostly related to team development
instead of individual development. We now attack all projects as a
team, divide and conquer. Using OOP principles, eXtreme Programming
techniques, and the .Net framework, we are all doing our job different,
but much more efficiently with fewer bugs and faster turn around. The
customers are happy, management is happy, my job is fun.

The reason for the post is that this programmer has been a challenge,
he wants to revert back to "old ways". FWIW, he is the oldest member
of the team. You can tell he wants to change and he doesn't resist
change, but his programming style is very procedural and he has a hard
time thinking of the Enterprise (Oracle, DB2, SQL Server).

Things are getting slowly better. We do a lot of paired programming
and that has been helpful. We also do a lot of code review, so he
see's other peoples work. Another thing I've found useful is to give
him shorter deadlines... if he has too long to work on something he
tends to bog himself down in minor details that don't enhance the
system or the user experience.

Once again, I do appreciate the replys and I will share my progress in
the hopes that others may benefit.

Dec 1 '06 #8
I don't think you completely disagree
:-)
You know me,

:-)

Cor
Dec 1 '06 #9
By fire him, I meant send him back to what he was doing before. Giving him a
problem to solve on his own tests both his learning skills and iniative. By
the way, I manage a worldwide organization with operations in many countries
with several sub-managers and Engineers working with me and we just can't
have people on our staff who can't handle their own learning path. Neither
can any successful organization.
--
Dennis in Houston
"Tom Leylan" wrote:
In the interest of communication (not argument) I'd like to say it was a
treat to read Stephany's well-reasoned reply. And to Dennis, I can
appreciate the fact you run your company that way (how many employees do you
have BTW) but good/smart companies don't. If he was an "employee" it means
he has knowledge of the business and one would prefer not to throw that
away. Besides what is "easy" and what is "complicate d" and why must
everybody perform complicated tasks? Are there no routine tasks to perform?

To the original poster... I'd recommend you consider Stephany's response.
What I would add is a question "get up to speed with what?" Are you hoping
the new guy can design new input forms, write new reports, review all the
SQL stored procedures and travel to the Denver office to do training?
Perhaps there is some task that match his current skills. If his Access DB
experience makes it difficult for him to grasp the 4-tier design of your
system right now it would be best not to give him the responsibility to fix
something in that area. Generally speaking people have particular skills
and if you determine what his are he can be of benefit to you immediately.
He might (for instance) be better at designing reports than the people you
currently have doing it. Maybe he is good at finding tricky bugs that have
eluded the rest of the team or that they simply don't have time to look
into.

He is going to need a "tour" of your app and .Net given by somebody who
understands both. If that person also knows something about Access he/she
could even contrast the two languages. All things considered it may not be
..Net command set that gives him the most problem, I know people quite versed
in a language who couldn't make heads or tails of an application written in
that language. An orientation to what was done and why helps alot.

Tom
"Dennis" <De****@discuss ions.microsoft. comwrote in message
news:96******** *************** ***********@mic rosoft.com...
Simple...assign him something simple to do in VB.Net and see what he
does...if he can't figure out how to learn what he needs to know to get it
done then fire him...if he does then give him something more complicated.
--
Dennis in Houston
"Stephany Young" wrote:
Well ... This one has all the hallmarks of 'how long is a piece of
string?'.

Your use of the word 'inherited' indicates to me that you did not recruit
him yourself. How he came to be working for your company is a major
factor
in how you approach the exercise. Was he, for instance, in some other
position where he used 'MS Access' etc. and now is being moved into a
more
'mainstream' area of the company, or perhaps recruited by someone else in
the company as a personal favour or similar reason. Maybe he, himself
'asked' to moved from weher he was to 'mainstream' area of the company.
In
addition, is this person 'new' to you personally or have you known him
for
some time. This sort of information is important to you so that you can
gauge his ability to learn, his level of self-motivation and perhaps his
abilities in analysing and solving 'problems', which, after all,
programming
is all about.

Realisticly, you have to gaugue his skill levels in various areas and the
best way is to start at the beginning. That is to start him off on 'ye
olde
standard' Hello World! console application. This should have the
intention
of introducing him to the VS IDE, the VB.NET compiler and the VS
Debugger.
It important that he understand what is actually happening when the app
hits
the 'Sub Main()' because, in Access, the need to worry about that level
of
functionality was hidden from the user.

As you are satisfied that he has mastered each step, increase the
complexity
of the exercises at the rate you gauge to be appropriate. Some people
learn
faster than others and some are able to grasp very complex concepts very
quickly indeed.

Reinforce the need to have Option Explicit and Option Strict turned on in
ALL projects, again making sure that he understands why.

Reinforce the need, and of course, the reasons, to follow the company
standards for naming conventions and coding styles at all times. Make
sure
that he is given a copy of the company standards manual as early as
possible.

In parallel with this, introduce him to existing projects. For example,
take
a small app and get him to dissect the code to understand what the app is
doing. It is not good enough for him to tell you he understands it, he
must
be able to demonstrate that he understands it. I get people to write a
report (in prose) of their analysis of the application, which also
provides
me with a way of gauging their written communication skill level. Make
sure
you review the report with the person, reinforcing where they have 'got
it
right' and correcting where they haven't.

Once you can gauge that their proficiency levels are at a certain stage
you
can send them out 'to play' on their own, but still reviewing what they
are
doing. As their skill levels increase you will be able to reduce the
amount
of reviewing that you need to do. When he makes a 'mistake' make sure you
don't browbeat him with it, rather, uUse it as an opportunity for
analysis
and learning.

At all steps along the way, you, of course, need to make sure that you
are
pointing them toward the appropriate references that will provide more
technical explanations on various concepts.

If the person concerned is a 'quick study' and is self-motivated this
process may be as short as a few weeks. For others it may extend into
months.

Unfortunately there is no 'magic bullet' formula that dictates how long
such
a process will take just as there is no 'magic bullet' formula that tells
you how you must go about it.

I have a slogan (which is never erased) written in big letters across the
top of my whiteboard. It reads "THERE IS NO SUBSTITUTE FOR TRAINING!'.

Good luck.
"BK" <bk******@hotma il.comwrote in message
news:11******** **************@ n67g2000cwd.goo glegroups.com.. .
Our .Net team has just inherited a junior programmer that we need to
get up to speed as quickly as possible. Unfortunately, his skill set
is largely Access with some VB6 and ASP classic experience. We employ
some parts of XP such as pair programming, and this should help. Other
than books, does anyone have any suggestions? His skill set is pretty
antiquated and we need to get him up to speed as quickly as possible so
any suggestions are appreciated.

Background:
Mixture of Vb.Net and C#.Net code
Mixture of Oracle, DB2, and SQL server backends (we have our own
DataAccess class similar to the MS Enterprise Library Data Access)
Mostly Windows Forms for front ends
Mostly 4 tier design due to the complexity of our needs.

Thanks,



Dec 2 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
9269
by: DrUg13 | last post by:
In java, this seems so easy. You need a new object Object test = new Object() gives me exactly what I want. could someone please help me understand the different ways to do the same thing in C++. I find my self sometimes, trying Object app = Object(); Object *app = Object(); Object app = new Object();
136
9444
by: Matt Kruse | last post by:
http://www.JavascriptToolbox.com/bestpractices/ I started writing this up as a guide for some people who were looking for general tips on how to do things the 'right way' with Javascript. Their code was littered with document.all and eval, for example, and I wanted to create a practical list of best practices that they could easily put to use. The above URL is version 1.0 (draft) that resulted. IMO, it is not a replacement for the FAQ,...
4
6703
by: James Thompson | last post by:
I'm sure this question has been asked a hundred times. I did a google search and found some older post and some mixed reviews. I am looking for an updated opinion on which book is the best for learning Visual C++ .NET. A little background, I have been programming C# for the past year and I was a Visual Basic programmer for about 5 years before that. I created a new project in C++ .NET and it is like night and day compared to C#. I was...
2
1288
by: Andrew | last post by:
Hello, friends, I implemented Forms Authentication in my asp.net app, it worked fine. However, now I have another problem: Although a user can be authenticated, but he/she may still not be allowed to view certain pages and folders. For exampl, a junior member can not view pages for senior memebers, although he/she can log into the web site. <authorization> in web.config seems a good approach. However, it needs
55
12836
by: Steve | last post by:
I have to develop several large and complex C++ hardware test programs that should work under DOS, most likely with 32-bit DOS extender. Development workstation OS would be Microsoft XP. Quite some time ago I worked in DOS, with Borland BC++ 4.1. I do not have it any more. Which compiler would you recommend me now? Which ones support serious DOS program development? Criterion should be number of available free library modules (graphic menu...
20
10047
by: Joe | last post by:
Is any one charting packing considered to be the "best"? We've used ChartFX but wasn't too happy about the way data had to be populated along with some other issues which slip my mind right now and Dundas has bugs and doesn't do a good enough job displaying axis labels and is very slow to paint large numbers of series and data points. We're currently evaluating ProEssentials which we are happy with but it's not a native .NET package. ...
4
2492
by: James Cooke | last post by:
I've just been laid off and I am freaking out (new wife, new baby 2 months away, new house yada yada yada). (not recommended at this time) Apart from the usual jobsites, (dice, monster etc) what is the best place I can go to get a job using dotnet? I have been programming for 2 years in dotnet and have MSSQL experience. My current title says "Junior Programmer" but I think I have sufficient experience now to drop off the "junior" prefix....
0
9563
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9997
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9937
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9822
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7366
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6642
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5270
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3917
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3522
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.