Click here to Skip to main content
16,007,163 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: FileSystemObject not working Pin
Guffa4-Feb-06 9:08
Guffa4-Feb-06 9:08 
GeneralRe: FileSystemObject not working Pin
Quecumber2564-Feb-06 14:55
Quecumber2564-Feb-06 14:55 
GeneralRe: FileSystemObject not working Pin
Dave Kreskowiak4-Feb-06 15:13
mveDave Kreskowiak4-Feb-06 15:13 
Questionproperty sheets in vb6 ... Pin
Marc Soleda3-Feb-06 3:43
Marc Soleda3-Feb-06 3:43 
AnswerRe: property sheets in vb6 ... Pin
Dave Kreskowiak3-Feb-06 7:34
mveDave Kreskowiak3-Feb-06 7:34 
GeneralRe: property sheets in vb6 ... Pin
Marc Soleda4-Feb-06 0:05
Marc Soleda4-Feb-06 0:05 
QuestionODBC Driver error ERROR [IM002] Pin
dijudiju3-Feb-06 3:07
dijudiju3-Feb-06 3:07 
AnswerRe: ODBC Driver error ERROR [IM002] Pin
dijudiju7-May-06 21:24
dijudiju7-May-06 21:24 
1)By default mysql does not support remote access...

2) you will have to specify this in the server first, (ofcourse you will not be able to do this from a remote machine!!! unless you have remote desktop access)

3)To enable access from a client machine called nile, do the following after starting mysqld (or mysqld_safe) on the server, named delaware:

% mysql -u root -p
mysql> use mysql;
mysql> grant all privileges on *.* to usrname1@'%'
identified by 'test' with grant option;
mysql> insert into host values('nile', '%', 'Y', 'Y', 'Y', 'Y', 'Y',
'Y', 'Y', 'Y', 'Y', 'Y', 'Y', 'Y');
mysql> exit


Hope this helps you!

The user name, usrname1, and the password, test, should be replaced by the real value.
One can then run mysql on nile as follows:

% mysql --host=delaware --user=usrname1 -ptest

To restrict access to a user from a specific host, change '%' in the grant command to a valid hostname or ip address.
QuestionCrystal report KeycodeV2.dll Pin
microuser_20003-Feb-06 1:11
microuser_20003-Feb-06 1:11 
AnswerRe: Crystal report KeycodeV2.dll Pin
Dave Kreskowiak3-Feb-06 8:38
mveDave Kreskowiak3-Feb-06 8:38 
GeneralRe: Crystal report KeycodeV2.dll Pin
microuser_20003-Feb-06 20:40
microuser_20003-Feb-06 20:40 
GeneralRe: Crystal report KeycodeV2.dll Pin
Dave Kreskowiak4-Feb-06 7:07
mveDave Kreskowiak4-Feb-06 7:07 
QuestionFinding Least & Max value Pin
Chandan_Kr3-Feb-06 0:11
Chandan_Kr3-Feb-06 0:11 
AnswerRe: Finding Least & Max value Pin
Steve Pullan3-Feb-06 0:51
Steve Pullan3-Feb-06 0:51 
GeneralRe: Finding Least & Max value Pin
Chandan_Kr3-Feb-06 19:43
Chandan_Kr3-Feb-06 19:43 
GeneralRe: Finding Least & Max value Pin
Steve Pullan5-Feb-06 12:17
Steve Pullan5-Feb-06 12:17 
QuestionError Handleing Pin
alien viper2-Feb-06 23:40
alien viper2-Feb-06 23:40 
AnswerRe: Error Handleing Pin
Steve Pullan3-Feb-06 0:03
Steve Pullan3-Feb-06 0:03 
AnswerRe: Error Handleing Pin
malharone3-Feb-06 6:19
malharone3-Feb-06 6:19 
QuestionClass to convert HTML to text Pin
gaudenzio2-Feb-06 23:40
gaudenzio2-Feb-06 23:40 
AnswerRe: Class to convert HTML to text Pin
gaudenzio3-Feb-06 5:19
gaudenzio3-Feb-06 5:19 
QuestionCorp an Image in VB 6.0 Pin
miftha2-Feb-06 21:54
miftha2-Feb-06 21:54 
GeneralRe: Corp an Image in VB 6.0 Pin
bskirkman2-Feb-06 23:07
bskirkman2-Feb-06 23:07 
Questionusing DBNull.value Pin
raj kumar reddy2-Feb-06 19:39
raj kumar reddy2-Feb-06 19:39 
AnswerRe: using DBNull.value Pin
Rana Muhammad Javed Khan2-Feb-06 20:48
Rana Muhammad Javed Khan2-Feb-06 20:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.