jp


{ City } mumbai
< Country > india
* Profession * qa engineer
User No # 104260
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 6
Users Marked my Answers as Wrong # 2
Questions / { jp }
Questions Answers Category Views Company eMail




Answers / { jp }

Question { HP, 4665 }

I have string like hp company.print tis like company hp.write a program in vbscripting


Answer

Hi,

We can write a code in 2 ways. one is Generic Code and another is Hard Code.

In Generic Code:

Str="hp company"
ArrayStr=Split(Str)

For i = uBound(ArrayStr) to 0 Step-1
expStr=expStr &" "& ArrayStr(i)
Next

msgbox expStr

-------------------------------------------------

In Hard Code:

Str="hp company"
ArrayStr=Split(Str)

expStr= ArrayStr(1)&" "&ArrayStr(0)

msgbox expStr

Is This Answer Correct ?    2 Yes 0 No

Question { 2915 }

Hi frnds, for ex.. we got a job in wipro, they will give me one mail id.. "Rameshkumar@wipro.com", where to open this mail id..in which sw ? or outlook?


Answer

You can open in "Micro Soft Exchanger Outlook" if you have
email id or User id. Some companies giving user id or email id.

Is This Answer Correct ?    4 Yes 2 No