English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Programming & Design - March 2007

[Selected]: All categories Computers & Internet Programming & Design

Till today my system had Windows 2000 Professional. And I was the administrator and had access to all the drives of the disk. But I had not given access to E drive to another user Monica.

Today I installed Windows XP and registred myself as Sat as Computer Administrator, and another user Monica with limited access. NOW
1) we both can not access that E drive at all. Even when I login as Sat (Computer Administrator) and try to access the E drive, I get a message as 'drive not accessible'.

2) Moreover, when I try to add another user with username 'administrator', I get a mesage as 'username administrator already exists', infact there is no user with that username.

Please help me access E drive.

2007-03-23 05:22:18 · 2 answers · asked by Anonymous

2007-03-23 05:09:00 · 2 answers · asked by fkhaddad_ie 1

Here's a link to the online calculator I'm trying to duplicate:

http://www.bankofthejames.com/monthlysavings_compounding.html

2007-03-23 05:02:09 · 3 answers · asked by Abe R 1

wut are some cool myspace html and css codes to use that not many people know about??

2007-03-23 04:35:02 · 4 answers · asked by [[ MiiSZZ SANTANA ]] 2

2007-03-23 04:31:47 · 5 answers · asked by rose s 1

I have oft seen classes like this "#classname" and ".classname" but what's the difference? How to use them properly?

2007-03-23 04:26:34 · 3 answers · asked by Vincy 3

I want to create a piece of code that will track conversions of cost-per-actions from visitors to my website who arrive via personalized URL. The code will work similar to conversion tracking codes used in Google AdWords, Snap and Yahoo search. However, it will not utilize any of those services and will run independently on my website and the metrics will be provided to me through a control panel login I can access 24/7. How can I do this or is there PHP/MySQL software I can add to my webhosting account to enable this feature? Please Advise. Thanks!

2007-03-23 04:18:13 · 2 answers · asked by dante45chicago 1

I want to make a free web page for my small business. I don't kknow where to go or what to do but I just want it to be free and easy.

2007-03-23 04:14:43 · 10 answers · asked by Anonymous

The site state It must begin with
img http
or url http



2007-03-23 04:12:06 · 4 answers · asked by STARS 3

I am looking to install a website builder for my hosting clients. I have an Apache server with cPanel. I am lloking for a great price, support for unlimited domains and lots of templates, I would also like the capability to add my own templates

2007-03-23 03:57:18 · 1 answers · asked by rykkardo8 4

preferably freeware,
i have a pc

2007-03-23 03:53:54 · 6 answers · asked by Anonymous

2007-03-23 03:53:30 · 5 answers · asked by American Eagle 2

This is what I want to do:
........................
for x:= 1 to len(is_a_string) do
begin
A:= MidStr(is_a_string,x,1);
Showmessage(IntToStr(Ord(A)));
next;
end;

function TForm17.MidStr(Const Str: String; From, Size: Word): String;
begin
MidStr := Copy(Str, From, Size)
end;

..........................
but it doesn't work because that one character picked out from the string is still a "string" and not an "AnsiChar". How can I make this work?
Actually, all I want to do is go through a string and find out whether there is ANY numerical value in it, be it decimal 0...9 or ANSI Code 48...57.
I haven't quite understood whether I could use the Delphi function
Val(numberString, float, errorPos) for this purpose.
Please get me on the right path....

2007-03-23 03:47:45 · 1 answers · asked by Marianna 6

how do you delete the contents of a string buffer? i mean clean it out and erase all the previous data? the strng buffer i created, i don't know how to empty it of info. thanx

2007-03-23 03:42:52 · 5 answers · asked by Chustar Of Naija 2

2007-03-23 03:38:26 · 2 answers · asked by Christopher B 1

2007-03-23 03:34:32 · 1 answers · asked by ashish a 1

/* This is just including the header files */



#include

#include

#include

#include



/* End of Header Files */







float cosa,cosb,sina,sinb;



/* Till now it was simple you do that in any C++ program. From now onwards starts the CORE */



/* We use the function below for rotation in both horizontal and vertical direction All we have to do is pass the angle in degrees to this function and we will get the corresponding values */



void ini(float cos1,float cos2)

{

cosa=cos(cos1*3.141592736/180);

cosb=cos(cos2*3.141592736/180);

sina=sin(cos1*3.141592736/180);

sinb=sin(cos2*3.141592736/180);

}



/* The function below takes 3 values i.e the values for the 3 Co-ordinates (x,y,z) and returns us the values which we actually plot on the screen i.e it takes the 3-D values and converts them in to a 2-D value which when plotted on the screen seems
3-D */



void plot(int x,int y,int z,int &x1,int &y1)

{

x1=x*cosa-y*sina;

y1=x*sina*sinb+y*cosa*sinb+z*cosb;

x1=320+int(x1);

y1=240-int(y1);

}



