I have an asp program I need to print a receipt out from a button. Does anyone know how to print a receipt client side. I can do a crystal report, gridview, etc. It's a hosted app so it needs to be client side. Thanks.
smarttom99
Posts
-
ASP Print -
How to get the return value of Javascript Confirmation MessageBox in ASP.Net?It's part of the ajaxtoolkit. I'm thinking it might even be better to use the ConfirmButton. Below is the url on how it all works. http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ConfirmButton/ConfirmButton.aspx
-
datatype conversion errorChange the line s = (string)command.ExecuteScalar(); to s = command.ExecuteScalar().ToString();
-
How to get the return value of Javascript Confirmation MessageBox in ASP.Net?It's difficult mixing javascript confirmation with .cs code. The best bet for what you're trying to do is to use a modalpopupextender and then you have control over the buttons in your code.
-
Ajax in Asp.netYou need to put a trigger on the update panel so it refreshes the updatepanel when the button is clicked.
-
Modal Popup Display WebpageDoes anyone know how to display a web page through a modal popup? I need for it to be dynamic as the web page will be different depending on what the user clicks. Thanks so much for everyones help.
-
Adobe PDFI have a c# app that stores pdfs. I'd like to run a routine against the pdfs that changes them to searchable pdfs. Does anyone know how to accomplish this - I have adobe 8 on the server and not sure if there are any apis.
-
SendTo ShortcutI am trying to write a sendto shortcut that processes a list of files. I have written the project to use the command line arguement, but the command line arguement has an arguement on size. Does anyone know how I can not be restricted on the number of files I select for the sendto. Thanks.
-
Can't Break point ASP ProjectThanks Martin. That did the trick.
-
Can't Break point ASP ProjectI just installed VS 2005 on my Vista Machine and when the project runs it doesn't allow me to break point. Inside visual studios it is sitting ready to be run again. Does anyone know how I can get get the debugger to work. Thanks a million.
-
Windows Send To MaxI'm writing a program that is a shortcut in the windows sendto directory. When the user sends too many files the program won't even load so I can't even warn the user of the problem. I think it's based on the size of the full path of each file. Does anyone know a way around this? Thanks a million.
-
DataBindings SaveWith my app I can't update until the user clicks the save button. Is there a way to accomplish this to not hit update the DB until a toolbutton is hit.
-
DataBindings SaveWith my app I can't update until the user clicks the save button. Is there a way to accomplish this to not hit update the DB until a toolbutton is hit. David
-
DataBindings SaveI have databinding to a couple of textboxes. When i edit a textbox the data doesn't save unless I click on another control. Any ideas? Thanks to everyone for there help. Here is the code I use for ending the edit and then updating the database: BindingContext[DS_Entity1, "EV051"].EndCurrentEdit(); TA_EV051.Update(DS_Entity1.EV051);
-
Tif Image CreateI'm writing a process that splits a multi-page tiff image into a bunch of single page tiffs. I'm using the MODI framework for this. I can not figure out how to create a new tif image. the MODI.Document.Create requires a filename of a file that exists. THANKS!!!!
-
OCR BarCode RecognitionI set-up a project that does an ocr using the MODI dictionary. I'd like to do the same for barcode recognition of scanned documents. Does anyone know where I should start on this. Thanks.
-
ListView Selected Item Move to Another ControlWhen I select an item in the list view I'm using the SelectedIndexChanged procedure to run some code. At the end of the code I would like the cursor to be be put in TextBox TB1. When I use TB1.Focus() the system still keeps the items in the ListView Selected to have the focus. If through the code I change the selecteditem everything works. The problem is when the user clicks the item. Thanks for everyones assistance. Tom
-
Shortcut and ArrowIs there a way to take away the arrow shown on a shortcut for a single application without altering the registry that affects all applications? Thank-you for everybody's assistance.
-
Font on Disabled ControlsI have a form where I don't want the user to edit any of the fields in the form - readonly. I set the panel.enabled to false. The fields are hard to read as they are light grey. Does anyone know how to change the .enabled font or a better way at doing this. Thanks for everyones help.
-
ListView Select Removing SelectedItemWhen a user Clicks on an area of the listview that is not an item, the listview loses the selecteditem. How would I prevent this. Thanks in advance for assistance.