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


Category filtered by:  General Programming [x]
Question 14 May 2013   license: CPOL
in the home web form of the website, there are login button i want this button to allow the admins of the website to check or enter to specific account in the website, but i did not know how i can code this. any help please
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hello Sir,I would like to make a language translator like the one Babylon application which can be installed on the system.Request you to guide me on how do i go about in making one. i Want make it for my college project, kindly help.you can mail on aneesna@yahoo.com as...
General Programming » Uncategorised Quick Answers » General
C#
Question 14 May 2013   license: CPOL
good night i need help for this problem i use this CButtonhe work perfectly in vs2010 (0 error,0warnings,etc)but in the VS 2012 i get this errors.... (only in the design mode) Object of type 'System.Int32' cannot be converted to type 'System.Int16'. 0 0 thanks
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Please, read my comment. You did not provide enough information to post exact answer.VB6 vs. VB.NET[^] - there are similar languages both not the same.Array class (VB.NET)[^]I would suggest you to use custom class. Please, follow this link: Using Classes and Structures in Visual Basic...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Can anyone tell me where I can find free eBooks on Expression Blend in Visual Studio 2012?I have used Google to search for a few, only to find that the links that claim to be free, are not really free.Thanks in advance.
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Does this work:Structure selectStruct Dim options() As String Sub New(ByVal size As Integer) ReDim options(size - 1) End SubEnd StructureNote that I used "size - 1" because I'm guessing the original code should say "options(0 To 299)".
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
I would start by understanding XLinq since it is the newest XML technology from Microsoft. There are also other ways of doing it, but probably want to use the newest: XLINQ Introduction Part 3 Of 3[^]
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Please see: http://msdn.microsoft.com/en-us/library/tey4z3ca%28v=vs.110%29.aspx[^].—SA
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
I have the following code in VB6. How can I re-write this in Visual Studios 2012? As it is written below, I get the following error message: "Arrays declared as structure members cannot be declared with an initial size. "I've seen possible alternatives to how this should be written...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
No, the keyword delegate and System.Delegate are not the same, not at all.You could be confused with the C# alias keywords. For example "int" is an alias for System.Int32. For delegates, this is not the case.Read the documentation on these type and look through all the cases of using the...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
When I saw what code you used, I immediately thought you were not using the LIKE the correct way. When you use a LIKE, you would usually include a wildcard character. For example, when searching for things that start with the letter M, you'd write something along these lines: {Name} LIKE "M%"....
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
My query as follows select fa.facname,f.bfid,b.class,b.examdate from bthfac f,batch b,faculty fa where month(b.examdate)= '11' and year(b.examdate)= '2012' and b.bthid=f.bthid and fa.facname = 'MADHAVAN'when i execute the above query output as follows;Facname Bfid class ...
General Programming » Uncategorised Quick Answers » General
C#
Answer 14 May 2013   license: CPOL
you can use simple tags to construct you menu. For some awesome effects use JQuery and CSS as per your requirment.You can llok at this.Smaple[^]
General Programming » Uncategorised Quick Answers » General
MVC
Answer 14 May 2013   license: CPOL
If you fetching data from database, the fastest way to export data is to use CopyFromRange()[^] method for MS Excel range.More about: How to transfer data to an Excel workbook by using Visual C# 2005 or Visual C# .NET[^]
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
I have a VB.Net 2005 project that uses a WebBrowser control on a windows form. On the control, I have created an imagemap using HTML and javascript. When a user clicks on the imagemap, a marker (like a map pin) is displayed where the user clicked, and prescribed processing for that section of...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Have a look here:HOW TO: Transpose Data in a Table or Query in Access 2000[^]Transpose data from columns into rows using SQL[^]and try to it by yourself.
General Programming » Uncategorised Quick Answers » General
C#
Answer 14 May 2013   license: CPOL
No server controls in MVC Razor. Use a Partial View instead.
General Programming » Uncategorised Quick Answers » General
MVC
Answer 14 May 2013   license: CPOL
The above code will return the markup for the Events/Index to JQuery method.The post method of Home controller should be "void" in your case, and then just remove return before RediectToAction().It will give you desired result.
General Programming » Uncategorised Quick Answers » General
MVC
Answer 14 May 2013   license: CPOL
I have not actually tested this, but it should work for your simple case:var names = baseMenu.Items.Cast().Select(j => j.Name);What I have had to do is dynamically change a context menu depending on the selected record. I used the ContextMenuOpening event and then used a method in the...
General Programming » Uncategorised Quick Answers » General
WPF
Answer 14 May 2013   license: CPOL
Might not be the most elegant one, but it is a working solution:using System;using Newtonsoft.Json;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { Newtonsoft.Json.JsonSerializerSettings jsonSettings = new...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Allotment table as follows in Ms access database Sdate Period Staff 14/5/2013 1 TR 14/5/2013 2 MD 15/5/2013 1 SG 15/5/2013 2 GV from the above Allotment table, i want the output as follows in ms access database Sdate ...
General Programming » Uncategorised Quick Answers » General
C#
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#
Answer 14 May 2013   license: CPOL
There are various approaches you could take to achieve this.one could be to do a foreach loop on the form.controls collection where you are searching for a control of type MenuItem, then collect the name property from it and put that in an array. Then when you want to retrieve a control you...
General Programming » Uncategorised Quick Answers » General
WPF
Answer 14 May 2013   license: CPOL
You might want to try F12 Developer Toolbar in IE/ FF - Web Console tools to find out what is wrong in the rendered output.
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 according to...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
So this is how I have solved:1. Modified the App.config like: and this is DatabaseConnectionDetails.config:
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
I see that you have SetFocusOnError="true" propery set for RequiredFieldValidator.since it is set when there is validation failure, focus will be set to the control which failed in validation. Set SetFocusOnError="false", if you wish to change that behaviour.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hi everyone, I joined this forum because I was hoping to learn from experts in programming. I know next to nothing about it.I want to develop a web app for lawyers, and plan to outsource it's development to a programmer. But I have no idea what I should look for, what language I want it to...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
It's simple to achieve. Belive me...Steps to do:1) get file names from directory to List[^] generic class2) export values from List to ExcelJust try!Please, follow below links:How to: Enumerate Directories and Files[^]Exporting a List of any type to Excel[^]
General Programming » Uncategorised Quick Answers » General
C#
Question 14 May 2013   license: CPOL
i have much text that i have placed in a div class , there i have .scroll { position: fixed; } i am trying to make that the scroll follows the text but the text is large bigger then the screen height, because my page has much text i only can view the half text? what...
General Programming » Uncategorised Quick Answers » General
CSS
Answer 14 May 2013   license: CPOL
Makes no sense at all.There is no such thing as "overloading", except ugly and very confusing terminology and some myths. (So many beginner have been confused! It's can be observed on CodeProject.) Methods are "overloaded" because nothing is overloaded. They are just different methods with...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hi,Is it possible have a variable with the same name that can either be a string or an object that contains a string?For example:public mynameobj{ value: string { get; set; }}public string myName { get; set; }public mynameobj myName { get; set; } // overload somehow,...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
I would suggest you to ask a question on proper forum.Please, follow below links:Grid - Column/Row...
General Programming » Uncategorised Quick Answers » General
C#
Answer 14 May 2013   license: CPOL
Please, follow below links: Walkthrough: Editing an Access Database with ADO.NET[^]Using an Access 2007 database with ASP.NET 3.5 and Expression Web 3[^]How to add data in ms access 2010 using VB.net 2010[^]It should be enough for start.
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
I'm new in WPF and I have this :
General Programming » Uncategorised Quick Answers » General
WPF
Question 14 May 2013   license: CPOL
What do PostgreSQL users use to build reports? Is Spotfire TIBCO Software a good package for PostgreSQL?
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Yes indeed, the code throws me an exception:Troubleshooting Exceptions: System.Data.SqlClient.SqlExceptionIn the line:WorkflowInstance instance = workflowRuntime.CreateWorkflow(typeof(WorkflowConsoleApplication4.Workflow1));>>>Could not find stored procedure...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
After reading for a while and searching in numerous forums, I finally found my mistake.The field i was selecting in my own DataBase was not an "int", it was a smallint.I had to useConsole.WriteLine(lecteur.GetSqlInt16(0));I found the list of the data types at...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Hi :)I've been trying to work on a project for my little company.I bought a book to learn and test how SQL works with C# and everything.Working with the database they provide in the book worked just fine.But now, when I try to make my own database following their instructions,...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
I'm not sure that i understand you well, but... check this:DECLARE @tabA TABLE(Mid INT, orgID INT)INSERT INTO @tabA (Mid, orgID)VALUES(1, 1)INSERT INTO @tabA (Mid, orgID)VALUES(2, 2)INSERT INTO @tabA (Mid, orgID)VALUES(3, 2)INSERT INTO @tabA (Mid, orgID)VALUES(4,...
General Programming » Uncategorised Quick Answers » General
SQLServer
Answer 14 May 2013   license: CPOL
In all probability, you don't.AFAIK, the only version of windows that works on an ARM based processor is RT - and there is no guarantee that it will work.Start here:...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
To change connection of Entity Framework dynamically, you will have to pass connection string to the constructor of DataContext class as below. string connection = "YourConnectionString";DataContext myDataContext = new DataContext(connection);Quote:And how can I get tho login information...
General Programming » Uncategorised Quick Answers » General
Question 14 May 2013   license: CPOL
Table A -------- Mid orgID1 1 2 23 24 4Table B---------id Mid MemberID 1 1 2 2 1 3 3 1 4 4 2 1 5 2 3 6 2 4 7 4 2 8 4 3In above case orgId and MemberID is equivalent or treated as same.If I have...
General Programming » Uncategorised Quick Answers » General
SQLServer
Answer 14 May 2013   license: CPOL
https://www.google.com/search?q=How+do+I+install+Windows+on+a+tablet+with+Android+OS[^].
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
Use Spy++ to catch the messages going to your windows. This tool will give a you an inside view where the messages are going and will give you insight into how to catch them.
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
ok I solved this problem by below code:code behind: protected List objListItems = new List();And in javaScriptalert('')alert('')
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
This article explains how to print using ASP.NET:http://www.c-sharpcorner.com/uploadfile/rahul4_saxena/printing-in-Asp-Net/[^].Note that the server side only provides printable content, and all the detail of printing selection, printing quality and other options totally happens on the...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
The only place you are casting in that code fragment is when you try to get the value from the database:Console.WriteLine(lecteur.GetInt32(0));Which implies that the value in the first column of your table (or the "Sunfuki" table) is not an integer value.Have a look in SSMS at the table...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
You cannot get a "simple code" in response to such a vague request. It really depends on the detail of what you want to achieve and your service.However, one thing is obvious: your Web Service application provides some interface to the client application. Your console application is no...
General Programming » Uncategorised Quick Answers » General
Answer 14 May 2013   license: CPOL
postData = "__VIEWSTATE=" & vState & "&ddlRegion=" & merchantID.Substring(2, 2) & "&txtPassword=%24%24region15%23%23&btnEnter=Enter" & "&__EVENTVALIDATION=" & eventvalidation...
General Programming » Uncategorised Quick Answers » General

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


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