Click here to Skip to main content
Page 1 of 8,655
Page Size: 10 · 25 · 50


Category filtered by:  General Programming [x] | Uncategorised Quick Answers [x]
Question 14 May 2013   license: CPOL
I need help.I have a txt file. which is an inventory of a store. The format of each is aritgo by name, location in the warehouse and date separated by ";". Example: Computer; 001; 10/02/2013One aim of my work is to select an item and remove. How can I do?
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hi I have this code working, it prints all email adresses it gets from a request to gmail but now I need to send the array with results to another partial view how can I store it in a way that I can use it somewhere else? (the partialview does appear on the same page)var array =...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
My query as follows; SELECT F.facname, BA.examdate, FD.bfid, FD.rate FROM faculty F JOIN bthfac B ON F.facid = B.facid JOIN facfeedback FD ON FD.bfid = B.bfid JOIN batch BA ON BA.bthid = B.bthid...
General Programming » Uncategorised Quick Answers » General
C#
Question 14 May 2013   license: CPOL
Hi. I have a textfile with columns that I want to output in a DataGridView. The line that I want to read the clumn names from isn't in the beginning of the file so I have to look for a line that starts with #COLUMNNAME and read the coulm names from that line. The problem is that when I do this...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hello sir,can you please tell me any example of scrolling header .It mean that there are lot of images in header .we can able to see images using next button .i used tinycarousel .But problem is that in each image click i want to show dropdown can you please tell me any example?Thanks
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
I have a div that I want to print it. I use css to print that specific div and it is right when i use it in windows seven.But when i use it in windows xp, my settings are ruined. I do not know whats the problem with windows xp?Thanks in Advanced.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hi,I have a list = {1,1,2,3,4,5}I want to compare the items in the list.var LST= (from i in list join j in list on i.val equals j.val select i).ToList();But this doesn't work.Any suggestions, please?
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Try like this ..'>
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
This link should help you.Click Here
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
well in your case there is no duplicate data in table,but if you consider only names as duplicate data then you can get distinct data in following ways...select MIN(ID), Name from tbl_1group by Nameorselect MAX(ID), Name from tbl_1group by Namechoose any of above...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
http://www.dotnetfunda.com/for...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
How to Remove duplicate data From table in sqlserver tableMy table Data :ID Name344B6794 VisalCA6B5B10 Raghu9DC012F7 VisalFDC12AC1 Raghu9B439B6F RakeshF9F7D96A NareshA28909C3 RakeshI need to get below data onlyID Name344B6794 VisalCA6B5B10...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
How can I make the export more faster.this one is too slow..public void createCodeListe(List pCodeGruppenListe,List pCodeNormalListe, string pVonDatum, string pBisDatum, bool pValidFlag) { try { ...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
i faced some some problem in Spire Document viewer.spire doc document viwer is an third party tool problem is that i have to copy text whatever i upload in that document viewer such as doc file its urgent ...help me
General Programming » Uncategorised Quick Answers » General
WPF
Question 14 May 2013   license: CPOL
Hi to all...To overwrite the operation of updatepanel in masterpage i have used one more updatepanel in content page.which contains 2 buttons one for saving , another for updating record in database..and one fileupload control.For triggering buttons action i have written code like...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
I have created one webservice and DB in Ms access. now i need to change it to sqlserver db. I replaced to sqlserver. but when i deployed in IIS still its in Ms access. What is the problem.please let me know.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
hi, i want to know if is possible hook KiPageFault from IDT like other interrupts?only this interrupt give me problems and i don't understand why.I also tried with this:NewHandler:jmp OrigHandler(this routine does nothing and doesn't work too...)Thanks
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Hi...validate textbox with RegularExpressionValidator like blow.its allow only numeric values only into textbox.
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
You can use to format your value to currency format
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
I'm writing a web-app that is required to present users with a login screen.Users can enter username/password and select a domain from a dropdown list.how to enumerate all available domains in the server's AD forest even before user login after basic authentication? I came to know that...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Try this one ..SELECT Name, MAX(ID) FROM tablenameGROUP BY Name
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Login.jsp
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Hello,I recommend you to start read here: ADO.NET -> http://msdn.microsoft.com/en-us/library/e80y5yhx.aspx[^]Bye.
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
$
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hello AllI have A Dataset and i also created some rows, but i want to add this table in my database how is that possible..??plz help... DataSet ds1 = new DataSet(); DataTable dt = new DataTable("Emp"); dt.Columns.Add("Name",typeof(string)); ...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Hello,Please read this articles:http://msdn.microsoft.com/en-us/library/bb896271.aspx[^]http://stackoverflow.com/questions/8056761/context-savechanges-not-working[^]Your object is probably detached from the context object.Bye.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
hi, for my table i am having the data as belowRF_Code Date Time 104 2013-01-01 09:00:00104 2013-01-01 18:12:00104 2013-01-02 09:02:00104 2013-01-02 19:05:00105 2013-01-01 09:30:00105 2013-01-01 18:30:00for a particular month...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
You need to go through some articles and try to learn and implement. Follow the below ones.1. Lazy Load Plugin for jQuery[^].2. How to 'lazy'-load images with jQuery[^]
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Have a look here: Programmatically Complete PDF Form Fields using Visual Basic and the iTextSharp DLL[^]
General Programming » Uncategorised Quick Answers » General
VB
Answer 14 May 2013   license: CPOL
Don't post the same question more than once. I have already answered it here:How to find out if datetime picker value is changed or not?[^]
General Programming » Uncategorised Quick Answers » General
C#
Answer 14 May 2013   license: CPOL
Please use JQUERY$(document).ready(function(){ $("[$id='btnSubmit']").click(function(){ if($("[$id='txtBloodGroup']").val() == ''){ alert("Please enter blood group name"); } });});
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
That's a job for a custom UITypeEditor[^]. See the link for an example on building an editor for your custom object that works with .NET's PropertyEditor.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hello Proffessionali am developing Window Application With MYSql Database for some reasons.but i dont know how to make setup of my window project in Visual Studio with Mysql Database.that can easily run on client computer without installing MySql DataBase Setup.Have Any...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
you cannot do a logical comparison on an event.ValueChanged is an event on the control not a property.Hence your error.
General Programming » Uncategorised Quick Answers » General
C#
Question 14 May 2013   license: CPOL
This might be difficult to explain but please bear with me... So, I have a model that combines two different models so that I can utilize data found in both in one view: Combined:public class EventFullModel{ public AccessListModel AccessPointsList; public EventListModel...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Hi nandkishore,Try using distinct keyword to remove duplicates from the table.likeSELECT DISTINCT(Name),ID FROM tablenameI hope this could help you out.Regards,RK
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Please help me in solving the error. My Problem is I actually getting xml String from Web service,I am storing that string into XML File and reading the file using xml.reader();But will getting the string from web service if there is empty xml node the node is geting in single tag...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Hello,View this article:ASP.NET SQL Server Registration Tool - http://msdn.microsoft.com/en-us/library/ms229862(v=vs.100).aspx[^]This tool creates all the objects needed in the sql server.Bye.
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
An XML file normally has a header line such as you describe - it is optional, but recommended, and XDocument always adds it when you use the Save method.If it really disturbs you, you need to use an XmlWriter instead - it has an option to turn it off. XDocument doc = new...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Please how can I get the right LPITEMIDLIST to use for IShellLink::SetIDList?I triedHRESULT hr = S_OK;ULONG celtFetched;LPITEMIDLIST pidlItems = NULL;LPITEMIDLIST netItemIdLst = NULL;IShellFolder* pPrinterFolder = NULL;IEnumIDList* pEnumIds = NULL;IMalloc* pMalloc =...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Hello You can restrict anonymous user by two methods1)By Using Session In this method you have to mantain the UserId in session and have to check the session variable on PageLoad or PageInit event of the page.If the UserId is your you can carry on , else you can redirect the user to...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hi AllI want to implement a Lazy Loading using jquery to implement this what are the thing we need to do.Thanks in Advance.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hi allI have to remove declaration from existing xml using C#
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
If you mean the extension of a file, this is a good example.http://www.richelbilderbeek.nl/CppGetExtension.htm[^]If you don't, please put your question more elaborate.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hi,I am planning to implement Membership into my Asp.Net-MVC web application.My question is, which table should I used to provide application page based access to respective User roleEx. Customer - View Only, AddAdmin - Add,Update,DeleteSomething like this.Do I need to...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Hi sharmarun,Did you check all constructors available for XDocument class? Check hereYou need to instance XDocument class with no declaration element/object.For example:XDocument doc = new XDocument();doc.Add(new XComment("This is a comment"));doc.Add(new XElement("Root",...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Here is the [Sample link] as required by you.
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
put your buttons inside the System.Windows.Forms.Panel and set AutoScroll = truemore info here:Customize a panel with Autoscroll property[^]
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
You can't use them like that. They're events - not properties. You need to add an eventhandler. Something like:public partial class Form1 : Form{ private bool dateChanged = false; private void Form1_Load(object sender, EventArgs e) { dateTimePicker1.ValueChanged...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Hi, as an alternative to C# word automation (Office Interop)you can also very easily C# create Word and edit Word files with this .NET Word component.Here is an example that shows how easy it is to C# edit Word file and save it:// Load a document.var document =...
General Programming » Uncategorised Quick Answers » General
C#

Page 1 of 8,655
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web03 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid