magiccode91405241511
Members-
Content Count
160 -
Joined
-
Last visited
Everything posted by magiccode91405241511
-
Few days before, I have used the power toys to rebuild my system icons.After that, all icons showed on the screen only with 256 color.Prior Windows XP, Windows 2000 have an option on the display applet thatlet me show all possible colors.Hmm..., Is there any way to restore the ability ?Thanks,P.S. If I switched to another resolution. It is fine. But once back, it lower the color to 256.
-
Networking networking laptop to PC
magiccode91405241511 replied to niaesha's topic in Computer Networks
I have read this link before but don't write again as this explain much more clear. Because Windows Vista a bit different on file sharing. Check this link to see if help, if don't, please let me know. Vista networking -
Hi, I'am creating some UI that will have some floating windows like the code below. But by default, when one window was active, the other will lost focus and became gray in color. How can I made both look like active. Much like some graphics apps such as photoshop tool window. Thanks, /** * * **/using System;using System.Windows.Forms;using System.Drawing;public class Program{ public static void Main(string[] args) { form1 AppMain = new form1(); Application.Run(AppMain); }}public class form1 : System.Windows.Forms.Form{ private ToolPanel tool; public form1() { this.Location = new Point(0, 0); this.Size = new Size(200, 200); this.tool = new ToolPanel(); this.tool.Owner = this; this.Load += new EventHandler(form1_load); } private void form1_load(object sender, EventArgs e) { if (tool != null) { tool.Show(); } }}public class ToolPanel : System.Windows.Forms.Form{ public ToolPanel() { this.Size = new Size(10, 200); this.ShowInTaskbar = false; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.Text = "Tools"; }}
-
String Library Functions A few questions
magiccode91405241511 replied to NelsonTR4N's topic in Programming
In addition to these functions. There are other set of functions do the same thing but add one more parameter.They are strncpy(), strncat() and strncmp()It will allowed control how many chars to copy. -
Did you work will apache web server ? If so, you may need to check the httpd.conf file to see if it include the IP Address you used to access it. Try open the httpd.conf and look for an item called Listen and modify to fit your needs. For example, // To listen all IP AddressListen: 0.0.0.0// To listen some specific IP AddressListen: 127.0.0.1Listen: 192.168.0.1
-
I'am not familiar with windows xp home edtion.But it seems that you have used the make folder private feature of windows xp home.As it will assign only the user who is owner of a folder so that no another users could access the folder.You can access again by logged in with administator.And then right-click the folder that you need to access.Choose property --> Click security tab --> Choose advanced buttonSelect Owner tab.Select the user you want to gain access to the folder.Remember click the Replace owner on subcontainer and objects.
-
Remote Desktop Software need some software to go please
magiccode91405241511 replied to jjkeenan's topic in Computer Networks
Because I just use remote software for getting data from home pc.And all of it was not important data.So I use build-in netmeeting remote app for remote control only.But you have to install the netmeeting 3.0 first on some systemsuch as windows NT 4.0.Windows 2000 includes it already.But Windows XP should be required installation. -
Windows Black Edition
magiccode91405241511 replied to liveblue's topic in Websites and Web Designing
I haven't know more about this windows black edition.But just knew the next version of windows was called windows 7.And it's pre-beta copy will be availabe for beta tester and developeron the PDC at NOV.I also saw some guess screen that showed the UI will be using ribbon UI like office 2007 used now. -
What Version Of Photoshop Should I Buy?
magiccode91405241511 replied to aqaing's topic in Graphics, Design & Animation
I will suggest you at least get the exteneded pro version.althrought photoshop cs4 is great for any designer or web designer who edit photo or photo retouching.But it might require more high end system and a lot ram to support.Also, because it's now supported hardware accelearate card.You might get slow perfermance when used on releatively old system. -
I don't know much about flex. Just knew that it is a powerful ria tool for building web application. You can go to flex dev section of adobe web site and read online it's getting started guide. There are both flex 2 and 3 you can choose from. =) Getting Started Tab
-
Renaming collection of Pictures (files)!
magiccode91405241511 replied to soleimanian's topic in Websites and Web Designing
I have found a simple tool that helps convert and rename a lot of files. It also provides many feature to editing photos. FastStone Photo Resizer 2.6 Download -
Need To Copy An Entire Site.. Help needed
magiccode91405241511 replied to jjkeenan's topic in Computer Networks
I have used a small utility called BackStreet Browser that work fine for most of sites. You may try it to see if it is help for downloading the sites you want. Download -
I'am not sure what effect you want to archive.Do you want to build that script on a flash movie ?If so, actionscript can not help ?
-
Sorry, I haven't see this Hi, for c++ string reference. Here have a great web site. [qutoe] http://www.cplusplus.com/reference/string/string/ It should not hard because it looks like java and c# string ----------------------- For quick way because the message pointer variable was 0-based index array So, please change the index variable to point to the char you need. then loop throught it, as, #include "stdio.h"#include "string.h"int main(){ // change the index to start the looping int index = 2; // change this to the number of char required (+ 1 if including null char) int numrequiredchars = 8; // build a simple buffer to hold a new data char *requiredchars = new char[numrequiredchars]; // the source text char *message = "Hello, Java and long long text"; memset(requiredchars, 0, numrequiredchars); for (int i = index; i < numrequiredchars; i++) { *requiredchars = *(message + i); ++requiredchars; } printf("%s\n", requiredchars); //printf("\n%s\n", message);}---For relatively full story I'am not good in explaination but I try my best, char *message = "Hello, Java" means a char pointer variable that is pointing to a memory location in system that start with char H and contain a string Hello, Java Because char *message = "Hello, Java" basically equal char[] = "Hello, Java".So both of it are an char array, except that the formal including a null char at the end of char array ( the string ) And since a char is occupy 1 byte memory, so a pointer address = 1 byte, i.e. 0001 => H0002 => e compared with an integer type that is 4 byte in size, i.e. 0001 => 10005 => 2 That result in, *message = H*(message + 1) = e*(message + 2) = l... If you just print out the message variable with printf,it will show the address that it contains. To get the actually value it pointed to, use the * operator to dereference, as, *message Since not very good in English. So it might be something missed. Wish this help !
-
It is best not to use system function when typical php functionsdo the job. Create a function to wrap the steps for opening and closing file, and / or also the compute steps.Should this use division and remainder be much better ?It is just my opinion
-
Renaming collection of Pictures (files)!
magiccode91405241511 replied to soleimanian's topic in Websites and Web Designing
For me, I will create a wscript or small vb appthat helped me to rename a lot of files.Most of time renaming files will use some pattern such as file[-1] or file[_1].So, it is easier create with script and rename it all at one by the FileSystemObject. -
I have noticed that there is a new applications that is based-on Limewire pro code based. So there is no simultaneous download restrictions and advertising. Here is the quote, Checkout the http://download.cnet.com/windows/
-
Yes, I agree that.Starting from visual studio 2005.It provides much better user experience and functionaility for developer.Esspecial the windows form designer.But the windows presentation designer a bit no good on visual studio 2008.It is too simple and no rich in features.If anyone who wish to build apps that run with WFP.It is best add an addition tools to support its's developement.
-
Hi, All, I'am new to email certificate on outlook express. I have just installed an email certificate on outlook express on windows 2000 system. It seems all work fine without any issues. But there is one that every time I sign an email and click the send button, it prompts a window state that a program is attemped to access my protected data. I wish the email send directly without this window. Is there anyway methods to do so ? If so, can you point me to somewhere else so that I can further checking it . Thanks,
-
You may try this to see if it it help for char* int index = 0;char *message = "Hello, Java";char achar = *(message + index);orchar achar2 = message[index]; If I'am not forgot it, there is a class called string on STL.But I'am not good with this class.
-
HI, OK, let's assume you can install some apps on a windows xp computer and because I forget how cdonts or cdo2000 work. So, instead, you can install php command line tool and php mailer. And then configure it to send mail by local group policy object. Script Part Create a php script file that call php mailer and send the mail you needed. ( for how php and php mailer works, please check the php and php mailer documentation ) Configure Part 1.) Install php and php mailer as usual. 2.) click start -> run -> gpedit.msc 3.) user configuration -> windows settings ->scripts (Logon / Logoff) 4.) double-click the logon entry 5.) type in the script name and the path. c:\php\php.exe [script-to-send-mail] So, every time users logon to the computer.The mail will get sent. ( for dial-up, please use with rasdial.exe [dial-up-profile]) P.S. You may also put all things in a batch file. I don't recommended to use the build-in mail function because it might not work as expected on some machine or system as this is reported by many users. Please let me know if it is work for you ! Thanks,