csharp

  1. spartan.monkey

    Update list via text box

    i have this school registration software. the problem is that i want to update the class automatically with reference to age for example if age is 2 class is begginer if age is 3 class is montessori if age is 4 class is 1 if age is 5 class is 2 if age is 6 class is 3 if age is 7 class is 4...
  2. sanjeewa.nibm

    DataGridview update and Datagridview refresh

    What would be the similarities and differences in DataGridview.Update() and Datagridview.Refresh() methods What are the places to use DataGridview.Update() and Datagridview.Refresh() I'm little confused
  3. N

    Question IP camera viewer with Onvif video analytics

    Dear Developers, We run a little offine/online hat shop and we've installed a Cisco IP camera in the show-window. I want to manage the video surveillance from code. I've found an IP camera NuGet package for building an Onvif viewer in C#, but I need more: I have to count how many people...
  4. I

    Html Parsing Help Needed

    I am trying to write a small app that gets some data from a website....I am using the HtmlAgilityPack to parse the html. I can get most of the data I need to get because it is formatted in a way that makes it easy to locate. there are a few pieces of data that aren't formatted so well and this...
  5. J

    How Do I Add Search Feature To My Wp8 App

    Good day i am developing an application that has several pages in it, instead of the user having to go through the stress of navigating to the required page i will like to add a search feature in which when the user type in the required page keyword it will take the user to the page without...
  6. K

    Exciting new job opportunity for C# Developer

    We have an exciting opportunity for an experienced C# Developer to join our growing team. We have great offices next to the River Medway, we listen to music all day, have TVs in the office, Xbox downstairs....it is endless!!! Great atmosphere to work in, really fun environment. The role...
  7. S

    Question Change the default behavior of Internet Explorer using C#

    I want to make a small web application. The details are given below. Three tabs will be opened in an Internet Explorer. Each tab will go to our client's website i.e. www.xyz.com The client's website has a database of addresses. The www.xyz.com has an address checking tool. I will enter 3...
  8. A

    SQL Data to specified JSon Format

    LIST Time Status A 22:05 0 B 22:10 1 C 22:30 1 A 22:40 0 C 22:50 1 B 22:60 1 The above table needs to be converted to below JSON format [ { "name": "A", data: [ [22:05,0], [22:40,0] ] }, { "name": "B", data: [ [22:10,1]...
  9. A

    Winform Application With MySql

    Hi to All, I am working on C# Winform application (Visual Studio 2010) with MySql as back-end. Meanwhile I am looking for a suitable solution to a problem about How will I deploy this application along with MySql server. As this will be multiuser application, embedded database is not an...
  10. M

    Question export data to excel sheet/report using predefined excel template

    hi for past 7 days i was wondering on how to create excel report from excel Template, populating excel report using sql select query in c# windows forms with sql server 2008. I have create an Excel Template in my same project folder named : Technician Details.xltx. Given below is my code in...
  11. A

    Derek Slager?s BCrypt Class for C# Check Password Method failed

    Dear All, I am using Microsoft Visual Studio 2010 Ultimate, C# Winforms & MySql Database. I am trying to use BCrypt class by Derek Slager for creating and authenticating username and password. A form is use to create new user to save Username and Password to database, but this Password is not...
  12. A

    Calling MySql Function for validating username and password

    Development Environment: Microsoft Visual Studio 2010 Ultimate, C#, MySql Hi, I've create a function in mysql which accept 3 parameter to validate username and password. DELIMITER $$ USE `generalledger`$$ DROP FUNCTION IF EXISTS `fLogin_Check`$$ CREATE DEFINER=`root`@`localhost`...
  13. A

    Set Location of ListView below DataGridView Active Row

    ools: Visual Studio 2010 Ultimate, Language C#, Database MySql Hi, I am searching this a while, but to date didn't find any suitable solution. I've a form with bound DataGridView with 5 columns, ProductID, ProductName, Qty, Price and Amount. After normal data entry user can click button...
  14. A

    Suggestion required for Accounting Software core infrastructure

    Dear All, I am on the beginning stage on C# development. Currently I am developing an Voucher based Accounting Software with following: 1- Visual Studio 2010 2- Programming Language: C# 3- Database: MySql 5 At present, Database structure is as follows: 1.accAccounts (For holding...
  15. P

    Question Is disposing a local brush variable necessary?

    MSDN recommends disposing any variable of type System.Drawing.Brush before its last reference is released. Otherwise, the resources it is using will not be freed until the garbage collector calls the Brush object's Finalize method. As we know, local variables are destroyed automatically when...
Back
Top Bottom