Click here to Skip to main content
15,891,372 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: javascript __dopostback System.NullReferenceException Pin
Karthik Harve19-Apr-13 21:26
professionalKarthik Harve19-Apr-13 21:26 
QuestionRe: javascript __dopostback System.NullReferenceException Pin
jojoba201119-Apr-13 22:04
jojoba201119-Apr-13 22:04 
QuestionRe: javascript __dopostback System.NullReferenceException Pin
jojoba201121-Apr-13 17:41
jojoba201121-Apr-13 17:41 
Questionhow to append text on textarea T_T no people reply Pin
Michael†Cheong19-Apr-13 5:21
Michael†Cheong19-Apr-13 5:21 
AnswerRe: how to append text on textarea T_T no people reply Pin
Jasmine250119-Apr-13 9:45
Jasmine250119-Apr-13 9:45 
AnswerRe: how to append text on textarea T_T no people reply Pin
R. Giskard Reventlov19-Apr-13 10:57
R. Giskard Reventlov19-Apr-13 10:57 
GeneralRe: how to append text on textarea T_T no people reply Pin
Michael†Cheong19-Apr-13 18:39
Michael†Cheong19-Apr-13 18:39 
QuestionCode migration to VB to C# Pin
Leo Rajendra Dhakal18-Apr-13 19:15
Leo Rajendra Dhakal18-Apr-13 19:15 
I've already done it in VB6 which was perfectly working fine but i've to work it in c#
for locking access database
VB
Sub lockDb(bPath As String)
    On Error GoTo Ermsg
    Dim iFreeFile   As Integer
    Dim lLoop       As Integer
    Dim sString     As String

    iFreeFile = FreeFile() 'Get free file #
    Open bPath For Binary As #iFreeFile 'Open specified file for binary I/O.

    sString = "DVUnion Windows Database" 'Default header data.

    For lLoop = 7 To 19 'loop through and update byte positions 9 through 15.
        Put #iFreeFile, lLoop, VBA.Mid$(sString, lLoop - 4, 1)
    Next lLoop
'    If cmdunlock.Enabled = False Then cmdunlock.Enabled = True
'
'    cmdlock.Enabled = False
Close #iFreeFile


for unlock access database
VB
Sub UnlockDb(bPath As String)
    On Error GoTo Ermsg
    Dim iFreeFile   As Integer
    Dim lLoop       As Integer
    Dim sString     As String
    iFreeFile = FreeFile() 'Get free file #
    Open bPath For Binary As #iFreeFile 'Open specified file for binary I/O.

    sString = "Standard Jet DB" 'Default header data.

    For lLoop = 7 To 19 'loop through and update byte positions 9 through 15.
        Put #iFreeFile, lLoop, VBA.Mid$(sString, lLoop - 4, 1)
    Next lLoop
    Close #iFreeFile


How to do it in c#
www.facebook.com/raazak47

AnswerRe: Code migration to VB to C# Pin
Karthik Harve18-Apr-13 20:07
professionalKarthik Harve18-Apr-13 20:07 
GeneralRe: Code migration to VB to C# Pin
dusty_dex18-Apr-13 21:48
dusty_dex18-Apr-13 21:48 
AnswerRe: Code migration to VB to C# Pin
Richard Deeming19-Apr-13 2:01
mveRichard Deeming19-Apr-13 2:01 
QuestionHELP T_T save image into database (binary format) Pin
Michael†Cheong18-Apr-13 7:04
Michael†Cheong18-Apr-13 7:04 
AnswerRe: HELP T_T save image into database (binary format) Pin
Richard Deeming18-Apr-13 7:09
mveRichard Deeming18-Apr-13 7:09 
GeneralRe: HELP T_T save image into database (binary format) Pin
Michael†Cheong18-Apr-13 9:44
Michael†Cheong18-Apr-13 9:44 
GeneralRe: HELP T_T save image into database (binary format) Pin
Richard Deeming18-Apr-13 10:03
mveRichard Deeming18-Apr-13 10:03 
GeneralRe: HELP T_T save image into database (binary format) Pin
Michael†Cheong18-Apr-13 19:52
Michael†Cheong18-Apr-13 19:52 
Questionasp.net handler asking Pin
Michael†Cheong18-Apr-13 4:31
Michael†Cheong18-Apr-13 4:31 
AnswerRe: asp.net handler asking Pin
Richard Deeming18-Apr-13 5:20
mveRichard Deeming18-Apr-13 5:20 
QuestionASP.NET performance Pin
Kalim_mughal18-Apr-13 1:38
Kalim_mughal18-Apr-13 1:38 
AnswerRe: ASP.NET performance Pin
Richard MacCutchan18-Apr-13 1:48
mveRichard MacCutchan18-Apr-13 1:48 
GeneralRe: ASP.NET performance Pin
Kalim_mughal18-Apr-13 2:06
Kalim_mughal18-Apr-13 2:06 
GeneralRe: ASP.NET performance Pin
Richard MacCutchan18-Apr-13 2:10
mveRichard MacCutchan18-Apr-13 2:10 
AnswerRe: ASP.NET performance Pin
ZurdoDev18-Apr-13 2:22
professionalZurdoDev18-Apr-13 2:22 
GeneralRe: ASP.NET performance Pin
Kalim_mughal18-Apr-13 2:45
Kalim_mughal18-Apr-13 2:45 
AnswerRe: ASP.NET performance Pin
ZurdoDev18-Apr-13 2:48
professionalZurdoDev18-Apr-13 2: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.