DangerDev 107 Posting Pro in Training

u can also refer form1.control.property=value;

DangerDev 107 Posting Pro in Training

lol DangerDev good quote there

thanx.

DangerDev 107 Posting Pro in Training

Nope.... Yahoo won't to deal with Microsoft.

How can u say...........

DangerDev 107 Posting Pro in Training

welcome Nobias niceto meet u.

DangerDev 107 Posting Pro in Training

i think since u know java script be familiar with ajax, it will be helpful also be familiar with one server side scripting like asp .Net or PHP,

along with this search in local news paper. see there requirement , and learn those things, approach them show u'r experience. It may help u to get that job.

Best of Luck

DangerDev 107 Posting Pro in Training
DangerDev 107 Posting Pro in Training

or u can put a if condition to conver 13 in to 1.

DangerDev 107 Posting Pro in Training

confusing ......
may be u need to put above code in button click event
or if that control who's text u want is in another form then
form.control.text="text";

prbbly thats u want !!!!!!!

DangerDev 107 Posting Pro in Training
DangerDev 107 Posting Pro in Training

hi
plz use right word, coz i m not able to understand u'r problem. here 'test' is not property it is a value of property of td, i.e. id.
so id is an attribute. and for that particular td it has got the value 'test', to set other attribute for that tag u can use
element.setAttribute('attribute_name','value');
function of dom.

if u want to change the style dynamically use function, for ex. font:
element.style.font="value";
or for text-align,
element.style.textAlign="value";

using this u can change style dynamically.

-- to find parent node use
var oParentNode= element.getParentNode();

i hope this info will help u..

DangerDev 107 Posting Pro in Training

you can use dom's style.left and style.top properties to position the img.
if it is not working put img inside a div and use above property, with div .and also put style.position='absolute' to work with div.

DangerDev 107 Posting Pro in Training

no it didnot return any dom object taking id. if u want to do that u should use getElementById('idname') method of document object.

DangerDev 107 Posting Pro in Training

>>Google is inherently evil.

whyyyyyyyyy ???
i think its a good company at least u dont have to pay for its services( in general).
did u heard about google books project ??

>>i heard the microsoft want to buy google aswell.

never

>>At the moment neither Microsoft nor Yahoo has the power to challenge Google when it comes to online services

yep :)

>>.....online services (except possibly email),
i think gmail is better then yahoo mail except it doesnot provide Folder feature like yahoo mail. But its POP and forwarding feature is greaaatttttt which is paid in yahoo.

DangerDev 107 Posting Pro in Training

may be u guys r right, but still i feel dhtml is having its own beauty. Browser compatibility problem could be handled through professional coding.

DangerDev 107 Posting Pro in Training

lots of companies like IBM, Orcale want Fortran programmers with UNIX experience to write mainfframe code and lots of defence companies like BAE want ADA programmers with UNIX experience for aircraft control etc...

......thanx for this information.

DangerDev 107 Posting Pro in Training

Microsoft want to acquire yahoo for $45 billion. MS's this step is considered as a step to control the webworld or to defeat Google. What's ur opinion ? Do you think yahoo should say yes or no? Do you think it will affect Google, how badly ?

DangerDev 107 Posting Pro in Training

make two dimension array say arr[m,2] , in first dimension u store all empId, like arr[n][0]=empid
and in second dim u store pointer to corresponding structure. like arr[n][1]=ptr , then write a function which returns pointer to structure and take empid,,,,

DangerDev 107 Posting Pro in Training

check the location, may be there is some permission problem in server, there u have to put file read/write permission some time.

DangerDev 107 Posting Pro in Training

#Not everything that counts can be counted, and not everything that can be counted counts.

(From a sign hanging in Albert Einstein’s office at Princeton.)

DangerDev 107 Posting Pro in Training

can u explain this 'Fist' ?
what is it all about.

DangerDev 107 Posting Pro in Training

