Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
K

kjsl2k9

@kjsl2k9
About
Posts
23
Topics
17
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Getting error can't serialize access for this transaction
    K kjsl2k9

    Hi, Thanks for reply.I am using the Serializable mode but there no autonomus transactions and triggers.But, there are only multiple queries like first there is an insertion in a table, then deletion from the same table and then selection from other tables and so on. Also, while doing a new transaction the connection is reopened every time with the Oracle. Thanks.

    Database help csharp oracle

  • Getting error can't serialize access for this transaction
    K kjsl2k9

    Hi All, I am using Oracle Transaction for getting records from Oracle 11g from my .net Application while retreiving the records I am getting the error, ORA-08177 can't serialize access for this transaction error. How can this problem be solved from transactions while using in .net Application. Thanks.

    Database help csharp oracle

  • Error Can't serliase access for the transaction
    K kjsl2k9

    Hi all, I am using oracle transactions in c#.net in .net frameowrk 2008.The WCF web application giving error "Can't serialize access for the transaction" when multiple user searches for same record in a table in Oracle 11g can anybody tell how can it be resolved.I have increased the initrans value to 100 it is not giving error now, but what if the user gets above 1000 limit.will initrans works. Thanks in advance.

    Database csharp oracle wcf help

  • Converting Array list to VBA.Collection in c#
    K kjsl2k9

    Hi, I want to pass the ArrayList to a function which is having the VBA.Collection as paramater in some dll.How can it be done.

    C# csharp data-structures

  • Click() event not working in firefox
    K kjsl2k9

    hi, yes document.getElementById("buttonid") is returning an object in both IE and Firefox.The problem only is that i had to fire the click event of the button using the click event in the javascript which is i think is not supported by FF.

    ASP.NET javascript

  • Click() event not working in firefox
    K kjsl2k9

    hi all, I am using document.getElementById("controlname").click() in javascript.It is working fine in IE but not working in firefox.Please tell how it can be corrected.

    ASP.NET javascript

  • error while using window.createPopup() in firefox
    K kjsl2k9

    Hi i am using window.createPopup()in javascript it gives error in firefox but works in ie.How can it be solved

    ASP.NET javascript help

  • Map Control
    K kjsl2k9

    Hi, Is there any control or dll which can be used for showing map without using internet connection in .net which works in windows application and which can show the point information in pop up Thanks

    C# csharp

  • API for showing maps in windows application
    K kjsl2k9

    It is in java I want to built the application in .net any idea

    C# csharp json

  • Shape File Reader
    K kjsl2k9

    Hi, I am using the Sharp Map to Show the Map.I want to display the information of a particular point on mouse click how can this be done.Is there any utility which is avaialable Thanks.

    ASP.NET tools

  • API for showing maps in windows application
    K kjsl2k9

    Hi, Is there any api which can be used in the .net windows application for showing the map.While using the API no internet connection should be there. Thanks

    C# csharp json

  • Image from camera is not refreshed in Internet Exlporer
    K kjsl2k9

    Hi , I am using the following code to show the video stream in an image tag in aspx page. It is working well in the firefox by showing the updated image from camera but it is not working for Interner Explorer the image is not refreshed in the Internet Explorer what is the problem and how can it be resolved .The url for the image remains the same. The code is :-

    ASP.NET help question

  • Error: HResult E_FAIL returned from COM DEVICE
    K kjsl2k9

    I had used the DirectShowLib 2005 and DirectX libraries for saving videos in WMV format.The Format is wmv and the video standard is PAL_B. In my application I was able to see the preview of the Video but when saving an error comes "HResult E_FAIL returned from COM DEVICE" on mediaController.Run().Why is this error coming any idea will be very beneficial. Thanks

    COM com graphics game-dev help

  • Reducing avi file size
    K kjsl2k9

    Hi, By Size I mean the size of the File like recording 1 minute video produces AVI file of 1GB .I want to compress the File Size. Thanks

    C# graphics game-dev tutorial

  • Reducing avi file size
    K kjsl2k9

    Hi, I am new to how to recording video using DirectX in windows application.How can the size of avi be reduced while recording video using DirectShow Library. Thanks

    C# graphics game-dev tutorial

  • Using Avicap32 for Video Recording
    K kjsl2k9

    Hi, I am using using AVICAP32 for recording and saving Video.But when the form is minimized the Video is not saved also the Size of File for AVI files is very large when saved.What is the Problem and how it can be solved. Is there any free dll which can be used in the Application.

    Visual Basic help question

  • increase the display rate from web cam
    K kjsl2k9

    Hi, I am using the avicap32.dll for showing images from web cam .The display rate from web cam is very slow how can it can increased do anybody have idea. Thanks

    Visual Basic

  • Adding controls to Existing Panel at run time in windows application
    K kjsl2k9

    I had tried the following code : - If MainPanel.InvokeRequired Then MainPanel.Invoke(AddControlToConatiner) End if Public Function AddControlToConatiner() pnl.Location = pts pnl.BackColor = System.Drawing.Color.YellowGreen MainPanel.Controls.Add(pnl) Return 0 End Function but the problem still remains the same what is the error can u tell or an example

    Visual Basic graphics help question

  • Adding controls to Existing Panel at run time in windows application
    K kjsl2k9

    Hi, I want to add new control at run time . I had written the code to add a new control to the Main Panel in the Data recieved event of the Serial port like this : - Public Sub portname_DataRecieved() Dim pnl as new Panel() Dim pts As New System.Drawing.Point(pt.X, pt.Y) pnl.Location = pts pnl.BackColor = System.Drawing.Color.YellowGreen MainPanel.Controls.Add(pnl) End Sub But I am getting the error at the line MainPanel.Controls.Add(pnl) that is cross-thread operation is not valid how can I remove it. Thanks

    Visual Basic graphics help question

  • Adding controls to Existing Panel at run time in windows application
    K kjsl2k9

    Hi, I want to add new control at run time . I had written the code to add a new control to the Main Panel in the Data recieved event of the Serial port like this : - Public Sub portname_DataRecieved() Dim pnl as new Panel() Dim pts As New System.Drawing.Point(pt.X, pt.Y) pnl.Location = pts pnl.BackColor = System.Drawing.Color.YellowGreen MainPanel.Controls.Add(pnl) End Sub But I am getting the error at the line MainPanel.Controls.Add(pnl) that is cross-thread operation is not valid how can I remove it. Thanks

    WCF and WF graphics help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups