jovypinoy 0 Junior Poster in Training

Hi IT Masters,

I have a a VB6 exe applocatopm that works perfectly on the server (MS Windows 2008 R2) and to another computer. I just copy pasted the exe file and downloaded all dll files needed. (No installer of the app and there's no way to find it)

But when I go to remote desktop as a User to access the shared VB6 exe app in the server (it run faster to a server than computer), It execute fine in the login form but the Problem occur when I clicked search button. The error is:

"Run-time error 339

Component "DBGRID32.OCX" or one of its dependencies is not correctly registered: ... etc."

I downloaded the dbgrid32.ocx, dbgrid32.dep and run dbgrid32.reg to register the file in the registry. Both servers and the computer.

Like what I stated above "The exe file is working fine on the server and in the computer". The problem is when I use the computer as Remote Desktop User, then the file didn't work.

When I ran the VB6 app as Administrator in Remote Desktop, it works soo fine. But as RDC User it cause me a headache..

jovypinoy 0 Junior Poster in Training

Hi,

Does upgrading from Windows NT Server 2000 to Windows Server 2008 will fix my problem on corrupted databases and active directory.

Our Windows NT Server 2000 is unusable because of lsass.exe - system error and I tried everything to fix it but no luck. I am wondering if I'll upgrade to newer version, will it fix the problem? Although I could access the file as another drive / slave. But I don't want to reconfigure everything (call me lazydog!).

But if no other option. Of course, I'll go with reconfiguring everything..

Any suggestions would be much appreciated.

Thanks in advanced,
Jovy

jovypinoy 0 Junior Poster in Training

Hello guys, I hope someone can help me on my problem. Actually I insert a jquery funtion to pause my slideshow but it didn't work..

Thanks for the help in advance.

Here is my codes

Variables for the links and images of slideshow.

<script>
var links = new Array();
links[0] = 'http://www.paespi.vectoreeno.com/about-us/paespi-who-are-we';
links[1] = 'http://www.paespi.vectoreeno.com/gallery/breakfast-forum-sept-23-2011';
links[2] = 'http://www.paespi.vectoreeno.com/articles';

var imageUrl = new Array();
var imageTitle = new Array();
var imageCaption = new Array();

This is to call the image in my directory

<?php
for($counta=0; $counta<$count; $counta++)
{
    echo "imageTitle[".$counta."]=\"".$imageTitle[$counta]."\";";
    echo "imageUrl[".$counta."]=\"".$imageURI[$counta]."\";";
    echo "imageCaption[".$counta."]=\"".$imageCaption[$counta]."\";";
}

?>

Slideshow codes and the dots.

jQuery.noConflict();

jQuery(document).ready(function() {

var a=0;
   
    function changepicture() {
        jQuery("#slideshowpicture img").attr('src', imageUrl[a]);
        document.getElementById("changeable").href = links[a];
        jQuery("#slideshowtitle").html(imageTitle[a]);
        jQuery("#slideshowarticle").html(imageCaption[a]);
        jQuery(".dot"+a).attr('src', "<?php echo $templateuri; ?>/images/home/dotw.jpg");
       
        if( a == 0) {
            a++;
            jQuery(".dot<?php echo $count-1; ?>").attr('src', "<?php echo $templateuri; ?>/images/home/dotb.jpg");
           
        }
        else if( a == <?php echo $count-1; ?>) {
            b = a - 1;
            a = 0;
            jQuery(".dot"+b).attr('src', "<?php echo $templateuri; ?>/images/home/dotb.jpg");
        }
        else {
            b=a-1;
            a++;
            jQuery(".dot"+b).attr('src', "<?php echo $templateuri; ?>/images/home/dotb.jpg");
        }
    }
    changepicture();
    var slideinterval = setInterval(changepicture, 4000);

This is my function to pause an slideshow. But it failed. :(

$('#slideshow').hover(function() {
        clearInterval(slideinterval);
    },
    function() {
        slideinterval =  setInterval( "changepicture()", 4000 );
    });

    });
    </script>

Few codes under this script codes.

<div id="main" class="frontpage">
	<div id="slideshow">
		<div id="slideshowtext">
			<div id="slideshowtext-wrap">
				<div id="slideshowtitle">

Thanks for the help in advance.. :)

jovypinoy 0 Junior Poster in Training

Hi Sorry for the delay.. This was actually solved but from the other site. My only mistake from my original post was I placed hover first before the active.. It should be the active before the hover..

Here is my new codes.

#article-sidebar a,
#article-sidebar a:link,
#article-sidebar a:active {
    text-decoration: none;
}
#article-sidebar a:visited{
background-color: #f5f5f5;
color: #0b73b7;
}

