In vs2008, the crystal report higher version is already incorparted with that it is working fine.
Pankaj Gupta (Take it easy)
In vs2008, the crystal report higher version is already incorparted with that it is working fine.
Pankaj Gupta (Take it easy)
I have a old project, that is in VC++ and crystal reports 7.0. After converting the c++ code in vs2008 (after removing some conversion error) will it work in vs2008. Means is crystal reports 7.0 is supported in vs2008? Please guide me.
Pankaj Gupta (Take it easy)
Thanks.
Pankaj Gupta (Take it easy)
hi, I need to compile the vc++ 6.0 code project into vs2008 (c++). Please anyone provide me the guidnace or any link, that help me out to remove all the errors after conversation.
Pankaj Gupta (Take it easy)
window.onbeforeunload = forClose; function forClose() { mess = "You will lose all information provided\nduring navigation of this site"; return mess; } You can use the above code, to confirm while navigating from this page. in the mess variable you can use your message. if you have still any issue mail me. Pankaj Gupta (Take it easy)
you can call your javascript methos (that showing confirm message) on "BeforeWindowClose" event of window object in javascript. in this case if a user click on the close button it fires before closing the window.
Pankaj Gupta (Take it easy)
You can also use the database directly to send the emails. for this create a strored procedure and scheduled a job in the database then will run automatically after the specified time.
Pankaj Gupta (Take it easy)
You can use this one line code DropDownList1.Items.Add(new ListItem("test","t"));
Pankaj Gupta (Take it easy)
you can use the popup window to show the calendar. and use javascript to show the selected date in the textbox.
Pankaj Gupta (Take it easy)
if u want to share the data between the 2 users then you can use the aplication object for that otherwise session object is the right way to put the data. it will not effect the performance of the application.
Pankaj Gupta (Take it easy)
You can create a table with 2 rows. first row conatining the cols equal to grid. ... (equal to cols in the grid)
.. grid ..
fix the width of the cols of the table equal to grid. and dont show the header of the grid. it just give the view as you want.
Pankaj Gupta (Take it easy)
you can open a new browser window with the help of javascript. window.open() function is used for that
Pankaj Gupta (Take it easy)
you can also add the javascript with the radio buttons in the datagrid. when any radiobutton checked just check all the rows / items of the datagrid in a loop and deselect other radiobuttons.
Pankaj Gupta (Take it easy)
According to this, you can use the table structure to show the textbox for entering the text and image for display. you can use the multiline textbox for getting the user input.
Pankaj Gupta (Take it easy)
are you validating the controls on server side or client side?
Pankaj Gupta (Take it easy)
you can add the javsscript function inside the tag. call that javascript function with the help of .cs file.
Pankaj Gupta (Take it easy)
you can read a file line by line with the help of streamreader. in that case you can delete the desired line and write the reamining line in a other file with the help of stream writer.
Pankaj Gupta (Take it easy)
you can set all the user logged in the application variable means as a arraylist. when somebody logout the session_end event fired. you can trap a user & delete it from application arraylist.
Pankaj Gupta (Take it easy)
I think you are populating the dropdownlist every time when the page posts back. that why your dropdownlist populating again & again.
Take it easy
By default in the web.config file the setting for the authentication is Please follow these steps -> 1. Go to in the IIS server, 2. right click on the desired virtual directory, open the properities. 3. Go in the Directory Security tab. click in the edit button. 4. In the authentication options checked only integrated window security. These steps will solve your prob.
Take it easy