4,588 Topics
| |
I'm sending an HTTP POST request to google Client login and I'm getting this in respons: SID=DQAAAGgA...7Zg8CTN LSID=DQAAAGsA...lk8BBbG Auth=DQAAAGgA...dk3fA5N I used the below code to read the response: [CODE]Trace.WriteLine(new StreamReader(response.GetResponseStream()).ReadToEnd());[/CODE] Now in this response i want to use only the value of Auth token. Can any one please help me … | |
i create an applicaton in c# now i want to make a 1 clicksetup file that includes windows installer,ms sql server 2005 and ,netframewok. Sql server should be automatically configured to sql server authentication mode with a new user name raj and password 123. Plz help me guys | |
| Hi, I have GridView on my asp.net Page I want to validate the Gridview. I want that in my Grid , Records with Null Value do not be displayed,Like I have some Null values In second column rows So I need to Hide those Null Values, In fact Entire row … |
I have two tables, tblstudent having fields [studentId,rollNo,classId,studentName], tblclass having fields [classId, division,className]. The two tables are referenced by field classId. I want to fill tblstudent. Also I want the table tblClass should be filled at the same time. This is for creating reports. Can any one help me.. | |
Hi all, first of all thank you to everyone who helped me out last night with my problems, now I need some help again. I have a menu and submenu system, this submenu contains information about locating a driver's location, I want to be able to do a search within … | |
Hi: I’m looking for visually appealing, robust Help component to add to my (.NET C#) Windows form. It must have search & indexing etc and docking. Appreciate any recommendations. Thanks! | |
Hi All, I need to find a way to automatically print a PDF file from my Windows Application in C#. Currently I can invoke the following from the command line: "C:\Program Files\Adobe\Reader 8.0\Reader\AcroRd32.exe" /p /h "C:\Test.pdf" This will silently print the PDF file but will keep Acrobat Reader open (but … | |
how to develop a crop selection control like photoshop's in c# 4.0 in widows form application. I have a windows form application in c# 4.0 that can crop images. At first you have to draw a rectangle using mouse to select the cropped region [CODE]private Point _pt; private Point _pt2; … | |
actually, i'm developing dynamic template using asp.net and c#. in my usercontrol page i have a listview which is include dynamically created table. once the user edited any of the rows and press the save button before the PageLoad or PageInit i want to execute the ItemUpdating function to save … | |
Does anyone know of a third party simple grid for C#? Preferbably free ones. Not the Datagrid within C#. I'm try to learn C#. Thanks... | |
Hi everyone, i already build web page, now i need to add one more user and the user based authorization to view only the website. any samples please.. thank you | |
Ok. I'm new in c# and I'm trying to create an online booking service. I have the file: dbConnClass.cs where I have the db connection/statement as shown: [CODE] public void getPrice(int fromDest, int toDest, int totalPass) { string sqlStatement = "SELECT * " + "FROM destPrices "+ "WHERE fromID = … | |
I have an image processing project using c++ language. I have also linked opencv to integrate some optimized algorithms.However, I would like to create a nice GUI using Visual C#. Is it possible to call a certain program in c++ in visual c#. (P.S. I have no idea about dll, … | |
to anyone, I'm new to using C# wrote a program for a business class to calculate double-decling balance method of depreciation for years. But when I run the progam and enter the 2000 for property value, 5 for property life. I get the wrong results. for year 1 Value at … | |
Hello. I am using this code to save asp.net page as an MS Word doc file. protected void GenerateMsWordDoc(object sender, EventArgs e) { string strBody = "<html>" + "<body>" + "<table width=\"100%\" style=\"background-color:#cfcfcf; font-family: Arial, Helvetica, sans-serif\"><tr><td>????</td><td>2nd cell body data</td></tr></table>" + txtName.Text + "</b></div>" + "Ms Word document generated successfully." … | |
Hello All, Can someone please help me with this? I converted from C# to VB.NET and get this error : [B] A namespace cannot directly contain members such as fields or methods [/B] I appreciate you looking at this. Regards Imports System.Collections.Generic Imports System.Linq Imports System.Text Namespace UsedCarsSales Public NotInheritable … | |
I have developed an application that loaded many images in a listview using ImageList in c# .net framework 4. The images are also compressed. When many many images are loaded and compressed then it takes a long time. So I call the method in backgroundworker. In the backgroundworker I had … | |
[URL="http://www.herongyang.com/C-Sharp/"]C# Tutorials[/URL] This free book is a collection of notes and sample codes written by the author while he was learning Flash. Topics include C#, C Sharp, data types, float, expression, literal, loop, .NET, performance Table of Contents About This Book Introduction of C# (C Sharp) What Is C#? Installing … | |
Hi I am working on Pdf annotation using Itextsharp. I am able to get hyperlink url from pdf using the below code. How to get the annotation (Highlited) text from pdf. [CODE] string[] PdfFiles = Directory.GetFiles("C:\\ABK"); foreach (string fi in PdfFiles) { try { PdfReader reader = new PdfReader(fi); // … | |
Hello, all. I am receiving an error that I hope you all can help me with. After running a while or quite a few reports, I get the message " The maximum report processing jobs limit configured by your system administrator has been reached." I know this is because I … | |
there are three methods called in a backgroundworker_dowork() event in c# .net 4. I want to execute three methods synchronously. that is, 2nd method will execute after 1st method is fully executed and 3rd method will execute when 2nd method is fully executed. because 2nd method can exetue properly only … | |
I have created a new website . With access db inside app data folder. . And hosted in server. . Bt it is not retrievind or updating db datasg . Why it is happening ? | |
I'm in the process of converting a complex system from VB6 and C to C#. However now I'm in a position where I need to call a C# dll from VB6 and I need it yesterday. The only solution I found was using Interop, which didnt work, and seemed to … | |
actually i'm developing web template using asp.net and c#. i have mainTemp.aspx page which is include usercontrol page. in my usercontrol i have a listview which in this listview i have to create dynamic table inside the ItemTemplate based on a XML file. my listview code including the ItemTemplate is: … | |
I need to make it so that whenever I have "East" selected under my combobox for example, then only the list of parks with that particular location will show up. I also need to do the same for whichever facilities are selected and if the park falls within the opening … | |
Hi All, I am trying to convert the following C++ code to C#. pExportDir = (PIMAGE_EXPORT_DIRECTORY)GetPtrFromRVA(exportsStartRVA, pNTHeader, pImageBase); [CODE]template <class T> LPVOID GetPtrFromRVA( DWORD rva, T* pNTHeader, PBYTE imageBase ) // 'T' = PIMAGE_NT_HEADERS { PIMAGE_SECTION_HEADER pSectionHdr; INT delta; INT delta2; pSectionHdr = GetEnclosingSectionHeader( rva, pNTHeader ); if ( !pSectionHdr … | |
write, compile and test a short program to read in a list of 10 positive numbers which also determines and prints out the largest number. here's what i've got so far. but how do i change it in order for it to accept a positive number only? [CODE]using System; using … | |
Hello to all, before begin i must say that I'm sorry for my bud english and hope that it not be a problem for understanding whit you. I'm looking for a solution to create a simple background server application that running and live over infinite loop cicle, whit have the … | |
Actually i'm creating web template using asp.net and c#. in my user control page i have to create the table dynamically. i just read the data from XML file then retrieve the name and number of columns and rows of each table. while i'm creating the table i assign the … | |
Hi friends, I need to develop a COM Port Application in the C#.Net? So What kind of code will i use to COM Port Application in C#.Net? Please Help me. |
The End.