#article-sidebar a:hover{
background-color: black;
color: #fff;
}

Thanks for the reply guys.. Daniweb rocks!

jovypinoy 0 Junior Poster in Training

Hi guys, This is what I wanted to do.

1. When I hover my mouse on the sidemenu. It will change it background color.

Here is my codes.

#main-sidebar {
	width: 185px;
	float: left;
	padding-right: 10px;
	
	
}
#article-sidebar {
	color: #0b73b7;
	font-size: 14px;
	font-weight: bold;
}
#article-sidebar li {
	padding-bottom: 15px;
}
#article-sidebar li ul {
	padding: 5px 0px 0px 0px;
}
#article-sidebar li ul li {
	padding: 7px 0px 0px 15px;
}
#article-sidebar a:link,
#article-sidebar a:visited,
#article-sidebar a:hover,
#article-sidebar a:active {
	text-decoration: none;
}

This is what it looks like http://www.daniweb.com/forums/attachment.php?attachmentid=23005&stc=1&d=1322016962

But when I try to edit this one.

#article-sidebar a:link,
#article-sidebar a:visited,
#article-sidebar a:hover{
        background-color: black;
}
#article-sidebar a:active {
	text-decoration: none;
}

It looks like this.. http://www.daniweb.com/forums/attachment.php?attachmentid=23006&stc=1&d=1322017134

I really appreciate all the replies.

jovypinoy 0 Junior Poster in Training

Yeah I solved my own problem. I luckily searched at this site http://www.webmasterworld.com/javascript/3754876.htm

And also works perfectly to me.. I am so happy.. :D

jovypinoy 0 Junior Poster in Training

<script>
//Arrays for Image URLs, titles, and captions
var imageUrl = new Array();
var imageTitle = new Array();
var imageCaption = new Array();

<?php
//This is to loop the imageTitle, imageUrl and imageCaption in the slideshow. The value corresponds to the java script below.
for($counta=0; $counta<$count; $counta++)
{
echo "imageTitle[".$counta."]=\"".$imageTitle[$counta]."\";";
echo "imageUrl[".$counta."]=\"".$imageURI[$counta]."\";";
echo "imageCaption[".$counta."]=\"".$imageCaption[$counta]."\";";
}

?>

//Here you can tell readers why you are using jQuery.noConflict()
jQuery.noConflict();