without javascript u cant enjoy ajax, so in you can redirect user to the other page which says them to enable javascript in order to visit website.

DangerDev 107 Posting Pro in Training

u make a hash table where empId will be key and it will return pointer to particular structure. this will make u'r job easy.

DangerDev 107 Posting Pro in Training

is it zipped one ? if so
no need to install just unzip it and put in to c drive, i think it will work. u just have to set environment veriable.

DangerDev 107 Posting Pro in Training

thanx to all guys for there valuable info. :)

DangerDev 107 Posting Pro in Training

>2) use good code. What the h*** is
mul = (int)pow((double)base,(double) i++);

i m using vc++ there pow function takes double as argument so its called type casting.


>#2) Where is main() defined?
>#3) Don't you need some kind of header for pow().

i thought its common sense.

>2) use good code. What the h*** is


this is not my code, i have just modified it.

DangerDev 107 Posting Pro in Training

thanx hollystyles its nice.

DangerDev 107 Posting Pro in Training

What About Novell, Redhat Like Companies...

DangerDev 107 Posting Pro in Training

What ABOUT Linux Networking Companies...???

DangerDev 107 Posting Pro in Training

I've been programming in Linux for almost 9 mos. And I'm really enjoying it. Well I started by doing some research and familiarizing commands. I read a lot, I have a book here that helped me a lot. GNU/Linux Application Programming by M. Tim Jones. It's really nice. Maybe you can buy and read it.

thanx a lot, do u have any reference, name of some company working in Linux.
any way thanx, i think that book will help me.

DangerDev 107 Posting Pro in Training

Treat your password like your toothbrush. Don't let anybody else use it, and get a new one every six months.
~Clifford Stoll

DangerDev 107 Posting Pro in Training

Being great is good, making others Greater is truly great..

nice one....

User, n. The word computer professionals use when they mean "idiot."
~Dave Barry

DangerDev 107 Posting Pro in Training

I understand atof is the way to do but after experimenting with it I can't get it to work, getting strange results no matter how much I tried.

Hi, char array is not string, atof take string as param, put '\0' in the last of char array, probably then it will work
like:
char abc[]={'3','.','5','\0'};
printf("no. is %f",atof(abc));

DangerDev 107 Posting Pro in Training

posting same question twice does not solve u'r problem.

DangerDev 107 Posting Pro in Training
int base_numeric() 
{ 
	 //works with any base 2-10
	int number = 1101; //binary number
	int base = 2; //from base 2
	int i = 0;
	int r = 0;
	int mul;
	while (number > 0) 
	{
		int digit = number % 10; //extract 1 digit (no matter base)
		mul = (int)pow((double)base,(double) i++); //calculate base ^ i (0, 1, 2,
		r += digit * mul;
		number/=10;
	}
	printf("%d hi-",r);
return r;
}

i think thats what u were asking...

WaltP commented: Giving away the homework answer, and with overly complicated code -2
Aia commented: Incorrect Mr WaltP. Same code OP posted. +6
DangerDev 107 Posting Pro in Training

server side include is best option,
typing code is nice , for that try edit plus or notepad++....

DangerDev 107 Posting Pro in Training

can u plz clear it out what does this browserhawk do....

DangerDev 107 Posting Pro in Training

can u plz send the url of webpage where u have seen this. I m not able to get what r u telling

DangerDev 107 Posting Pro in Training

common yaar i dont want to start Windows Vs Linux debate again. I know what window is and what linux is. Plz solve my problem. Its all about love, ;) i think u guys understand...:)

joshSCH commented: What a terrible post. Learn better english. -2
Ancient Dragon commented: josh is just being ignorent again :) +23
DangerDev 107 Posting Pro in Training

after passing sym to cnvrt() value of
row='0' and
col='0'-2= '.' (ascii of '0' is 48 and 48-2=46 which is ascii of character '.')
so ultimately
s_Hexdecitable[row][col]=s_Hexdecitable[48][46]

