User Profile

Collapse

Profile Sidebar

Collapse
john20
john20
Last Activity: Oct 26 '11, 10:55 AM
Joined: Jul 10 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • john20
    started a topic Problem with 'vjslib.dll'

    Problem with 'vjslib.dll'

    Hi All,

    I have very strange problem here...I have asp.net application in that I am using 'vjslib, Version=2.0.0.0 and it works fine on 32bit and 64bit enviroment.

    But when I am using same code same 'vjslib, Version=2.0.0.0 in the windows service application it is giving me the below error:

    Exception: System.BadImage FormatException : Could not load file or assembly 'vjslib, Version=2.0.0.0 , Culture=neutral ,...
    See more | Go to post

  • john20
    started a topic Cell Change event in Excell

    Cell Change event in Excell

    Hi All,

    Is there any way so I can get event when moving cursor in excel sheet. What I meant by that if cursor is in cell A1 then I move to B1 at that time

    I want cell change event should fire. At the movement I am able to get event when you change the cell value and press enter then I can get the cell change event.

    Is there any way to achieve this. Any idea or sample code very much appriciated.
    ...
    See more | Go to post

  • john20
    started a topic Illegal characters in path error!!

    Illegal characters in path error!!

    Hi All,

    I am getting below error, when passing the path which has space between the folder name.

    "System.Argumen tException: Illegal characters in path"


    I have declared the the path in the variable like below:


    Dim sFilename As String = "C:\Test\Window s Service\Schedul e.xml"

    or I have tried like this as well but same error I am getting....
    See more | Go to post

  • john20
    replied to Problem with MutliThreading....
    Hello Experts,

    Could someone please shed some light on this problem who is expert and have good knowledge in Threading.

    Please give some hint or work around on this problem.

    Thanks
    -John
    See more | Go to post

    Leave a comment:


  • john20
    started a topic Problem with MutliThreading....

    Problem with MutliThreading....

    Hi All,

    I am creating windows application in vb.net and I have problem related to multiple threading. Let me describe you the scenario and what are the problems I am facing.

    On form Load I am creating the thread the calling the relevant methods.

    like below:

    Code:
     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    ...
    See more | Go to post

  • john20
    started a topic Problem with master page header size
    in .NET

    Problem with master page header size

    I have master page in that I have header for the child pages, in the child page content populated in the table as row and colum. The problem is when the content in the childpage expand horizotally then when I scroll to right side horizontally the header of the master page doesn't render same size as the content page.

    Header remains the size of the windows but not same size as the content page's content.

    How can I increase...
    See more | Go to post
    Last edited by Frinavale; May 27 '10, 07:55 PM. Reason: code tags, punctuation, removal of hi and thanks. Fixed indentation. Please post code in [code] ... [/code] tags.

  • john20
    started a topic Scroll bar problem

    Scroll bar problem

    Hi All,

    I am using below code to use scroll bar :

    Code:
    <div style="overflow:auto">
       <iframe id="result" frameborder="0" scrolling="yes" height="100%" runat="server">
    </iframe>
    </div>
    The idea is when Iframe get large then it shows horizontal scroll bar.Its is working on my development...
    See more | Go to post

  • john20
    started a topic How to nevigate to tagert page

    How to nevigate to tagert page

    Hi All,

    I have created the form and html controls dynamically in the page load method of
    the page.

    Like below :

    Code:
    Dim form As New HtmlForm
    Dim btnSubmit As New HtmlInputButton
    Dim txtQuery As New HtmlInputText form.Action = "User.aspx"
    form.Method = "POST"
    form.Name = "form1"
    
    txtQuery.Name = "user"
    ...
    See more | Go to post

  • john20
    started a topic Problem with Menu Control
    in .NET

    Problem with Menu Control

    Hello Everone,

    I want to display page in IFrame when you click on menu item. This is how I am writing the code for it.

    Code:
    Dim prntMenu As New MenuItem("User", "", "", "~/User.aspx", "_Parent")
    prntMenu.Target = "myIframe"
    Menu1.Items.Add(prntMenu)
    But its opening the page in new window instead of the given Target of...
    See more | Go to post

  • Hi All,
    I have got the answer ...

    Code:
    <xs:unique name=”Unique_Region”>
    <xs:selector xpath=”Report />
    <xs:field xpath=”@Region” />
    </xs:unique>
    See more | Go to post
    Last edited by Dormilich; Oct 20 '09, 07:24 PM. Reason: Please use [code] tags when posting code

    Leave a comment:


  • How to Restrict Attribute value in XML using XML Schema

    Hi All,

    I have an XMl structure and i am creating XML Schema document for validating xml document.
    What i want that for a particular element it should not allow same attribute name.

    for example below is the XML structure :

    Code:
    <News>
       <Regional> 
          <Report Region="Asia">
            <Title></Title>
            <Story></Story>
    ...
    See more | Go to post
    Last edited by Dormilich; Oct 20 '09, 07:23 PM. Reason: Please use [code] tags when posting code

  • john20
    started a topic How to find total count of a character in a string
    in .NET

    How to find total count of a character in a string

    Hi All,

    How can i find the total 'Count' of a particular character's occurance in a string.

    means i want to find the count of '<' in a string.

    can you please help to find that.

    Thanks
    See more | Go to post

  • john20
    started a topic Problem with webpartmanager..
    in .NET

    Problem with webpartmanager..

    Hi All,

    I am trying to use webpart in my page for that i am putting webpartmanager and webpartzone.

    but as soon as i am putting webpartmanger in the page it is giving me below error, let me tell you i have installed Sql server 2005 on my machine.

    after installing the Sql server 2005 it has started giving me this error. if i remove webpartmanage from the page then it works fine.

    and i am...
    See more | Go to post

  • john20
    replied to How to save files in database....
    in .NET
    Hi thanks for your reply.

    Can u please provide some code about how to convert file into bytes stream
    See more | Go to post

    Leave a comment:


  • john20
    started a topic How to save files in database....
    in .NET

    How to save files in database....

    Hi All,

    How can i save any extension file type in the database and retreive that file when i want.

    what i mean here that i have different file types like .txt,.doc,pdf etc.

    how to save these file in database and retreive when needed and show it to user on request.

    Is it possible ? can u please give me some sample code.



    Thanks

    -yanku
    See more | Go to post

  • john20
    started a topic Problem with saving a file...
    in .NET

    Problem with saving a file...

    Hi All,

    I have licence.exe file i want to save that file on runtime with different name. i mean to say that i want to make copy of that file on run time.

    how can i achieve that ? is anybody have some idea ?

    Thanks

    -John
    See more | Go to post

  • john20
    replied to Problem with process..
    in .NET
    Yes pages are on the same application....
    See more | Go to post

    Leave a comment:


  • john20
    replied to Problem with process..
    in .NET
    Thanks for your reply.

    In the page load i am calling above function and assiging value to session variable.
    like Session("Valid" ) = "True"

    after loading this page i am redirecting the page to another page and there i am checking the session value but it is showing empty value.

    Thanks again...
    See more | Go to post

    Leave a comment:


  • john20
    replied to Problem with process..
    in .NET
    Hi Joedeene,

    Thanks for your reply.
    Tried above solution but didn't help.
    Is there any other way to solve this problem.

    Thanks
    -john...
    See more | Go to post
    Last edited by Plater; Oct 14 '08, 01:08 PM. Reason: removed extra blank lines

    Leave a comment:


  • john20
    started a topic Problem with process..
    in .NET

    Problem with process..

    Hi All,

    I am using process class to do some processing with the files and close the process.

    it works fine but the problem is it is emptying all the session value which i am assiging before running the process.

    Below is the Code:

    Code:
    Dim myProcess As Process = New Process()
                    Dim sArguments As String = sProductID & " " & Chr(34) & sLicenseFile
    ...
    See more | Go to post
No activity results to display
Show More
Working...