How to create a setup.exe to install MySQL_5.0.exe and MySQL_Query_Browser.exe in a single click? MySQL_Query_Browser.exe setup must start after the complete installation of MySQL_5.0.exe . can any one help me ? Thanks in advance
JAYARAJ
How to create a setup.exe to install MySQL_5.0.exe and MySQL_Query_Browser.exe in a single click? MySQL_Query_Browser.exe setup must start after the complete installation of MySQL_5.0.exe . can any one help me ? Thanks in advance
JAYARAJ
just for fun!!! sorry for disturbing u all !!!! JAYARAJ
fsadf JAYARAJ
invalid autondication specification message from server "access denied for user root@ist3 (using password : YES)" sql status 2800 error code 1045 how to set password for database in mysql 5.0 please tell me its urgent JAYARAJ
Windows could not finish repairing the problem because the following action cannot be completed: Clearing the ARP cache" i get the above error message when i repair my network connection JAYARAJ
which os r u using? r u the Administrator of ur system? if so. u can set the permission. start>>control panel>>administrator tools>>local security policy>>windows setting>> local policy>>security option>>network acess sharing and security model for local sysem >>select classic - local.... now right+click the folder for which u need permission>> security tab>> i belive rest of the thing u could do... JAYARAJ
To get ip address i have this code. Do any one know any simple method to get current IP?
CString CSignIn::GetIP()
{
CString strIp;
//Init winsock
WSADATA wsaData;
int nErrorCode = WSAStartup(MAKEWORD(1,1), &wsaData);
if (nErrorCode != 0) {
//Cannot initialize winsock
return \_T("");
}
char strHostName\[81\];
if (gethostname(strHostName, 80)==0)
{
hostent \*pHost = gethostbyname(strHostName);
if (pHost->h\_addrtype == AF\_INET)
{
in\_addr \*\*ppip=(in\_addr\*\*)pHost->h\_addr\_list;
//Enumarate all addresses
while (\*ppip)
{
in\_addr ip=\*\*ppip;
strIp = CString(inet\_ntoa(ip));
ppip++;
if (strIp!=\_T("")) {
break;
}
}
}
}
return strIp;
}
{/PRE>
JAYARAJ
I am using VC++/MFC . I am checking the remote database connection in LAN. JAYARAJ
OK.. i need to acess mysql from remote system? do u know how to do it? myconnection string _T("Driver={MySQL ODBC 3.51 Driver};Server=61.247.251.95;Port=3306;Database=ist_encoder;User=root;Password=isakura;Option=4"); can u help me to solve this problem. JAYARAJ
MyDialog.h afx_msg void OnContextMenu(CWnd* pWnd, CPoint point); MyDialog.cpp BEGIN_MESSAGE_MAP(CMyDialog, CDialog) ON_WM_CONTEXTMENU() END_MESSAGE_MAP() void CMyDialog::OnContextMenu(CWnd* pWnd, CPoint point) { // TODO: Add your message handler code here CMenu menu; VERIFY(menu.LoadMenu(IDR_POPUP_MENU)); CMenu* pPopup = menu.GetSubMenu(0); ASSERT(pPopup != NULL); pPopup->TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON, point.x, point.y, AfxGetMainWnd()); } ---------------------------------------------------------------------------- I Belive that this would be helpfull to u JAYARAJ
how to add your PC's IP address to the database from host? please help me . JAYARAJ
CADODatabase Eror Code=80004005 Code meaning=Unspecified error Source=Microsoft OLE DB Provider for IDBC Drivers Description =[MYSQL][ODBC 3.51 Driver]Can't connect to MySQL server on '61.247.251.95'(10060) I got this error while i connect database from remote system ? can any one please help me? my database connection string _T("Driver={MySQL ODBC 3.51 Driver};Server=61.247.251.95;Port=3306;Database=ist_encoder;User=root;Password=isakura;Option=4"); Where did i gone wrong? JAYARAJ
_T("Driver={mySQL ODBC 3.51 Driver};Server=ist16;" "Port=3306;Option=4;Database=ist_encoder;Uid=root;Pwd=isakura;"); Is it right? JAYARAJ
CADODatabase Eror Code=80004005 Code meaning=Unspecified error Source=Microsoft OLE DB Provider for IDBC Drivers Description =[MYSQL][ODBC 3.51 Driver]Can't connect to MySQL server on '61.247.251.95'(10060) I got this error while i connect database from remote system ? can any one please help me? JAYARAJ
u cont run exe inside web browser' JAYARAJ -- modified at 5:47 Friday 31st March, 2006
CStringArray myclass::getStr() { CStringArray csa; csa.Add("str1"); csa.Add("str2"); return csa; } I got this error what to do? error C2558: class 'CStringArray' : no copy constructor available How to return two dimensional array? JAYARAJ
i got this error what to do? error C2558: class 'CStringArray' : no copy constructor available JAYARAJ
how to set the page size for .aspx ? i am new to asp.net can any one help me. thanks in advance JAYARAJ
how to return string array from a method? CString myclass::getStr() { CString strarr[]={"JAYARAJ","bala"} return strarr; } i get error .. how to do it...? JAYARAJ
how to check IPSec? JAYARAJ