Question : windows xp home blue screen at startup STOP: c0000139 {entry point not found}

i have a dell laptop Inspirion 1300 thta is not starting.
it starts to a blue screen with the following error:

STOP: c0000139 {Entry Point Not Found}
The procedure entry point CsrServerInitialization could not be located in the
dynamic link library CSRSRV.dll

How can I replace/remove this .dll?

i have the windows disk. i can get the CMD command, but do not know how to have
this .dll repaired from the windows disk, or remove it with a CMD command.

thanks

Answer : windows xp home blue screen at startup STOP: c0000139 {entry point not found}

Ok, if you think the problem is in the VB code then lets use some simple stuff to check what you are sending to the database. Instead of:

Me. Line2DataTableAdapter.Fill(Me.L2ReportDataset.Line2Data, DateAndTime1_Start.value, DateAndTime2_End.Value)

Assign values to variables and look at them before passing:

sLine2Data = Me.L2ReportDataset.Line2Data

sDateAndTime1_Start = DateAndTime1_Start.value

sDateAndTime2_End = DateAndTime2_End.Value

Debug.Print sLine2Data & "|" &  sDateAndTime1_Start & "|" &  sDateAndTime2_End

Me. Line2DataTableAdapter.Fill(sLine2Data , sDateAndTime1_Start, sDateAndTime2_End)

This should eliminate the obvious in anycase.

leonstryker

Random Solutions  
 
programming4us programming4us