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
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
C

cse vidhya

@cse vidhya
About
Posts
24
Topics
14
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • transfer the data from local pc to server
    C cse vidhya

    hi , i need to transfer the data every day from the pc to server database so i am using sql server 2005 express edition ... while i am gng to replication process its asking me to install replication.. can any one give the url for replication download....

    MySQL database sysadmin

  • transfer the data from local pc to server
    C cse vidhya

    hi, i have database in the server and also having same database in another system. if i modified my data in my pc then the changes should save in the server database also. i heard, some of my friends said that u can use replication or export data..... can any one tell me with the solution

    MySQL database sysadmin

  • web page disappearing slowly
    C cse vidhya

    hi frnds, this code will find the browser close button,,,,, but ineed to disappear slowly while close the web page . where i have to write the code using javascript is it possibel ? if it is possible plz give me the solution function confirmUnload() { var mes = "Your message here"; if (event) { event.returnValue = mes; } else { } } window.onbeforeunload = confirmUnload;

    ASP.NET javascript question

  • asp.net
    C cse vidhya

    yes frnd

    ASP.NET csharp asp-net

  • asp.net
    C cse vidhya

    i need to give opacity for my web page while closing the browser button

    ASP.NET csharp asp-net

  • asp.net
    C cse vidhya

    coz i have to give opacity for my web page while closing the browser button

    ASP.NET csharp asp-net

  • asp.net
    C cse vidhya

    hi frnds i need to know whether we have click event for web page close(X) button

    ASP.NET csharp asp-net

  • Number to Words
    C cse vidhya

    Hi...:mad: Plz... Help me... I want some code for Converting a Number (money) to Words in Indian Format in C#.NET eg.: if I enter 12345678 then it gives as ... " ONE CRORE TWENTY THREE LAKHS FORTY FIVE THOUSAND SIX HUNDRED SEVENTY EIGHT " if, anybody has this type of format Code . regard&thanks by vidhya

    C# csharp help

  • multi coulmn combobox
    C cse vidhya

    hi , i have gone through your article ..i have used your code .... but i am getting error.. when i open in visual studio, i receive error "Error Rendering control". How i fix problem, pls help me!

    ASP.NET help csharp visual-studio

  • 2+ year experince question and answer
    C cse vidhya

    i need a asp.net questions for interview process can u help me

    ASP.NET csharp asp-net help question

  • 2+ year experince question and answer
    C cse vidhya

    hi, i need 2+ year question and answer ..... in asp.net and c#.net...... can any one help me redards, vidhya.s

    ASP.NET csharp asp-net help question

  • crystal report
    C cse vidhya

    i have tried but its like creating crystal report with dataset... so i didnt get any artical related to my task... thats y i am asking in ur forum..

    C# csharp tutorial

  • crystal report
    C cse vidhya

    hi, i am using windows application and my code behind is c#..... i ma new to crystal report... i have created crystal report ...... now i need to create dynamic font size tell me how to create it..... regard's vidhya.s

    C# csharp tutorial

  • how to print the tow rows from the datagrid in a single line.....while printing
    C cse vidhya

    now i got some idea from u thank u very much

    C# tutorial

  • how to print the tow rows from the datagrid in a single line.....while printing
    C cse vidhya

    sorry one of my frind posted it again...

    C# tutorial

  • print concept very urgent help me
    C cse vidhya

    i gave i++ to 1+=2 but i am getting only 1st row and 3rd row .. and the 2nd row and 4th rows are not coming.. i need all the rows while printing like below Printed out should be like Pepsi 500ml £1.09 coke 500ml £1.09 Fanta 500ml £1.09 Sprite 500ml .99p

    C# csharp graphics help

  • how to print the tow rows from the datagrid in a single line.....while printing
    C cse vidhya

    hi have to print my datagrid values like this........ Printed out should be like Pepsi 500ml £1.09 coke 500ml £1.09 Fanta 500ml £1.09 Sprite 500ml .99p but i am getting print out like...... Pepsi 500ml £1.09 coke 500ml £1.09 Fanta 500ml £1.09 Sprite 500ml .99p

    C# tutorial

  • print concept very urgent help me
    C cse vidhya

    hi, i am print concept to print the dtagrid rows..... i am using c# coding...... while taking the print i am getting output as(givn below).... Pepsi 500ml £1.09 coke 500ml £1.09 Fanta 500ml £1.09 Sprite 500ml .99p but my uotput should be like the given below...... Pepsi 500ml £1.09 coke 500ml £1.09 Fanta 500ml £1.09 Sprite 500ml .99p tell me where i have to change my coding paart: my coding is; public class DataGridPrinter { private PrintDocument ThePrintDocument; private DataTable TheTable; private DataGridView TheDataGrid; public int RowCount = 0; // current count of rows; //private const int kVerticalCellLeeway = 10; public int PageNumber = 1; public ArrayList Lines = new ArrayList(); int PageWidth; int PageHeight; int TopMargin; int BottomMargin; public DataGridPrinter(DataGridView aGrid, PrintDocument aPrintDocument, DataTable aTable) { // // TODO: Add constructor logic here // TheDataGrid = aGrid; ThePrintDocument = aPrintDocument; TheTable = aTable; // TheTable.Columns.RemoveAt(3); PageWidth = 350; TopMargin = 30; // PageWidth = ThePrintDocument.DefaultPageSettings.PaperSize.Width; PageHeight = ThePrintDocument.DefaultPageSettings.PaperSize.Height; //TopMargin = ThePrintDocument.DefaultPageSettings.Margins.Top; //TopMargin = 100; BottomMargin = ThePrintDocument.DefaultPageSettings.Margins.Bottom; } public void DrawHeader(Graphics g, int ff) { //SolidBrush ForeBrush = new SolidBrush(TheDataGrid.HeaderForeColor); //SolidBrush BackBrush = new SolidBrush(TheDataGrid.HeaderBackColor); //Pen TheLinePen = new Pen(TheDataGrid.GridLineColor, 1); StringFormat cellformat = new StringFormat(); cellformat.Trimming = StringTrimming.EllipsisCharacter; cellformat.FormatFlags = StringFormatFlags.NoWrap | StringFormatFlags.LineLimit | StringFormatFlags.NoClip; int ht = ff + 2; int columnwidth = 30; int initialRowCount = RowCount; // draw the table header //float startxposition = TheDataGrid.Location.X; float startxposition = 30; RectangleF nextcellbounds = new RectangleF(0, 0, 0, 0); RectangleF HeaderBounds = new RectangleF(0, 0, 0, 0); HeaderBounds.X = TheDataGrid.Location.X; HeaderBounds.Y = TheDataGrid.Location.Y + TopMargin + (RowCount - initialRowCount) * (TheDataGrid.Font.SizeInPoints + ht); HeaderBounds.Height = TheDataGrid.Font.SizeInPoints + ht; HeaderBounds.Width = PageWidth; //g.FillRectangle(BackBrush, HeaderBounds); for (int k = 0; k < TheTable.Columns.

    C# csharp graphics help

  • crysta report
    C cse vidhya

    hi i am using crytal report to print my values from the database in my database i have 3 rows... Category Quantity Unit_RAte apple 5 60 RS mango 10 80 Rs if i select mango and i have to print the mango for 10 times in my report i should get the result as , mango 10 80 Rs mango 10 80 Rs apple 5 60 RS apple 5 60 RS apple 5 60 RS like this i have to get the 20cm space for each rows.....

    C# database

  • cystal report
    C cse vidhya

    hi. how to give space between each section in crystal report

    C# tutorial
  • Login

  • Don't have an account? Register

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