Please apply following patch, it will resolve the problem. ftp://ftp1.businessobjects.com/outgoing/CHF/crnet11win\_en.zip
Salman Sheikh
Please apply following patch, it will resolve the problem. ftp://ftp1.businessobjects.com/outgoing/CHF/crnet11win\_en.zip
Salman Sheikh
Solved it, In data section of chart expert, click on the group, click on order, select "In Original Order" from the dropdown and order the query in required order or use the group column in crystal report sort expert.
Salman Sheikh
hi there, I am trying to create a chart in crystal report (VS 2005) and want to show mmm-yy in group axis. But the issue is that if i use date (ordered on change of every month) it shows mm-yyyy and if i use a formatted string formula it is sorted alphabetically while I want it to sort in correct month order. Please advise
Salman Sheikh
Thankyou very much, I was just looking for a name :) I am sure this will halp. On code project, I have never been disappointed
Salman Sheikh
Do we have annotations in .net just like we have in java. Like in java we can create an annotation by creating an interface with @ "public @interface MyAnnotation" and then use them in our application.
Salman Sheikh
hi everyone dears i have created a setup project but while deploying i must install dotnet framework 1.1 and its service pack 1 is there any way that only single setup install all these things ??
Salman Sheikh
Hi everybody i need to know that can i write a datagridColulmnStyle having a textbox for input and also atleast one button on the right of it ?? ----------------- |Textbox |Btn | ----------------- Just like this as if it is one column of grid. I think i have explained my need clearly. If not please let me know. and if my query have any solution please reply :)
Salman Sheikh
i think you are looking for mnemonics for buttons on your form as you want that when user is typing in some textbox and press a key and automatically a button pressed for this purpose you should change the caption of button in following way &Save for save button now from anywhere on a form if user press Alt + S the button Save is pressed and code for its click event is invoked :)
Salman Sheikh
Change the data type of database columns to datetime and while storing and changing the values of that field try this statement for dates Date.ParseExact(txtMasked.text,"Format") format means "dd/mm/yyyy" i think it is in your case. the above statement will return a Date object which can be sent to database and then retrieved :)
Salman Sheikh
In crystal report try to use ToWords(number) with a little customization :)
Salman Sheikh
Learn about datagrid column styles. It is easy to change the width using ColumnStyle.Width = ###
Salman Sheikh
use keydown or keyup event and check e.keydata = keys.tab :)
Salman Sheikh
datetimepicker.value is a property which returns or accepts date object you can add days in a date using Date.Add method which will return another date with added number of days. :)
Salman Sheikh
event is an event and handler is a routine or procedure which is automatically called when that event occurs. Handles MyBase.Load means we specify a handler for the Load Event Addhandler does the same thing both register a procedure with an event so both are equalent
Salman Sheikh
better to say is that as we have "void" return type of a function i.e. a function that doesn't return a value in many languages like C++, C# or Java in visual basic we have sub for this purpose. i.e. sub is a function with void void return type :)
Salman Sheikh
find info about DTS (Data Transformation Service) about the DBMS you are using. It is not difficult
Salman Sheikh
study system.web.mail library deeply. it is simple to send mails
Salman Sheikh
either inherit the control or handle this scenario in TabIndexChanged event.
Salman Sheikh
you will have to parse the string for doing this :) you can create an access database with a table with your required schema and then start reading file using streamreader line by line and split every line on separator and use the literals as values for your access datatable
Salman Sheikh
the best i found to let my form remain in maximized state is by overriding onSizeChanged method (or by handling sizechanged event) and writing following lines there If Not DesignMode Then If Not Me.WindowState = FormWindowState.Maximized Then Me.WindowState = FormWindowState.Maximized End If End If if user tries to change the size even by clicking on maximize button the form will restore back to previous stat. keep in mind initially you will have to set the windowstate of form to Maximized
Salman Sheikh