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
V

vishnukamath

@vishnukamath
About
Posts
101
Topics
69
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • C# - System.Windows.Automation with Java, Java Access Bridge with WindowsAccessBridge.dll
    V vishnukamath

    Hi , How to click a button using Java Access Bridge with WindowsAccessBridge.dll (C#.net). Please share me complete code for below two classes. 1)AccessibleActionsToDo 2)AccessibleActions AccessibleActionsToDo actions_to_do; int temp2 = Marshal.SizeOf(new AccessibleActions()); IntPtr accessible_action_ptr = Marshal.AllocHGlobal(temp2); JabApi.getAccessibleActions(vmID, currentPtr, accessible_action_ptr); AccessibleActions actions1 = (AccessibleActions)Marshal.PtrToStructure(accessible_action_ptr, typeof(AccessibleActions)); actions_to_do.actionsCount = actions1.actionsCount; actions_to_do.actions = actions1.actionInfo; int temp3 = Marshal.SizeOf(new AccessibleActionsToDo()); IntPtr accessible_action_ptr1 = Marshal.AllocHGlobal(temp3); JabApi.MouseClickedDelegate mcd1 = new JabApi.MouseClickedDelegate(HandleMouseClicked); int fp = 0; JabApi.setMouseClickedFP(null); Marshal.StructureToPtr(actions_to_do, accessible_action_ptr1, false); JabApi.doAccessibleActions(vmID, currentPtr, accessible_action_ptr1, &failure); IntPtr Window_Handle = JabApi.getHWNDFromAccessibleContext(vmID, currentPtr);

    C# csharp java com testing tools

  • PartialUpdatePanel with Dynamic UserControls
    V vishnukamath

    Hi All, We are loading userControls Dynamically on Page, but we need to load all the usercontrols asynchronous way. How can we load user controls one by one with loading image. we have found below link for asynchronous loading.Please suggest me better way. Load and Display Page Contents Asynchronously with Full Postback Support[^]

    ASP.NET winforms com

  • User control refresh
    V vishnukamath

    I have 6 user controls on .aspx page and i have a button on .aspx page and all the user controls in update panel with updatemode conditional and each user control in Update panel, when i click on button , i need to referesh fisrst usercontrol. Regards, Vishnu.

    ASP.NET winforms announcement

  • Convert DTS Package to SSIS 2008
    V vishnukamath

    Hi All, I want to convert DTS Packages to SSIS 2008. Please suggest me better way to conversion. Regards, Vishnu.

    Database sql-server

  • 'Sys' is Undefined Error
    V vishnukamath

    &<>Hi All, I have added ajax modal popup extender and on button click i am opening Modal Pop up , it is opening popup in dev server ,but it is not opening popup in UAT serever. And i have added below tags in web.config file.Please suggest me to do better way. ------------------------------------- The system.webServer section is required for running ASP.NET AJAX under Internet Information Services 7.0. It is not necessary for previous version of IIS. ------------------------------ ------------------------------------

    ASP.NET csharp asp-net sysadmin windows-admin help

  • calendar extender not working in black berry phone os 4.6 and above
    V vishnukamath

    hi all, Ajax calendar extender not working in .Please suggest me better way to show calendar in black berry phone. Regards, Vishnu.

    ASP.NET

  • Multiple dll's Refrencing Asp.net Website
    V vishnukamath

    Hi Our Website has refrenced multiple dll's .Is there any chance to decrease performance of websites with multiple dll's refrencing. i need to improve performance of WebSite.Please suggest me better way. Regards, Vishnu.

    ASP.NET csharp asp-net performance code-review

  • Improve page performance for aspx page
    V vishnukamath

    Hi we have 8 usercontrols on .aspx page and we are getting data through restapi(Webservice Htttp singel Url for all 8 user controls) once we get the data from restapi and we are storing data into "Session" .Session data will be loaded for all user controls,We need to improve performance of page , how can we achieve this .Please suggest me better way. Regards, Vishnu.

    ASP.NET winforms performance code-review

  • Gridview To Export Excel sheet
    V vishnukamath

    Hi, I tried with below code for export gridview to Excell and it is adding empty row for every record . Please suggest me better way to do this. My Code: -------------- response.Clear(); response.ClearContent(); response.Buffer = true; response.ContentType = "application/vnd.ms-excel"; response.Charset = ""; //--code to display multiline value in same cell in excel------------------- string header = @" <!--table br {mso-data-placement:same-cell;} --> "; response.Write(header); response.AddHeader("mso-data-placement", "same-cell"); response.AddHeader("content-disposition", new StringBuilder("attachment; filename=").Append(fileName).Append(".xls").ToString()); } System.IO.StringWriter oStringWriter = new System.IO.StringWriter(); System.Web.UI.HtmlTextWriter oHtmlTextWriter = new System.Web.UI.HtmlTextWriter(oStringWriter); gvControl.RenderControl(oHtmlTextWriter); // response.Write(oStringWriter.ToString().Replace("bordercolor=\"white\"", String.Empty)); response.Write(Regex.Replace(oStringWriter.ToString().Replace("bordercolor=\"white\"", String.Empty).ToString(), @"(]*>)| ()", " ", RegexOptions.IgnoreCase)); response.End(); --------------------------- Regards, Vishnu.

    ASP.NET design regex

  • GridView Column Width resizing with Mouse Darging
    V vishnukamath

    Hi, Increase And Decrease Width of GridView Column on Mouse Darging , please suggest me better way Regards, Vishnu.

    ASP.NET

  • Write trigger for multiple tables
    V vishnukamath

    Hi I need to write trigger for more than one table i.e single trigger for multiple tables,user can not update,delete,insert on tables.If user try to modify on sql server table need to show alert. I tried with after trigger for single table , it works fine .please suggest me better way. regards, Vishnu.

    Database database sql-server sysadmin announcement

  • Not Working RegistryKey.openSubKey in windows 7
    V vishnukamath

    Hi, RegistryKey.openSubKey("KeyName",true) working in windows XP , but it is not working in Windows 7 32 bit. we are getting error : no rights to read.Please suggest me better way

    C# help

  • Get Remote server sub directories
    V vishnukamath

    Hi, I tried with below code and i'm getting only root directories not sub directories , i need to get sub directories please suggest me better way. string ftpServerIP = "75.125.2.193"; FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://" + ftpServerIP + "/"); request.Method = WebRequestMethods.Ftp.ListDirectoryDetails; request.Credentials = new NetworkCredential("barikgr2", "barik122"); FtpWebResponse response = (FtpWebResponse)request.GetResponse(); Stream responseStream = response.GetResponseStream(); StreamReader reader = new StreamReader(responseStream); string line; while ((line = reader.ReadLine()) != null) { TreeNode node = new TreeNode(); string[] _arv = line.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries); node.Text = _arv[3]; treeView1.Nodes.Add(node); } reader.Close(); response.Close(); Regards, Vishnu.

    C# sysadmin

  • Read Remote server Directories
    V vishnukamath

    Hi, I tried with below code and i'm getting only root directories not sub directories , i need to get sub directories please suggest me better way. string ftpServerIP = "75.125.2.193"; FtpWebRequest request = (FtpWebRequest)WebRequest.Create("ftp://" + ftpServerIP + "/"); request.Method = WebRequestMethods.Ftp.ListDirectoryDetails; request.Credentials = new NetworkCredential("barikgr2", "barik122"); FtpWebResponse response = (FtpWebResponse)request.GetResponse(); Stream responseStream = response.GetResponseStream(); StreamReader reader = new StreamReader(responseStream); string line; while ((line = reader.ReadLine()) != null) { TreeNode node = new TreeNode(); string[] _arv = line.Split(new string[] { " " }, StringSplitOptions.RemoveEmptyEntries); node.Text = _arv[3]; treeView1.Nodes.Add(node); } reader.Close(); response.Close(); Regards, Vishnu.

    C# sysadmin data-structures

  • Read Remote server Directories
    V vishnukamath

    Hi, I tried with above link but it is not working .Please suggest me better way. Regards, Vishnu.

    C# sysadmin data-structures

  • Read Remote server Directories
    V vishnukamath

    Hi, I need to read Remote server Directories through FTP Credentials and bind remote directory structure to Tree View Control. Please suggest me better way. Regards, Vishnu.

    C# sysadmin data-structures

  • open a pop up window
    V vishnukamath

    hi, On opening the pop up window the parent has to be closed. when im using the following code: window.opener=null; window.opener.close(); in the pop up window..im getting an alert box like "the page you are viewing is about to close".. i have to stop that alert box.. any suggestions please. thanking you, with regards, vishnu.

    ASP.NET

  • prevent Multiple users updating same record same time and same table
    V vishnukamath

    Hi, I need to prevent multiple users updating same record same time and same table , i tried with Sq l-transactions , every user data updating properly but last user data will be the current data , here i need to show alert message for second user onwards. Please suggest me better way to do this. Regards, Vishnu.

    ASP.NET

  • Multiple users inserting record at same time
    V vishnukamath

    Hi , My issue Solved , so don't waste your valuable time. Regards, Vishnu.

    ASP.NET database

  • Multiple users inserting record at same time
    V vishnukamath

    Hi , Thank you for your reply, Multiple users accessing same dynamic page ,if two users trying to insert on same page and same table , it is inserting two records but first record or second might be getting null values in all columns in table. please suggest me better way. Regards, Vishnu.

    ASP.NET database
  • Login

  • Don't have an account? Register

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