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
U

unitecsoft

@unitecsoft
About
Posts
33
Topics
18
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Many .NET Frameworks related files installed on my computer , which one to remove ?
    U unitecsoft

    I started using .NET C# with framework 1.0 , upgraded my applications through VS 2000 , 2003 , 2005 and now 2008 . each upgrade will install the new framework on my computer . Now I have all these .NET framework related applications which is taking large space Microsoft .NET compact framework 1.0 SP3 Developer Microsoft .NET compact framework 2.0 SP2 Microsoft .NET compact framework 3.5 Microsoft .NET Framework 1.1 Microsoft .NET Framework 1.1 Hotfix (KB928366) Microsoft .NET Framework 2.0 Service Pack 2 Microsoft .NET Framework 3.0 Service Pack 2 Microsoft .NET Framework 3.5 Service Pack 2 , currently I am using VS2008 , can I remove application related to frameworks prior to 3.5 . thanks

    .NET (Core and Framework) csharp dotnet visual-studio question

  • DataGridviewRow - Make it invisible .
    U unitecsoft

    Hi I am trying to hide some rows in a DataGridView , in some rows an unhandled exception is fired with the following message . (( Row associated with the currency manager's position cannot be made invisible.)) handling this exception will cause the row to remain visible . Any Ideas ?

    C# question

  • DataGridView Save changes cell only after leaving the row ?
    U unitecsoft

    Yes , but does not save the value of that cell !!! I don't know why !!! the only way to save it is to click a different ROW within the grid .

    C# question

  • DataGridView Save changes cell only after leaving the row ?
    U unitecsoft

    the problem is even if you save by clicking a SAVE button which will fire AcceptCanges() method , the contents of the cell are not saved unless the user previously leaves the row which include that cell .

    C# question

  • DataGridView Save changes cell only after leaving the row ?
    U unitecsoft

    Hi When changing a value in any cell in DataGridView , this value is saved into the related dataset only after the user clicks on an other cell in an other row ! Even the mecthod AcceptChanges() will not save the contents of this cell unless the user moves to an other row . I need to save these contents straight away without forcing the user to leave the cell . any Ideas ? thanx .

    C# question

  • Calling A form by its name which is saved as text in a table .
    U unitecsoft

    Hi I am building a windows Form application where the Forms names are stored in a data table as text , The name of the Form selected to run is retrieved from the data table , so it will be a string type , how can I call the related form knowing its name as a string only ? Any Ideas ?

    C# question

  • Reading Numeric column in excel as text .
    U unitecsoft

    Actually , if the first data cell in the column is numeric , the full column is read as numeric and any text in the same column is read as blank . and if the first data cell is text then the full column is read as text and any numeric cell in the same column is read as blank . I have columns with mixed data , some numeric only and some are string . any hints ?

    C# csharp visual-studio

  • Reading Numeric column in excel as text .
    U unitecsoft

    I am trying to read an Excel sheet to my program using OleDbDataAdapter into datatable , this is working fine except that if the excel column is text and taken into string field in the datatable its read as blank . anyone came across such a case . I am using ,NET 2.o framework with visual studio 2005 - C# . thankx

    C# csharp visual-studio

  • Starting Web application using ASP.NET !
    U unitecsoft

    I want to start my first web based application using ASP.NET , I never did any WEB development . I am good in C# windows forms application and using VS2005 , also I know little HTML . where is the best first start ? and other software required ? and can anyone provide me with the basic steps to start this application . Thanx

    ASP.NET csharp html asp-net winforms question

  • starting web Application .
    U unitecsoft

    Hi everyone I want to start my first web application , never done any web development before , only windows forms application using C# which I am good in . Any starting procedure ( using VS2005 ) thanx

    C# csharp winforms

  • Transparency On Parent Form .
    U unitecsoft

    Hi everyone I am trying to use the Form property TranseparencyKey on a form which is a child for a MidParent from . The result should make the selected color area transparent and so the image of the MidParent form apears . this feature doe not work , it works only if the form is not owned by a MidParent . any Ideas ? Thanx .

    C# question

  • How to call a form if you know the form name only as a string variable >
    U unitecsoft

    can you be more clear about the second case , Create an instance of a form by the form name as string only ? thanks

    C# database winforms help tutorial

  • How to call a form if you know the form name only as a string variable >
    U unitecsoft

    Hi I have a small problem here which I am trying to solve . I have many Windows Forms in my application which I want to call and show each one based on its name , the name is stored in a database table as a string variable , this table is changeable by the user . I repeat the only thing I know about the Form is its name as a string variable . assume no parameters are to be passed to the Form > any Ideas Thanks We will Either find a way , or make one .

    C# database winforms help tutorial

  • Application server for Forms based solution ( not Web Based ) .
    U unitecsoft

    Yes I know that you have to put it on the desktop as a shortcut from the server and run it locally on each user machine , but the application does not run that way , an exception is thrown , also the more users run the application at the same time the slower it gets . Oracle has a concept of "Application server " like a web server but used for forms based application .

    C# csharp sysadmin tutorial question

  • Application server for Forms based solution ( not Web Based ) .
    U unitecsoft

    I have an application written in C# , and I want the users to run it from the server ( windows 2003 ) without having that application installed on each and every machine using it , Just from the server . So the user has to log to the server only to be able to run it this application . is that possible , any Ideas how to do it ? Regards Dean

    C# csharp sysadmin tutorial question

  • TreeView nodes Tooltiptext
    U unitecsoft

    Thanks Luc Yes , sure you can change the tooltiptext of the tree , but there is no event to be triggered returning the node name or path when hovering over the tree . Nodes are not treated as objects in the tree , there is no Mousehover event for each node . I did try to find articles on the same subject in codeproject , but could not find any , if you know any of these articles please tell me . Thanks UnitecSoft We Will Either Find A Way Or Make One .

    C# csharp question

  • TreeView nodes Tooltiptext
    U unitecsoft

    Hi everyone I need to add a tooltiptext in that yellow rectangle for each node in a treeview in C# . is that possible , anyone has an Idea ? Thanx UnitecSoft We Will Either Find A Way Or Make One .

    C# csharp question

  • SQL Server Connection with C# program
    U unitecsoft

    hi everyone Just to share the information , The reson of being unable to connect to sql server database via C# application was due to the anti virus protection I am useing ( Kaspersky ) . Disabling this program will solve the problem . maybe there is a certain setting within Kaspersky to allow or deny this access . :-D UnitecSoft We will Either Find A Way Or Make One .

    C# database sql-server csharp sysadmin security

  • SQL Server Connection with C# program
    U unitecsoft

    I Don't think its a user privilege problem , no reason to have a successful connection in the first run then a failure connection in the second run while no changes in anything between the two runs . could it be a setup parameters problem for the .NET framework or SQL server . I will try to change windows Authentication to sqlserver security . UnitecSoft We will Either Find A Way Or Make One .

    C# database sql-server csharp sysadmin security

  • SQL Server Connection with C# program
    U unitecsoft

    Hi everybody I have a sort of strange problem . On my computer I have VS2003 and MSSQL server 2000 . for a long period I have been running my application under development with no problem . I had to format my PC , reinstall SQL server and VS2003 with same application when database connection start to fail . I am using SQLdataconnection with connection string and using windows authentication for the SQL server . the strange part is that when I log in as administrator at starting the computer , the connection will work only once . then start failing all the time . Any one having an Idea about this situation . UnitecSoft We will either find a way or make one .

    C# database sql-server csharp sysadmin security
  • Login

  • Don't have an account? Register

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