Hi, I need to generate report dynamically, where the user can select a table and columns as per their needs, is there is any way to populate report generate wizard at run time?
velkumar_in
Posts
-
Populating generate wizard -
Drawing Lines DynamicallyHi, I have a requirement, where i need to draw line dynamically with the help of mouse using WPF. Finally i need to capture X-Axis & Y-Axis measurement once a curve line drawn, how to do that?
-
Regular expression for 0 to 1000Dear Friends, I need a Regular Expression for validate a text box which allows 0 to 1000 in C# Windows applications...
-
I need to Debug my setup project.Dear Friends. Actually i need to debug my setup projects. which is is Release mode. i can able to debug my projects in Debug mode. whats is wrong in my coding public override void Install(System.Collections.IDictionary stateSaver) { try { System.Diagnostics.Debugger.Launch(); //---- // My Stuff here //---- } catch (Exception ex) { } } And also i tried this instead of System.Diagnostics.Debugger.Launch(); #if DEBUG if (System.Diagnostics.Debugger.IsAttached) System.Diagnostics.Debugger.Break(); #endif Please tell me, the solution to debug my project in Release mode.
-
Converting Bits value into integerDear Friends. I need to convert Byte value into integer. ie. for example Input =7 1. Mark 7th Bit as 1 7 6 5 4 3 2 1 0 (8 Bit) 1 0 0 0 0 0 0 0 2. Split into 2 by 4 bit 7 6 5 4 | 3 2 1 0 (8 Bit) 1 0 0 0 | 0 0 0 0 part 1 | part 2 3. Use 8 4 2 1 logic and apply it 4. part 1 = 8 Part 2 =0 5. Output is 80
-
Image to PDF C#I need to Convert JPEG to PDF format by using C#... Can any one help me out.... plese its very urgent...