/* Above we add 320 and 240 respectively to x1 and y1 to shift the co-ordinate system to the centre of the screen */



/* The above 2 functions are what you will only need to create any 3-D object */



void main()

{



/* Here we are initializing the graphics */

gm=CGAC0 (320x200 resolution)

int gd=DETECT,gm;

initgraph(&gd,&gm,"c:\\tc"); /* Please enter the path of your bgi directory.In my case it is “c:\\tc\\bgi”.It may be different in your case */



int p=0; /* Variable passed to the ini function above i.e. it contains the angle in degrees*/



while(!kbhit())

{

ini(p,p); /* Here we are calling the ini function which is responsible for the rotation.You can try with different parameters here

ini(p,0) – Horizontal Rotation

ini(0,p) – Vertical Rotation

ini(p,p) – Both Veretical and Horizontal Rotation */



int x[5],y[5]; /*Declaration of array used for storing the converted x,y,z values by the plot function */





/* Below 4 lines are responsible for plotting the co-ordinates of the base of the Pyramid */



plot(5,5,1,x[0],y[0]);

plot(45,5,1,x[1],y[1]);

plot(5,45,1,x[3],y[3]);

plot(45,45,1,x[4],y[4]);



setcolor(RED); // Sets the color of the lines as RED



/* Below 4 lines are responsible for actually drawing the base of the pyramid from the values x & y returned by the plot function. Different co-ordinates of the base(4 pts.) are stored in the array declared above*/





line(x[3],y[3],x[4],y[4]);

line(x[1],y[1],x[4],y[4]);

line(x[0],y[0],x[3],y[3]);

line(x[0],y[0],x[1],y[1]);



/* Below we plot the top of the pyramid and from there using the for loop

join the peak to the 4 co-ordinates of the base hence completing the pyramid*/



plot(20,20,140,x[2],y[2]);



for(int i=0;i<5;i++)

{

setcolor(BROWN);

line(x[2],y[2],x[i],y[i]);

}



p+=3; /* Incrementing the angle for rotation by 3 degrees.This also alters the speed of rotation try increasing or decreasing this value */



delay(20);

cleardevice(); /* If we don’t use cleardevice here then the pyramid will leave marks all around it’s rotation path. */

}

}




2007-03-23 03:27:59 · 1 answers · asked by asbestosdiagram 1

I would like a button that ´gives my customers a link to my website - perhaps even they get MY link and I get theirs - a mutual win win situation? . Is there software that does that ? Is this as effective as saving us as a favourite? - Im trying to improve my yahoo listing status....thankyoux

2007-03-23 03:26:02 · 3 answers · asked by celebrityhandbags 3

2007-03-23 03:25:16 · 2 answers · asked by che26 1

i am getting this error info"Registered JIT debugger is not available.An attempt to launch a JIT debugger with the following command resulted in an error code of 0x2 (2). Please check computer settings cordbg.exe!a0x664. I need step by step info, i have no idea what it is talking about!!!!!!

2007-03-23 03:15:43 · 1 answers · asked by bannabeauty 2

i am auto printing a screen using vb. i dont want the print dialog box to appear. the page should just print to default printer. alternatively if i could use "sendkeys" to dialog box this would be okay but vb code waits for a reply to the print dialog box..

2007-03-23 03:11:49 · 1 answers · asked by Dickle Von Schtroodlegump 2

Hello, I'm using classic ASP and VBScript and MS Access for my DB which I will upgrade to a different DB soon. For now, I just want to know if it is possible to do this one task. I want to maintain the look of my site, but because I'm unable to close my connection at the right time, I have to open this page in a new window with no other connections being opened.

What I'm trying to do is compact and repair my database through my asp page, which works fine if it's the only thing on the page.

I'd like to know if you can still use Flash with ASP. I want to make a small Flash movie and put it on page1.asp. Then have the flash movie call page2.asp (compact and repair code) and not have to interact with page1.asp. Is this possible?

The code for my compact and repair is at http://www.jordanmotorcompany.net/help/candr.html

Thanks!

2007-03-23 03:09:07 · 3 answers · asked by UBigDummie 1

In a Unix environment, is it possible to set the file permissions such that only the process which created the file can delete it or change it, but other processes are given read access to the file? if no how close to this specification can I get?

2007-03-23 03:02:09 · 2 answers · asked by Anonymous

what codes do I need to write in order to fire the on_comm event in vb 6. The PIC16F84A microcontroller send hex codes thru the serial port using rs232.

2007-03-23 03:01:50 · 1 answers · asked by ian 1

2007-03-23 02:51:15 · 1 answers · asked by Ingredient_G 2

2007-03-23 02:49:17 · 2 answers · asked by gurubtr 2

0

I am a beginner in C(notC++). Suggest any programs for me to write .

2007-03-23 02:48:20 · 2 answers · asked by Raghu Raman 1

fedest.com, questions and answers