Forum: Storage Sep 18th, 2009 |
| Replies: 3 Views: 1,051 I am taking professional support on this issue and my HDD is still on the repair. According to their report, HDD heads was broken. Therefore, there is no software to save my data since this is a... |
Forum: Storage Sep 9th, 2009 |
| Replies: 3 Views: 1,051 I have a 1TB Maxtor Basics external hard drive. After a power cut, I lost access to the entire data in it; I couldn't see the drive in my computer but the system was slowing down and getting stuck... |
Forum: PHP Jun 24th, 2007 |
| Replies: 1 Views: 1,569 I receive an error on system startup like the one in the attachment.
But php_mysql.dll file actually is in C:\Prog\SERVER\PHP\ext folder in my computer. How can I change this incorrect setting? |
Forum: MySQL Jun 3rd, 2007 |
| Replies: 0 Views: 1,266 I'm trying to create a libmysql.a file for my Dev-C++ project.
Parameters for dlltool is as below :
http://img527.imageshack.us/img527/8911/beforeco4.jpg
But the output libmysql.a file is not... |
Forum: C++ Apr 6th, 2007 |
| Replies: 7 Views: 10,852 There is no way VS C++ doesn't contain windows.h in its include folder; when the pigs fly...
You had better search for that file using windows' search tool or using something like Google Desktop. |
Forum: C Apr 1st, 2007 |
| Replies: 0 Views: 4,498 I want to create a low level keyboard hook.
I tried the code below :
LRESULT CALLBACK LowLevelKeyboardProc(int nCode, WPARAM wParam, LPARAM lParam)
{
if (nCode < 0) return... |
Forum: MySQL Feb 25th, 2007 |
| Replies: 7 Views: 2,155 Everybody says PHPMyAdmin is how a useful program. I installed it on my computer. And it gave an error like this :
I couldn't solve the problem, so I gave up on it.
Now I installed MySQL... |
Forum: MySQL Feb 24th, 2007 |
| Replies: 7 Views: 2,155 Windows XP is installed my computer, but I don't know about the server. |
Forum: MySQL Feb 24th, 2007 |
| Replies: 7 Views: 2,155 Hello,
I am going to study MySQL on my web server.
I would like to ask if there is a useful GUI tool for MySQL to create/delete tables and browse entries on my database. |
Forum: PHP Feb 12th, 2007 |
| Replies: 3 Views: 6,386 [mail function]
; For Win32 only.
SMTP = localhost
smtp_port = 25
; For Win32 only.
sendmail_from = me@example.com
; For Unix only. You may supply arguments as well (default: "sendmail -t... |
Forum: C# Feb 11th, 2007 |
| Replies: 2 Views: 10,627 Given error :
Error 1 Syntax error, bad array declarator. To declare a managed array the rank specifier precedes the variable's identifier. To declare a fixed size buffer field, use the fixed... |
Forum: JavaScript / DHTML / AJAX Feb 10th, 2007 |
| Replies: 1 Views: 2,566 http://www.contentmart.com/ContentMart/Create/images/dom.gif
I want to ask if there is a way to access an obcect which is not in a form field. My textbook doesn't cover that topic. All the sample... |
Forum: C# Feb 10th, 2007 |
| Replies: 2 Views: 10,627 I have this C++ code : const int ANYSIZE_ARRAY = 1;
struct LUID {DWORD LowPart; WORD HighPart;};
struct LUID_AND_ATTRIBUTES {LUID Luid; DWORD Attributes;};
struct TOKEN_PRIVILEGES... |
Forum: C# Feb 9th, 2007 |
| Replies: 4 Views: 6,921 Thank you Ravalon, it works now.
But it made me curious. Was that a coincidence that we used powerprof.dll instead of powerprof.h? I mean, if an API function requires xyzw.h should I always add... |
Forum: C# Feb 9th, 2007 |
| Replies: 4 Views: 6,921 This is the relevant code :
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;... |
Forum: C# Feb 9th, 2007 |
| Replies: 4 Views: 6,921 I suppose you know how to import Win32 API functions into C#.
Like this :
BOOL ExitWindowsEx(UINT uFlags, DWORD dwReason); // Original Win32 function
[DllImport("User32.dll")] public static... |
Forum: C# Feb 9th, 2007 |
| Replies: 8 Views: 17,566 Oh, sorry. I didn't scroll down the page then...
Thank you. |
Forum: C# Feb 9th, 2007 |
| Replies: 8 Views: 17,566 Thank you for your reply.
Your solution indeed is a good alternative. But I want to learn how to disable and enable a control.
I am new at C#, I don't believe it would be so difficult to... |
Forum: C# Feb 9th, 2007 |
| Replies: 8 Views: 17,566 I have two buttons in my main window frame, named btStart and btStop. btStop is initially disabled.
I want to write down such a code that ,
-when user clicks btStart, btStart will be disabled and... |
Forum: PHP Feb 5th, 2007 |
| Replies: 3 Views: 6,386 Hello,
I want to embed a mail server on my computer. For that purpose I've installed MDaemon v9.5.3 on my computer. Now what else do I have to do in order to send/recieve mail from different... |
Forum: C Nov 16th, 2006 |
| Replies: 1 Views: 2,531 Hello,
I want to create a WebBrowser control in my Win32 project using DevCPP.
I had a search in MSDN. Creating a WebBrowser control looks like far different than creating a button or edit control.... |