User Profile

Collapse

Profile Sidebar

Collapse
Malathi
Malathi
Last Activity: Sep 16 '13, 01:27 PM
Joined: Mar 31 '12
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Malathi
    started a topic asp:upload control's viewstate

    asp:upload control's viewstate

    I have an asp:upload control and 2 more buttons(btn1 and btnupload). After selecting the file and before uploading I need to click btn1(it opens a popup page) and then btnupload. The problem is whenever btn1 is clicked, asp:upload btn loses its track of selected file and becomes empty. I want to make asp:upload control to have the value after the btn1 click. i.e 1 server control between selection and upload. I tried ViewState but it doesn't help...
    See more | Go to post
    Last edited by Frinavale; Jun 12 '13, 07:01 PM.

  • Thanks for the reply. Please find the clustered index structure from the below link.
    https://ms-help://MS.SQLCC.v10/MS.SQ...2189e93fdc.htm
    Here we have index to find records, so why do we need linked list?
    See more | Go to post

    Leave a comment:


  • Purpose of Doubly linked list in Btree index structures

    Hi,

    In SQL clustered tables (B tree), pages are linked in all levels by doubly linked list. Already the index is pointing to the corresponding pages then why we need the doubly linked list between pages? Any help is appreciated.

    Thanks in Advance,
    Malathi
    See more | Go to post

  • Thanks for the reply. The following code does the job but its showing the script only once once and it merges all the earlier inputs.
    Code:
     For i As Integer = 0 To 20
                   If i Mod 3 = 0 Then
                    Dim strmsg As String = Convert.ToString(i) & " files are uploaded!"
                    Dim a As String = "<script  language='javascript' type='text/javascript'>" & ControlChars.CrLf &
    ...
    See more | Go to post

    Leave a comment:


  • Malathi
    started a topic File upload with Progressbar in web application

    File upload with Progressbar in web application

    Hi,

    Ive a vb.net web app in which one of the Content pages has asp upload control. The file to be uploaded has 2000 records which are in server. If this file is uploaded via this control, all the 2000 files will be uploaded. Its like by uploading single file into the control, we are uploading mulitple files. During the uploading I need a progress bar with current status like number of files getting updated. Without Ajax I need to do...
    See more | Go to post

  • Malathi
    started a topic File upload without enctype

    File upload without enctype

    Hi,

    I know asp:fileupload and html file input method to upload the file in server. Is there any way to add the enctype dynamically during upload and and removing it immediately after uploading ?

    Regards,
    Malathi
    See more | Go to post

  • Malathi
    replied to Exception from HRESULT: 0x800A9D9F
    in .NET
    thanks zmcd.. I will move it .net forum!
    See more | Go to post

    Leave a comment:


  • Malathi
    replied to Exception from HRESULT: 0x800A9D9F
    in .NET
    Ya.. I too feel the same while reading the link provided by you zmbd.. Here Im getting a perspective that this com exception is thrown because of access security? Or even if its within .net, what might be the solution? Do you have any idea?
    See more | Go to post

    Leave a comment:


  • Thanks for the reply! Are the both methods used only to open the mdb files? If is it so then whats the method to open an mde file?
    See more | Go to post

    Leave a comment:


  • Malathi
    started a topic Is opencurrentdatabase and opendatabase same?

    Is opencurrentdatabase and opendatabase same?

    Hi,

    Is opendatabase and openmcurrentdat abse same? This is used when there is a need to open a database through automation (like vb.net).

    Ex:
    Code:
    Dim msMSAccess As Object
    msMSAccess = CreateObject("Access.Application")
    msMSAccess.OpenCurrentDatabase(ExePath)
    Regards,
    Malathi
    See more | Go to post

  • Malathi
    replied to Exception from HRESULT: 0x800A9D9F
    in .NET
    Thanks for your reply smileycoder. Actually its happening at the run time, that too login issue. i.e. When the scheduling starts this app works fine, but if we are not logging for days then its throwing the above exception. If we do login again to the scheduler( by providing credentials)its working fine. This exception error disappears and continues the job as usual.
    The model of the code Im using in vb.net console app is,
    Code:
    Private
    ...
    See more | Go to post

    Leave a comment:


  • Malathi
    started a topic Exception from HRESULT: 0x800A9D9F
    in .NET

    Exception from HRESULT: 0x800A9D9F

    Hi,

    Im opening an accessdb(consis ts of forms,report,et c) via vb.net console application. This is for the purpose of scheduling jobs. Its working fine for hours. But if we are not logging in for 2 days the scheduler throws an exception as follows.
    Exception from HRESULT: 0x800A9D9F
    After logging in the error is disappearing. So I added the mdb into trust location but its of no use. I will be glad if anyone helps me.
    See more | Go to post

  • Hi twinnyfo,

    Thanks for replying. To install any software such as MS office, MS Visual studio, we get installation setup. If we double click on the setup it will install the software by asking some questions thru some pop up windows(like at what place we have to install, do we need shortcuts to open the app, etc). So I want like that. I would like to make my MSAccess project into setup. So that users can see the frontend only. Please...
    See more | Go to post

    Leave a comment:


  • Malathi
    started a topic How to create setup for MS ACCESS application?

    How to create setup for MS ACCESS application?

    Hi,

    Ive an Access application(VBA application) which uses sql and access itself as backend and has forms,reports, etc. Now I want to create the setup for this app. How to create in access? Using .net Package and deployment wizard can I do that? Or any other way? Any help is appreciated!

    Thanks in Advance,
    Malathi
    See more | Go to post

  • How to catch the return value (of .net exe) in java program?

    Hi,

    Im calling a vb.net exe(console app) in java program. The exe will return 1/0 as per success/failure of its task. Now in java I want to capture the return value of .net exe and show it in a messagebox.. Any help is appreciated!

    Thanks,
    Malathi
    See more | Go to post

  • How to pass an optional parameter along with required parameters in vb.net console?

    Hi,

    I created a console app (exe) which takes 3 inputs - 2 are mandatory and 1 is optional. Based on the completion of the exe, it returns 0 or 1 to indicate success or failure. Concept of my code is
    Code:
        Public Function Main(ByVal CmdArgs() As String) As Integer
    ....
    If success then environment.exit =1
    return environment.exit
    else 
    environment.exit = 0
    return environment.exit
    ...
    See more | Go to post

  • Malathi
    started a topic .Net framework identification
    in .NET

    .Net framework identification

    Hi,

    I've 2 questions.
    1) How to identify an installed .net framework in a system?
    2) I developed a code in ASP.net. If I move it into a server or deploy it in another system should the framework be the same? If is it so what are the changes I should do?

    With thanks in advance,
    Malathi
    See more | Go to post

  • Malathi
    started a topic Microsoft SQL Certification Materials

    Microsoft SQL Certification Materials

    Hi All,

    As I would like to do MS SQL Certification, Im in need of some materials to learn. Can you please tell me some opted books or websites for this if you know?

    With thanks in advance,
    Malathi
    See more | Go to post

  • how to return a string value from vb.net exe to web application?

    Hi,

    I created an exe through Console application that has 4 parameters as input.Im calling this exe in a windows application. After executing the exe, I want it to return a string(like"suc cess" or "failed") to the caller windows app.
    I tried with return statement but the main() doesnt accepts string value.
    Code:
    (Public function main(ByVal cmdargs() As String) As [B]integer[/B] 'I changed string instead of i
    ...
    See more | Go to post

  • Though I dont have the tool, I googled it out.. Its really interesting!
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...