(since it is index which should be integer hence that will be converted to integer.

since 48,46 is more than the dimension of ur array hence it will yield garbage value.

DangerDev 107 Posting Pro in Training

>Your dream is a little odd considering that you're not familiar with Linux.
its not like that i m completely unaware of linux OS. i know about Shell shell scripting, also have some experience of OS itself.

Other thing is that its all about Open Source, and I want to serve Open source community.
>You also have to consider how few computers use the Linus OS, sorry Linux OS.

I think u dont know How big Linux community is ???????

if u r pure Windows programmer and not aware of Powerfulness of linux plz dont reply.

DangerDev 107 Posting Pro in Training

I think following things are necessary:
--------------------------------------------
1. You should be good at HTML
2. You should be familiar with JavaScript
3. You should be familiar with CSS
4. Yous should be familiar with at least one of the
server side scripting language like PHP, JSP,
ASP.
5. You should know about browser technology,
else will be endup suffering from browser war.

DangerDev 107 Posting Pro in Training

Hi
are u doing it for academic purpose or for any company.
It seems u r doing for academic purpose.

Your client will be connected to internet through companies server. it will not be connected directly i guess. this makes u'r job easy. u can at server side do something to achieve u'r goal.

DangerDev 107 Posting Pro in Training

Hi
are u doing it for academic purpose or for any company.
It seems u r doing for academic purpose.

Your client will be connected to internet through companies server. it will not be connected directly i guess. this makes u'r job easy. u can at server side do something to achieve u'r goal.

DangerDev 107 Posting Pro in Training

Hi
use document.location.href property to achieve this.
suppose u want to navigate to page example.html then u can do like this
document.location.href="example.html";

DangerDev 107 Posting Pro in Training

Hi
try this:
replace ul tag with div tag and have same class like following:

<div class="hMenu">
               <li class="hOption" title="Manage all content directly"><a href="/admin.htm?content=command">Content</a></li>
               <li class="hOption" title="Manage Criterion Value"><a href="/admin.htm?criteria=command">Criteria</a></li>
               <li class="hOption" title="Manage Question Format"><a href="/admin.htm?question=all">Question</a></li>
               <li class="hOption" title="Manage Form Generation"><a href="/admin.htm?form=all">Form</a></li>
               <li class="hOption" title="Manage Notary Database"><a href="/admin.htm?notary=all">Notary</a></li>
               <li class="hOption" title="Manage User Database"><a href="/admin.htm?user=all">Users</a></li>
               <li class="hOption" title="Manage Geographic Data"><a href="/admin.htm?geo=all">Geo Data</a></li>
            </div>

actually a list starts rendering after leaving some margin. removing this ul solves u'r problem

DangerDev 107 Posting Pro in Training

Be great in act, as you have been in thought.
William Shakespeare

How poor are they who have not patience! What wound did ever heal but by degrees.
William Shakespeare

DangerDev 107 Posting Pro in Training

google is just google, incomparable, others are just child

DangerDev 107 Posting Pro in Training

Get VERY familiar with the OS. No company is going to hire you to program it unless you can use it blindly...

thanx i' ll try my best...

DangerDev 107 Posting Pro in Training

Hi
I m basically windows programmer, worked always for windows platform, I m good in web based programming also. But i want to move.
I always wanted to work for linux. Its my dream to work in c or c++ under Linux platform, I want to do some Networking kinda job or some job which are real, means calling OS api or something like that.
I am not very much familiar with Linux OS but still have a kind of crush with that.

For now, I m working as a trainee completing last semester of my Course, in a s/w company.

Can any body help me to realize my dream. By sending some link where I can find job of my dream. or any valuable suggestion.

Thanx in advance.

DangerDev 107 Posting Pro in Training

Hi
can u post one or two page and corresponding css so that i can see what really problem is.