Any one know where I can find information, I could not Google any thing. It's a font name.
There is always the way to do it but I dont know
Posts
-
UHOQQK+C39HrP48DhTt -
Listbox SelectedIndexChanged eventI want to add a delegate to each listbox (10 of total on one page), in order to handle selectedIndexChanged event as following: lstbox.SelectedIndexChanged += new EventHandler(OnSelectedIndexChanged); private void OnSelectedIndexChanged(object sender, EventHandler e) { } I got error like this: Error 1 No overload for 'OnSelectedIndexChanged' matches delegate 'System.EventHandler' Can some one help me. Or any suggestion on what's the best way to handle 10 data list on one page. (display and editable). Thank you in advance.
-
print pdf file to network printer using printer IP addressThanks for the very usful information, it works for my project. But I had little problem also, when I run it from my computer, it's ok, when I deployeed to another computer and scheduled in windows task, I got error,debug window pop up, in windows task log file, it exited with code C000005. I couldn't figure out what cause the error. Any help again?? Thanks a lot.
-
print pdf file to network printer using printer IP addressI use following code in C# to print pdf files, it works ok, I want to use printer's IP address instead of printer's name, any help? private static void doPrint(string executable, string fileFullPath, string printerName) { // Print PDF file using Acrobat Reader. // "/h" - hidden mode // "/t" - print command following by the file name and printer name System.Diagnostics.ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.Arguments = "/h /t \"" + fileFullPath + "\" \"" + printerName + "\""; startInfo.FileName = executable; startInfo.UseShellExecute = true; startInfo.WindowStyle = ProcessWindowStyle.Hidden; System.Diagnostics .Process process = new Process() ; try { process = Process.Start(startInfo); } catch (Exception ex) { DBMaint.updateLogFile (ex.Message.ToString ()); } finally { process.WaitForExit(20000); if (process.HasExited == false) { process.Kill(); } } }
-
Save PDF file as imageWhat is the best way to save currently opened PDF file as image in sql database?
-
Create and print PDF file in web application using iTextSharp assemblyThis is a new question, after I created a PDF file with data entry using iTextSharp, what is the best way to save it in the situation I need to bring back this PDf file. Thanks in advance.
-
Create and print PDF file in web application using iTextSharp assemblyFirst, thank you for the reply, I did use Process.Start, it works ok, but I try to not using COM, but using .net technic. Any other way? Thanks,
-
Create and print PDF file in web application using iTextSharp assemblyProject: I'm tring to use iTextSharp assembly to create and print a pdf file in a web application. Input: pre created template pdf file; dynamic data entry from web page. Output: print out pdf file with data entry; save pdf with data entry as image to database. Step 1.Generate pdf file based on pre-created pdf template file and data entered through web page. Step 2.Print out the pdf file generated from step1. Problem: I'm able to persute step 1 using fdf. What is the best way and how to print out the pdf file created from step1 in web application? What is the best way to store the pdf file into SQL server database? Your input is well appreciated.
-
How to use messagebox to confirm deletion in gridviewI have a gridview contians row command field, "Delete", I want to popup a messagebox after user click on "Delete" to confirm deletion before the row has been actually deleted. Any way to do it?