jQuery(document).ready(function() {

//This is to call the image according to their value in the gallery. In this case the first saved picture in the media will be the first on to call and it is equal to [0].

var a=0;

//The picture will change according to the set interval value. As you can see the variable a was used on each image variables.
function changepicture() {
jQuery("#slideshowpicture img").attr('src', imageUrl[a]);
jQuery("#slideshowtitle").html(imageTitle[a]);
jQuery("#slideshowarticle").html(imageCaption[a]);
jQuery(".dot"+a).attr('src', "<?php echo $templateuri; ?>/images/home/dotw.jpg");

//This is also to sync the dots made to the picture on a slideshow. The number of dots corresponds to the number of pictures in a slideshow. For example the 2nd dot will became blue if the 2nd picture was show otherwise it will be white.

if( a == 0) {
a++;
jQuery(".dot<?php echo $count-1; ?>").attr('src', "<?php echo $templateuri; ?>/images/home/dotb.jpg");

}
//This is to reset the value of a to 0. To avoid infinite looping

jovypinoy 0 Junior Poster in Training

Hi, thanks for your reply.. Ok.

I want to add a links on each images from my slideshow. Sorry I'm not good on this so please bear with me.

JAVASCRIPT
-----------------------------------------------
<script>
var imageUrl = new Array();
var imageTitle = new Array();
var imageCaption = new Array();

<?php
for($counta=0; $counta<$count; $counta++)
{
echo "imageTitle[".$counta."]=\"".$imageTitle[$counta]."\";";
echo "imageUrl[".$counta."]=\"".$imageURI[$counta]."\";";
echo "imageCaption[".$counta."]=\"".$imageCaption[$counta]."\";";
}

?>

jQuery.noConflict();

jQuery(document).ready(function() {

var a=0;

function changepicture() {
jQuery("#slideshowpicture img").attr('src', imageUrl[a]);
jQuery("#slideshowtitle").html(imageTitle[a]);
jQuery("#slideshowarticle").html(imageCaption[a]);
jQuery(".dot"+a).attr('src', "<?php echo $templateuri; ?>/images/home/dotw.jpg");

if( a == 0) {
a++;
jQuery(".dot<?php echo $count-1; ?>").attr('src', "<?php echo $templateuri; ?>/images/home/dotb.jpg");

}
else if( a == <?php echo $count-1; ?>) {
b = a - 1;
a = 0;
jQuery(".dot"+b).attr('src', "<?php echo $templateuri; ?>/images/home/dotb.jpg");
}
else {
b=a-1;
a++;
jQuery(".dot"+b).attr('src', "<?php echo $templateuri; ?>/images/home/dotb.jpg");
}
}
changepicture();
var slideinterval = setInterval(changepicture, 4000);
});
</script>

HTML
----------------------------------

<img src="<?php echo get_template_directory_uri(); ?>/images/home/slideshow.jpg">

jovypinoy 0 Junior Poster in Training

Reply please !!!!!! :(

jovypinoy 0 Junior Poster in Training

Actually you only have one error which is the line #15. If you can correct it, the error in the line 18 and 21 will be corrected too. I think the previous declarations of your variable will be the cause of that error.

broj1 actually solved your previous problem, and it is time for you to use your logical ability as a future programmer to solve this kind of error code..

Enjoy!

jovypinoy 0 Junior Poster in Training

My code below.. I will appreciate all the replies, suggestions and advice.

<script>
var imageUrl = new Array();
var imageTitle = new Array();
var imageCaption = new Array();
<?php
for($counta=0; $counta<$count; $counta++)
{
echo "imageTitle[".$counta."]=\"".$imageTitle[$counta]."\";";
echo "imageUrl[".$counta."]=\"".$imageURI[$counta]."\";";
echo "imageCaption[".$counta."]=\"".$imageCaption[$counta]."\";";
}
?>
jQuery.noConflict();
jQuery(document).ready(function() {
var a=0;
function changepicture() {
jQuery("#slideshowpicture img").attr('src', imageUrl[a]);
jQuery("#slideshowtitle").html(imageTitle[a]);
jQuery("#slideshowarticle").html(imageCaption[a]);
jQuery(".dot"+a).attr('src', "<?php echo $templateuri; ?>/images/home/dotw.jpg");
if( a == 0) {
a++;
jQuery(".dot<?php echo $count-1; ?>").attr('src', "<?php echo $templateuri; ?>/images/home/dotb.jpg");
}
else if( a == <?php echo $count-1; ?>) {
b = a - 1;
a = 0;
jQuery(".dot"+b).attr('src', "<?php echo $templateuri; ?>/images/home/dotb.jpg");
}
else {
b=a-1;
a++;
jQuery(".dot"+b).attr('src', "<?php echo $templateuri; ?>/images/home/dotb.jpg");
}
}
changepicture();
var slideinterval = setInterval(changepicture, 4000);
});
</script>
jovypinoy 0 Junior Poster in Training

Hello,

I received an emails and at first it looks like this:

View the attachment number 1

Then when I try to forward the email, it looks fine but the problem returns at the bottom part of the email

View the attachment number 2

I'm sure it was their signature. But I don't know exactly how they did that? I'm forwarding the email and I can't to delete their signature to makes my email looks clean.

Why I can't delete this image?

Thanks for the help!!

jovypinoy 0 Junior Poster in Training

O yes!! I got it..

I restart my modem and the new router together and booom, it works fine..

Thanks for the reply. I am so happy.. :)

Also I am now working for the security of my wi-fi so that I can limit the users who can access it.. (evil laugh)..

Bye!

jovypinoy 0 Junior Poster in Training

Sorry for my english.. :( Hope you understand my concern.

jovypinoy 0 Junior Poster in Training

I have 5 computers connected through LAN. My old router (Linksys BEFSR41) doesn't have wi-fi services. So I bought broadband router (Edimax BR-6225n)

I copy all the configurations from my old router to my new router manually. I configure my new router connected to my computer using a cable wire.

I do access my new router using a computer connected through LAN, but there's no internet connection. I tried to Obtain IP and DNS address automatically. Still no luck.

Please help me! I need to have internet connection via LAN then I will proceed configuring Wi-Fi..

Here's is the link of my printscreen and configurations.

Old router ipconfig /all
http://jovypinoy.fileave.com/router(old).txt

New router ipconfig /all
http://jovypinoy.fileave.com/router (new) ping.txt

Screenshots of Old router settings
http://jovypinoy.fileave.com/router (old) Setup.png
http://jovypinoy.fileave.com/router(old).png

Screenshots of New router settings
http://jovypinoy.fileave.com/router (new) wan setup.png
http://jovypinoy.fileave.com/router(new).png
http://jovypinoy.fileave.com/setup (new) Lan.png

Do i have to configure also the Wireless settings to have internet connection even I am connected through wire/cable?

Thanks for the help in advance! I hope there's a genius angel with shining glassed can help me..

jovypinoy 0 Junior Poster in Training

Hello thank you for your reply, my answer is in red.

Can you play all 4 chapters in your Videocam? Yes, all of the 4 chapters are playing in my videocam. I can select the first or jump to the 3rd. I play it all I want. Also if you have recorded it on DVD but haven't finalize it yet, What did you mean? Sorry, but the file is already created in .Vob.did you try it on tv dvd player instead?Yes! It play the four chapters, it play all files.

And also, how many files it created? Ok. In my DVD player, it detects 2 .vob files (1st has two chapters) (2nd has four chapters). in my computer there's 2 .IFO 2 .VOB and 2 .BUP files.


Hope these helps!

jovypinoy 0 Junior Poster in Training

Hi Daniweb team,

I recorded a video in Sony videocam and play it in my computer. It has four chapters. I wanted to upload the 4th chapter only in the youtube, but when I edit it in the Windows Media Maker, it only sees the first part (which is weird) though in the DVD it has four.

I converted it in .AVI but same result. It only play the first part.

Why is that it only play the first part? I tried other software that can stream the chapters but only works if you will pay for it. (I think Mpeg2streaming?).

Please help!!

jovypinoy 0 Junior Poster in Training

Hi gerbil. I solved my problem in reformatting my PC. I noticed that my other applications like Anti-Virus didn't work. Also I try to setup my mail accounts to another PC and it downloaded all of my mails. I run a quick scan to my PC to check if there's a virus and I found 54 Salinity.Nar in Win32 folders. It infects all of my drivers and other files in my that folder.

Note: I scan my PC by another PC connected through a network.

Anyways, it backs to normal. Thanks,

jovypinoy 0 Junior Poster in Training

Hello,

Im having a problem with my OE6 first,

When I download emails it stops receiving at one out-of #s?

Sometimes I do receive emails from Outlook but most of the I can't receive one. What I did is to removed emails from the server and back to normal then when someone emails me (legitimate one and I know her) it stops downloading again.

Message in OE6:
Your Pop3 has not responded in 60 seconds. Would you like to wait for another 60 seconds for the server to respond?

So I decided to migrate in Mozilla Thunderbird but same result.

Message in Mozilla Thunderbird:
Connection timed out with the server.


My configurations in both email clients are 100% correct. Because I can send an email but most of the time (I can receive emails) I can't receive emails.

I view into my Event Log:
I configure already DCOM and remove that error in Event Log
MrxSmb warning in event log appear only when I use Mozilla Thunderbird.

I have Broadcom NetXtream Gigabit Ethernet Card
I am using WinXP SP2
2GB DDR2 RAM

Please help!!

jovypinoy 0 Junior Poster in Training

Not yet. Actually after they install the video card. The problem still there. It suddenly shutdown again..

My computer is connected to the UPS for back up power supply. They advice me to plug the computer directly into the electric outlet instead of connecting it to the UPS.

Do I have to change my PSU?

I will keep you guys updated on this..

jovypinoy 0 Junior Poster in Training

Try to connect your hard disk to another computer and make it as a slave then back up your important files.

jovypinoy 0 Junior Poster in Training

Hi Daniweb.com,

My PC shutdown automatically but the green LED light is on. When I press restart button, nothing happens. I need to press the power button for 5 seconds to totally shut it down. Then press the power button again to on the computer.

During Windows loading or sometimes on the Windows Log-in my computer shutdown again but the green LED light is on and I need to do the same thing to shut it off and turn it on.

I don't know the exact problem is. The last things that I did were:
1. I upgrade my RAM from 256MB to 1GB
2. Upgrade my Windows to Service Pack 2.

I brought my computer to the Computer Service Center for check up. And they said that to resolve the issue:
1. They need to install external video card.
2. There's a problem with my motherboard.

These are my computer specification:

Windows XP 2003 Service Pack 2

CPU: Intel(R) Celeron(R) 2.53GHz
Memory: 1GB DDR400 Memory
Motherboard Model: 865G-M8
BIOS Brand - Phoenix Technologies, LTD
Built in Graphics Unit: 96MB Intel 82865G Graphics Controller

Please help me!!!
Any help will be appreciated,
Thanks in Advance

jovypinoy 0 Junior Poster in Training

Im not sure if this will help you in your problem. I can't understand the problem.

Goto Control panel -> Administrative Tools.

Double click on Local security Policy. this will pop up Local security setting windows.
Find/open folder 'Local Policies' and then select sub folder 'Security option'
On column Policy find word 'Accounts : Guest Account Status'

Check out this setting....
If setting is 'Enabled' then you can connect to this computer without prompt for password.
If setting is 'Disable' then this computer need you to enter valid account or password to access this computer.

Note : apply this setting on computer you want to connect to that give you prompt for password.
I hope this will help.

jovypinoy 0 Junior Poster in Training

ok thank you for all the replies. I already upgraded my RAM and it running better.

jovypinoy 0 Junior Poster in Training

Hello. Just to close this issue and help everybody who had the same issue as mine. I already solved my problem on my own. I understand (correct me if I'm wrong) that Mozilla Thunderbird will only import the first account that you created in your Outlook Express. So if you have 3 or more accounts in your Outlook Express. You have no choice but to go with my solution. LOL!

First thing to do is to back up your Outlook Express files.

How?
1. In your Outlook Express. Go to Tools > Options
2. Click on Maintenance Tab.
3. Click on the Store Folder button
4. Copy the links then paste it in Run command of Windows.
5. Copy all the .dbx files and paste it on your flash drive or CD.
We're ok on your OE6 files. Now we need to back up your Address Book.
1. In your Address Book. Click File Menu > Click Export > Address Book.
2. Save it on your flash drive or CD.

Now we will going to delete the first created account in your Outlook and already in your Mozilla Thunderbird.
Remember: Only retain 1 account in your Outlook Express. As I said Mozilla Thunderbird will do the job of importing all your settings, files and address book into your Thunderbird Account.

In your Mozilla Thunderbird. Go to Tools Menu > Import Everything from your Outlook Express. Just follow …

jovypinoy 0 Junior Poster in Training

Hello,

I have HP Inkjet D2660 and I installed HP software to my computer. I notice that after the installation. My computer became slow. Before, I can open files in just a second. But now it opens 3-4seconds. Is there another way to solve my problem? I don't need the ink indicator of HP and its not that accurate. Also when I open windows task manager, the performance under CPU Usage is always on 100%.

I have Windows XP Pro SP2.
512MB PC3200 DDR Memory (2pcs of 256DDR)
ESET NOD32 4 Antivirus running on my computer.
Applications open in my computer simultaneously - Outlook Express 6, Mozilla Firefox, VB Applications (Quickbooks), 3-4 Excel files, 3-4 Doc files.

Hope someone can help me, Thanks for the help in advance.

jovypinoy 0 Junior Poster in Training

Hi,

I'm having problem transferring my mails in my second account from Outlook Express to Mozilla Thunderbird. I already transfer all my mails in my primary account and it's so easy (Import options of Mozilla Thunderbird). But I can't find or I don't know how to import my mails from my secondary account.

I also go to the Mozilla Thunderbird folder. using %appdata% in Run command. And it seems that Outlook mail data type is differs from the Mozilla Thunderbird.

Please help me..
Thanks in advance.
Jovy (Philippines)

jovypinoy 0 Junior Poster in Training

Thanks for all the replies.. Yes I agree, only one output audio will work with the two headsets. But the two microphones work both.

I also want to get the Y splitter. But there's no available Y splitter here in the Philippines.

:-(

jovypinoy 0 Junior Poster in Training

Ok thank you for the reply..

jovypinoy 0 Junior Poster in Training

Hello,

Im planning to change our router to a wireless broadband router. I also know that I need to configure the network configurations from the router to the modem.

Just in case that I failed to deliver internet connections through LAN using this wireless router.

Is there's a possibility to also configure my old router to the modem? IT 101.

This is my first time to do this thing.

Thanks for the help,
Appreciate it so much,
Jovy

jovypinoy 0 Junior Poster in Training

Try to upgrade your memory RAM. 1Gb is too low for a games especially a 3D or RPG games. Also a 128MB video card does not meet the required minimum specifications? I think 256MB is the minimum? But try also to upgrade it to 512MB. It is worth to upgrade your system for you to enjoy all the games..

Good Luck..

jovypinoy 0 Junior Poster in Training

Hello,

Is it possible for me to connect two headsets (A USB and an Analog type) in one computer? If Im going to use "Splitter", does the sound quality will be degraded?

Any helps, suggestions, comments will be much appreciated.
Thank you guys

jovypinoy 0 Junior Poster in Training

Maybe its a conflict with your RAM and Hard Drive. If your memory RAM is too low and you use lots of applications in your hard drive simultaneously then maybe your RAM is overworked.. Try to put things out. And test everything like:

1. Remove your memory RAM. Ofcourse the PC won't load but lets figure out if the beeps is the same with the beeps you heard the last time.

2. Insert your memory RAM to a different slot. I think your memory was overworked. Just guessing.

3. Try a new hard disk in your PC. If PC works then you know what to replace. If not, then your memory RAM have a problem..

4. Check all the wires of your PC.. If you want. Just connect the cable wire only to your hard disk. Unplug cable on your CD/DVD drive and floppy drive..

Let me know if what happens! Good luck!!

jovypinoy 0 Junior Poster in Training

hahaha you're pinoy too?? :-P

jovypinoy 0 Junior Poster in Training

No I didn't mean that. Its ok sage! I just translated the "Thank you very much" in Philippines' dialect.

Going back to my problem in Lotus Notes? Do you an idea in editing the type of the client to a server type so that he can open all databases?

jovypinoy 0 Junior Poster in Training

Hi sage thanks for your reply. I really dont have an idea with the Lotus Notes. How long will it take to be certified. Also Im curious why he can open other databases like calendar, address books and help. Only his mail that he can't open.

What if I will turn him into a server type. Allowing him to open all the databases. Or what if I will make his mail\xxx.nsf open for public so that he can also open that mail database?

Do you know how to do this sage. Thank you very much.. translated in Philippines..

>> Maraming Salamat!! ^_^

jovypinoy 0 Junior Poster in Training

We are using Lotus Notes 4.5 LAN. I certify the ID file of my officemates and its successfully done. The expiration of his ID file had been extended but he can't access his mail. But all the databases from his workspace is accessible except for his mail. Which is the most important. Lotus Notes said:

"You are not authorized to access database"

I think before I done the certification. I did something like cross certify and edit the fields but I turn it back to the original. Is there a way to open his again mail database? I can open his mail through the server. But from the user client I cant open it.

Please Help Me!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

jovypinoy 0 Junior Poster in Training

Hi everyone,

We encounter a problem from the server last week. It makes a beep sound then shutdown automatically. I figure out the the heat sink was not fit properly. It looks like loosen from the motherboard. While the motherboard was on repair. I tried to slave our SATA Seagate Hard Disk 80GB to my computer just to get some important files on it. It makes a clicking noise and I noticed that it is not spinning. I'm worried that our server's hard disk was crashed.

When the motherboard repaired. We tried immediately the hard disk and fortunately it works so fine. It loads the Server and also the network configuration.

They adviced us to replace the hard disk because there's a bad sector on it. They give us two options.

1. Disk Cloning - copy all the contents of the old hard disk to a new one. no OS installation, no network configuration but it is not 100% that all data will be copied.

2. Purchase a new hard disk - Copy all the files manually. Manually config network configuration, manually install OS. Easier to troubleshoot because of step by step procedure.

What do you think guys?? Please help..

Thank you so much and God Bless

Jovy of Philippines

jovypinoy 0 Junior Poster in Training

Hello I reply to my own threads because I solved my own problem. First, I tried to scan my Hard drive and it detects nothing. So there's no virus on my computer system. I found out that my keyboard got short. I think my backspace and delete keys accidentally connect to the Power key.

jovypinoy 0 Junior Poster in Training

Hi everyone,

I have a big problem about my backspace and delete key. When I pressing the two keys my computer suddenly shutdown. Also my Enter key got affected and changes it to character "/". I was wondering if this was effect of virus or malware.

Thank you,
Jovy

jovypinoy 0 Junior Poster in Training

Thank you very much for your reply. It works and solved my problem. Hehehe. Godbless you bro..

jovypinoy 0 Junior Poster in Training

Hello IT specialists of Daniweb,

I have a computer at home and I want to limit the time for my siblings in accessing my computer. For example, From the time 8pm to 12am, they can't access my computer.

If I will create a new account for them, the problem won't solve because they can access it at anytime.

Is there a way for windows XP to done that? Or I have to install a software for it.

Thanks for helping,
Jovy

jovypinoy 0 Junior Poster in Training

Hello guys,

I solved my problem and I want to share it to you guys. Im using HP Laserjet 1020 in the office connected to the Windows 2000 Server. I try to print in my computer using the printer from the server. But the printer says in my computer that "Access denied, unable to connect to the printer". Since that printer is connected to the Server. The only way to access files or anything in the server is to type the username and password that had been registered to that server. What I did was.

1. If you don't have a folder shared in the server. Just create a folder to the server and share it. If you do, click that shared folder in your computer.
2. You will be ask for a username and password. This user account is registered to the server. But you don't had an account. Go to the server.
3. After you successfully type the correct username and password.
4. Click on the Settings. Then Printer and Faxes.
5. You will be surprised that the printer is ready.

Good Luck,
Jovy

jovypinoy 0 Junior Poster in Training

Hello guys,

Im using HP Deskjet D2660. And I'd tried to used refillable ink. But the ink level indicator of HP telling me that the ink cartridges was empty. I know that if the used cartridges was being refilled, the information of its ink level from the computer memory will not be reset. It always be in the empty / low ink level.

Anyways, I don't want to use that ink level indicator, cause its just slow down my computer.

Anyone knows how to disable that HP ink level indicator? Does disabling that indicator will affect my printing?

Thank you for the help Daniweb IT Experts.

jovypinoy 0 Junior Poster in Training

Wow great I will try your solution if in case it will happen again. I don't know what is the cause of that. I think the cable that is connected to my Lan Card. Maybe it is somehow loose.

Thank you so much. I think I have to mark this as solved. :-)

jovypinoy 0 Junior Poster in Training

Activity Monitor by softactivity.com
Here is the link. http://www.softactivity.com/employee-monitoring.asp. It is a little bit to expensive but it is worth it and excellent software.

jovypinoy 0 Junior Poster in Training

Hi,

My computer is in a network connection. There are times that I lose my internet connection but my officemates have their internet connection. But I can access their shared folders via LAN, it means I'm connected to them. Its only my connection!

So everytime it happens, I always try to restart my computer to have my internet connection. Is there a way not to restart my computer to have an internet connection if I lose it again?

Thanks,
Jovy

jovypinoy 0 Junior Poster in Training

Hi guys,

Since no one is taking up this issue. Just let me solve my own problem. Hehe. I notice that when my Anti Virus is out of date. I don't receive any garbled email or experience weird things like "In OE6 preview window the email is fine but when I open it, it became garbled email".

I also discovered that the garbled email that I received is basically the message source of the Outlook Express 6.
- Open the email message
- Click File Menu
- Properties
- Click the Details Tab
- Click Message source

Until I update my Eset Nod32 4, so what I did was I uncheck the email scanning of my OE6. But I really don't disabling my Anti Virus to the OE6.

I just Go to Eset Nod 32
- Setup
- Enter Entire Advanced Set up tree..
- Look email clients under Email client protection
- then uncheck all the check box except for the last two (Repeat scan after update and Accept scan results from the other module)
- And you're done.

But since I don't receive any garbled email right now. I just want to be sure that I can read or reply to the email if this problem will happen again.

I will Leave a messages from the server
- Go to OE6
- From the tools menu click "Accounts"
- …

jovypinoy 0 Junior Poster in Training

Hi guys. Just to clarify this OE6 malfunction issue. I already received undelivered mail messages and bounce back emails. I don't know what happen but the last thing I did is I created an account in OE6 using a gmail server. Just to test if OE6 will received a bounced back email using the gmail. And fortunately OE6 does. And after a week, I continuously received a bounce back and undelivered mail messages.

One thing that comes in my mind is my webmail server do something or upgrade their speed or increase the size of their database. This past months I complaint to them about the delay or late email messages in my inbox.

By the way, Thank you for all the replies above. And this issue already "SOLVED" haha

jovypinoy 0 Junior Poster in Training

I'm done with this re-installation of my OE6. But my problem still there. But there were bounced back or undelivered message that I receive like "The recipients mailbox is full". And the Subject "Hello" don't go to the process of sending. There is an error. I'm glad to see that validation of OE6 is working. But still when I'm sending email to a fake domain or addresses that not even exists like "abcdefghi@abcdefghi.omg", will go to my sent folder and it did not give me an error or undelivered message.

By the way I'm using an Eset Nod32 4, Antivirus. And I already configure my email scanning. I uncheck all the read, send and receive email. But I don't really disabling my Email Scanning.

Any suggestions and advice from anyone will do appreciate.

Cheers,
Jovy