Click here to Skip to main content
Page 1 of 3
Page Size: 10 · 25 · 50


Author filtered by: IndrajitDasgupat [x]
Generate Seial Number in sql 2000 by IndrajitDasgupat
Question 17 Apr 2013   license: CPOL
Hi AllI have to generate serial number which will insert in table if we delete any row from the table then it should serialize the number now I have a Store procedure through which I am inserting data in the table from Front End so the same I have to insert serial number in the table. How it...
Restore DataBase by IndrajitDasgupat
Forum Message 11 Apr 2013  
Hi How can I Restore the database for these program Thanks & Regards Indrajit Dasgupta
Sorting problem in C# by IndrajitDasgupat
Question 4 Apr 2013   license: CPOL
Hi AllI am using Windows CE Device in application C# where I am trying to sort ListView but Sort() properties is not there so how can I sort and then show in ListView Please Help meAll = Thanks;
C#
sorting ListView in C# by IndrajitDasgupat
Question 2 Apr 2013   license: CPOL
Hi AllI am using ListView control with three columns in Device application where sort() property is not there now I want to do sorting the ListView in asc order any one can help me pleaseThanks & Regards Indrajit Dasgupta
C#
Question 25 Mar 2013   license: CPOL
Hi AllI am doing Device Application in C# so my device read the tag and display the data in List View. Now my question is should not display the same data (Duplicate data) repeatedly in list view. How can I make it possible ? If any idea Please help!Thanks & RegardsIndrajit Dasgupta
C#
Question 24 Mar 2013   license: CPOL
Hi AllI am using device application where I am reading RFID Tag through my Device and I am checking that with my Data base. I am using Data set then I put the data in my List View. So every time it read the same data and put it on List View. Now my question is it should show only distinct data...
C#
Question 12 Mar 2013   license: CPOL
Hi All,I am working on .Net C# device application where I have a list view where I am displaying data.My intention is not to display duplicate data on listview.Thanks & Regards Indrajit dasgupta
C#
Tab control in ASP.Net by IndrajitDasgupat
Question 17 Feb 2013   license: CPOL
Hi I am new to ASP.Net I want to use tab control in ASP.Net page Can any one help me how get and use the tab control in ASP.Net pageThanks & RegardsIndrajit
Question 6 Feb 2013   license: CPOL
Hi I am new to WPF my question is how to auto move a label left to right in WPF applicationThanks & regardsIndrajit
WPF
Question 30 Jan 2013   license: CPOL
HiAllI have a .exe file in my CD Now I don't want to put drive name only I want to put the file name in my html page href attribute so If I click the link it will find the path and automatically it will start to run the .exe file.Thanks & RegardsIndrajit Dasgupta
Static Variable in C# by IndrajitDasgupat
Question 13 Jan 2013   license: CPOL
Hi AllWhy we are using static variable in a Static Method in C#Thanks Indrajit Dasgupta
C#
Question 19 Nov 2012   license: CPOL
Hi AllI am using Data Grid View in C# windows application When I am selecting Excel file and upload to Data grid view data is displaying But after refresh If I try to upload again it is not displaying can any one tell me please what is the problem so I can modify thatThanks &...
C#
C# windows application Validation by IndrajitDasgupat
Question 25 Oct 2012   license: CPOL
Hi AllI have string like below string STR="0004168858,AB0688120881,15,PLATE CLAMPING CO,KTL 16,CEQP,GI31,1111,DV1111,22222222"Now I want to validate the input string with STR that this much field is there with comma separatorIn this STR 10 fields are there so I want to check in my...
C#
String Builder in C# Windows form by IndrajitDasgupat
Question 24 Oct 2012   license: CPOL
Hi AllI am working on C# Windows form where I have data in String Builder below I give the patternString Builder sb = val1,val2,val3,val4,val5,val6,val7;I have also four Text Box Now my question is how can I put the sb data to Text Box like following TextBox1.text =...
C#
Question 12 Oct 2012   license: CPOL
Hi AllI am developing C# windows application where I have text box through which we select the documents which i have to print and I have a combo box through which I am selecting the printer and give the print to click the print button Here question is how to do print part in this...
C#
MS SQL Query for Store Procedure by IndrajitDasgupat
Question 8 Aug 2012   license: CPOL
Hi AllI have a table like below Rack Cell QtyA1 1 50A2 2 20A3 3 70B1 1 80B2 3 90C1 1 56C3 3 77C4 4 400D1 5 55D2 6 66After executing the following Store Procedure ALTER PROCEDURE [dbo].[SP_TestForAccess]ASBEGINDECLARE @query NVARCHAR(4000)DECLARE...
Question 7 Aug 2012   license: CPOL
Hi All,I am using DataGridView at runtime in C# windows form, my DataGridView displaying data like belowrack 1 2 3 4 5 6A1 20 30 40 20A2 10 20 30 12A3 24 22 15B1 12 34 22 67 B2 11 22 ...
C#
Question 7 Aug 2012   license: CPOL
Hi AllI am using C# windows application Here I am not taking data grid view from ToolBox But I am trying to do this as run time Below the code public partial class Form1 : Form { DataGridView dataGrid; DataSet dataSet; OleDbDataAdapter da; ...
C#
Grid view cell colour change by IndrajitDasgupat
Question 5 Aug 2012   license: CPOL
Hi AllI am using Grid view where data is coming like below Rack 1 2 3 4 5 6A1 20 40 A2 60 45 20B1 34 30 20 10C1 23 40Now my question how can I make blank cell green colour and filled cell blue...
C#
how to calculate the sum by IndrajitDasgupat
Answer 5 Aug 2012   license: CPOL
There is Mouse Down Event and Mouse up event is there in event property click that event and in side event do your code
Fetching data from sql database by IndrajitDasgupat
Question 2 Aug 2012   license: CPOL
Hi AllBelow I given the Table Rack cell qtyA1 X 20A1 Y 30A1 Z 40B1 X 70B1 Y 60C1 Z 34C1 z 22select A.Rack,(select sum(B.Qty) from TestForAccess B where B.Rack =A.Rack and B.Cell='x') as'X',(select sum(B.Qty)...
query for SQL server by IndrajitDasgupat
Question 1 Aug 2012   license: CPOL
Hi AllI have SQL table like belowRack Cell QtyA1 X 20A2 Y 30A3 Z 40B1 X 59B2 Z 60C1 X 70Now my question is how I can display the table like below X Y ZA1A2A3B1B2C1In original table X, Y, Z is more...
SQL
how to get the query value in C# by IndrajitDasgupat
Question 30 Jul 2012   license: CPOL
Hi AllI am doing code in C# windows application where the query value I have to get in C#Below I give the codestring qry = "Select COUNT(rack)FROM Report ";OleDbCommand cmd = new OleDbCommand();cmd = new OleDbCommand(qry, conn);OleDbDataReader dr = cmd.ExecuteReader();where I...
C#
Question 30 Jul 2012   license: CPOL
Hi AllI have to create number of dynamic buttons in side the windows form control panel according to the name of student in my studentDataBase.Below is my codeprivate void Form1_Load(object sender, EventArgs e) { string qry = "select rack from Report "; ...
C#
Question 17 Jun 2012   license: CPOL
Hi allBelow I am giving the store procedure execute statementDECLARE @ERROR varchar(100)EXEC SP_New_OrderNo '890','123', @error outputPRINT @errorhere the out putPLEASE ENTER CUSTOMER NO.Now My question is how to show this output to my C# windows applicationThanks to all
C#
Question 14 Jun 2012   license: CPOL
Hi all I am using SQL server and I created a store procedure but I am getting following errorServer: Msg 201, Level 16, State 4, Procedure SP_New_OrderNo, Line 0Procedure 'SP_New_OrderNo' expects parameter '@ERROR', which was not supplied.Can any one please help me?Bellow I am...
Question 12 Jun 2012   license: CPOL
Hi All,I have to create a Store Procedure where I am taking user input as Customer Model No, Customer Order No, Order model and Order Qty. Now I have to check in my database this Customer Model No, Customer Order No, Order model existed if it is not then I have to create like belowFoe New...
Question 31 May 2012   license: CPOL
Hi all,I want to deploy chart in my windows application which is VS 2008 Version 3.0 I am not getting chart in controls How can I apply please help
C#
separate string of array in C# by IndrajitDasgupat
Question 21 Mar 2012   license: CPOL
Hi All,I am working on C# windows base applicationIn this I have to read a text file with string value where every string is separated by tab keythe text file has 202 lines which I read in a arraystring[] lines = File.ReadAllLines(FilePath); //In lines variable showing 202 lines...
C#
Question 12 Mar 2012   license: CPOL
Hi All I am working on C# windows application where I read enter text file and enter to a array variable now I am getting 10 lines in the array. So up to this it is Fine. ButNow I have to separate each field by tab key and enter to a hash table all the 10 lines with each field (There is five...
C#
Question 8 Mar 2012   license: CPOL
Hi AllI am working on C# windows application where I have to put string array value to data grid view here value is coming but not adding to data grid view cell after run the program the data grid view cell is showing row index = -1 and column index = -1 belowI am giving codeprivate...
C#
Question 8 Mar 2012   license: CPOL
Hi AllI am working on C# windows application VS2005 where I selected text file and enter the file in string array now I have to enter row by row of the array in a data grid view but I am not able to do the sameIn the array I have number of rows with number of columns now I want to put all...
C#
Insert a space in a String by IndrajitDasgupat
Question 8 Mar 2012   license: CPOL
Hi AllI am working on windows base C# application.How can I enter a space in a stringAs example I have a string A123456 now I have to make it A 123456
C#
Question 7 Mar 2012   license: CPOL
Hi All I am working on C# windows base application where I selected a particular row from a text file now I have to select only four field from the row and display in four text box where every field is separated by Tab Space in the same row and that row has thirty field
C#
Retrieving data from .txt file by IndrajitDasgupat
Question 6 Mar 2012   license: CPOL
Hi AllI am working in C# windows application where I have to read a text file where so many rows are there and every field is separated by tab key. Now my job is to find the particular row by a unique first_name string value and show all the related data of the that particular row.id ...
C#
Question 22 Feb 2012   license: CPOL
Hi AllI am developing a C# 3.0 Smart Device Application (Windows CE) where I have to draw a smooth curve for the input value 3 pointsThanks & Regards Indrajit Dasgupta
C#
Question 31 Jan 2012   license: CPOL
Hi AllI am working on C# windows application I want to stop run my C# windows application after a specific datePlease Help Thanks & Regards Indrajit Dasgupta
C#
Question 29 Jan 2012   license: CPOL
Hi AllI am currently working on C# windows application where I am using MS Access 2003 DB as back end I am trying to get filter data in combo box as example If I put 0 so it should show all 0 started data in the combo box but it doesn't and also under which event of the combo box it will come...
C#
pass an image to Crystal Report by IndrajitDasgupat
Question 13 Jan 2012   license: CPOL
Hi AllI am developing a windows base application in C# where I have to pass an image without database how can I make it is possible please helpThanks and regards Indrajit Dasgupta
C#
Question 6 Jan 2012   license: CPOL
Hi allI m newbie Barcode software currently developing Barcode print I/O software through which data will take and print 1D Barcode in Tec B-EV4 Printer so I want to know what will be the DLL (that is what I have to add )for using PRINTDLL;Thanks & Regards Indrajit Dasgupta
C#
Database Connection Problem by IndrajitDasgupat
Question 5 Jan 2012   license: CPOL
Hi All, I m using C# windows program in Visual Studio 2005 with MS Access 2007 at run time I m getting error oledb exception was unhandled error in vb.net ERROR CODE -2147467259 My code is below--- private OleDbConnection conn = new OleDbConnection(); private string constr =...
C#
Question 1 Jan 2012   license: CPOL
Hi AllI am currently working on C# windows form application where I have a button which is in win form and that button click event should open a crystal reportI m trying to do that by creating object as we do to open another form but in crystal report it is not workingCan any body please...
C#
Question 27 Dec 2011   license: CPOL
Hi AllI am developing a C# 2005 windows application with a design form where I have to print the design form through crystal report if it is possible please helpThanks & regards Indrajit
C#
Question 22 Dec 2011   license: CPOL
Hi AllI am doing C# windows project where I have to upload a image in a picture box through clicking the picture box event no button eventCan any one please help code for the picture box through which I can upload Picture in picture box eventThanks & Regards Indrajit Dasgupta
C#
Question 21 Dec 2011   license: CPOL
Hi AllRecently I opened a VS2005 Smart Device project that I was assured worked for others, only to face an error message box:Microsoft Visual Studio---------------------------Error retrieving information from user datastore. Platform not found.---------------------------OK...
C#
Question 15 Dec 2011   license: CPOL
Hi AllI am looking for inheritance, Method Overriding example with code in C# Windows application not in Console applicationIf any has link or idea please help meThanks & Regards Indrajit Dasgupta
C#
Question 5 Dec 2011   license: CPOL
Hi All,I am trying time add name space using.System.Data.Oledb; in my C# windows application but I am not able to add if it is possible please helpThanks & Regards Indrajit Dasgupta
C#
Question 30 Nov 2011   license: CPOL
Hi All I am developing C# windows application where I have to read excel file and write to .ini file but one cell has null value which I value to put default 1. Every thing is ok the problem to put 1 in the place null value. If it is possible please help below I am giving codeforeach...
C#
Question 29 Nov 2011   license: CPOL
Hi ALLI am trying to enter data through C# windows application Store procedure in ODBC driver but If I try single parameter it is executing properly but in multiple parameter it is showing input parameter is not correct below I m giving procedure & code behind alter PROCEDURE...
C#
Question 27 Oct 2011   license: CPOL
Hi All,I develop C# windows application whaere I have to connect with SQL2000 but when I try to run the program then it shows error "ERROR [IM002] [Microsoft ODBC Driver Manager] Data source name not found and no default Deriver specified". What should I do, if it is possible please advice me...

Page 1 of 3
1 2 3


Advertise | Privacy | Mobile
Web04 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid