Click here to Skip to main content
Page 1 of 3
Page Size: 10 · 25 · 50


Author filtered by: Ryan Zahra [x]
Answer 11 May 2013   license: CPOL
Javascript file upload
Answer 11 May 2013   license: CPOL
Sometime, taking some time to actually read the documentation helps!Check this out: MapXtreme Developer's Guide. See page 253 and onwards
C#
Question 2 May 2013   license: CPOL
Hi,I'm trying to connect an Apple IPad 3 to an Exchange User using Exchange 2003 ActiveSync. I've followed this tutorial to do so:Exchange 2003 and Activesync Configuration and TroubleshootingMy setup is on an internal network used for testing and does not have access to the net. This...
Answer 15 Oct 2012   license: CPOL
cmd.Parameters.Add("@HowzeEduc...
Answer 15 Oct 2012   license: CPOL
public void GetGroupsOntxt(){ string ShowApartments = string.Empty; try { DataSet dsGetGroups = objCustomerMessageBusinessRule.GetApartmentNumber(); if (dsGetGroups.Tables[0].Rows.Count > 0) { foreach(DataRow dw in dsGetGroups.Rows) ShowApartments +=...
Answer 15 Oct 2012   license: CPOL
This should help:http://stackoverflow.com/questions/2719580/waitforsingleobject-and-waitformultipleobjects-equivalent-in-linux[^]
Question 15 Oct 2012   license: CPOL
Hi all, I have a piece of code that will try to extract URLs (through the use of regexs) from a piece of text. My code works fine when the text is small, however, when having a very large text, the boost::regex_search function takes almost 1 minute to complete. This is way too much...
Question 30 May 2012   license: CPOL
I have the following tables:tblEvents (ID, eventTitle, eventDate, venue)tblVenues (ID, venueName)tblDJs (ID, Name)tblEventDJs (djID, eventID)tblVenueDJs (djID, venueID, datePlaying)These tables have the following relationships:tblEvents.venue = tblVenues.IDtblEventDJs.djID =...
Answer 10 Apr 2012   license: CPOL
Check this thread. It should provide you with some helphttp://social.msdn.microsoft.com/Forums/en-US/sqlsetupandupgrade/thread/39ad5c84-db07-47a4-8da5-984b4d207219/[^]
C#
Answer 12 Jan 2012   license: CPOL
This is in VB, but it should help youhttp://office.microsoft.com/en-us/access-help/shell-function-HA001228906.aspx[^]Basically you should call Shell("root/name.exe", 1)
Answer 19 Dec 2011   license: CPOL
This all depends on what you want to use. If you want to make use of a flash player, check these links:http://www.aspnetaudio.com/http://www.asp.net/community/control-gallery/Item.aspx?i=2015http://ultidevwebbasedmp3pl.codeplex.com/If you want to make use of a Silverlight player,...
Answer 14 Dec 2011   license: CPOL
private void UpdateRecords(StringCollection sc){ SqlConnection conn = new SqlConnection(connectionString); TextBox box3 = (TextBox)GridView2.Rows[rowIndex].Cells[3].FindControl("TextBox3"); TextBox box4 =...
Answer 14 Dec 2011   license: CPOL
Did you try to search before posting here?Check this great article: http://www.codeproject.com/KB/dotnet/Localization.aspx
Question 6 Jul 2011   license: CPOL
Hi All,I have created a COM+ in C#. I have managed to use this COM+ object from another C# project successfully.Now I would like to access this COM+ object from C++. Does anyone have any ideas on how I should do this? Maybe you could point me to some useful articles with...
Answer 29 Apr 2011   license: CPOL
In my opinion, for just 6 users, its not worth the money to have a server for the application and a server for the software. However, if you're planning to add more users, yes you would need to have two servers.
Answer 29 Apr 2011   license: CPOL
Take a look at WiX. I believe that its the simplest way to have a good installer.
Answer 29 Apr 2011   license: CPOL
MySQL has a file format of .frm
Answer 29 Apr 2011   license: CPOL
Check the rights of the user with which you're connecting to the database
Answer 29 Apr 2011   license: CPOL
There's a lot...and I do mean a lot more!Check ASP.Net, Windows Forms, Windows Services, Web Service.It all depends on what you really want to know. If I where you, I would focus more on a particular language and learn how to do particular work. In this sense I'm referring to learning...
Answer 29 Apr 2011   license: CPOL
This should help you http://stackoverflow.com/questions/627979/how-to-bind-xml-to-a-datagrid-in-silverlight
Answer 29 Apr 2011   license: CPOL
You should either pass the ListViewItem by call the method in the following manner:nr_telefon(this.LWContacte.Items[0]);Else you should modify the delegate to have accept a parameter of type ListViewSubItem:public delegate void delEditareContact(ListViewSubItem text);
C#
Answer 29 Apr 2011   license: CPOL
If I understood you correctly, you just want the line. All you need is an HTML DIV which has the following style:border-bottom: #2763A5 1px solid;line-height: normal;width: 100%;
Answer 28 Apr 2011   license: CPOL
I'm not into Visual C++, but all I could tell you is to have a single string which has the value of "First Name". Then append to the string, the value found in the text box. Then write the string in the stream writer.
Answer 28 Apr 2011   license: CPOL
//Consider having the following DataSetDataSet myDS = new DataSet();//Consider you filled your DataSet from somewherestring question = myDS.Table["table_name"].Rows[rowNumber].["column_name"]All you have to do is to add / subrtact from the rowNumber value to get the next / previous...
C#
Answer 28 Apr 2011   license: CPOL
http://quartznet.sourceforge.net/
C#
Answer 28 Apr 2011   license: CPOL
Yes definitely you can. Take a look at WiX. I believe that its the simplest way to have a good installer.
Answer 28 Apr 2011   license: CPOL
This should help: http://www.csharp-examples.net/string-format-datetime/
Answer 28 Apr 2011   license: CPOL
It should be in the following format:alter table table_namemodify ( column_name data_type);In your case, you forgot the round brackets.
Answer 28 Apr 2011   license: CPOL
When you created the webpage, did you add an ASP Web Page or an ASP AJAX Enabled Web Page? Make sure that you're creating an Ajax Enabled Web Page.
Answer 28 Apr 2011   license: CPOL
This should help http://blogs.msdn.com/b/jfoscoding/archive/2006/01/14/512825.aspx
C#
Answer 28 Apr 2011   license: CPOL
You should write this in the page declaration MaintainScrollPositionOnPostback="true"So for example:
Question 17 Mar 2011   license: CPOL
Dear Gurus,Can anyone please explain the difference between strcpy_s and StringCchCopy?I would also like to know the difference between the functions found in StrSafe.h and the other safe string functions like wcscpy_s etc.Please advice which function is best to use.Thanks in...
Answer 10 Mar 2011   license: CPOL
See this: http://www.codeproject.com/Questions/167160/code-to-create-an-antivirus-software.aspx
C
Answer 10 Mar 2011   license: CPOL
Google is the answer!
Answer 10 Mar 2011   license: CPOL
http://www.boost.org/doc/libs/1_46_0/doc/html/bbv2/installation.html
Answer 9 Mar 2011   license: CPOL
This should help: http://database.ittoolbox.com/documents/finding-table-names-in-sql-18556
Answer 9 Mar 2011   license: CPOL
if(Death.Loc...
C#
Answer 9 Mar 2011   license: CPOL
This could be done using a stored procedure and using an if statement.This should help: http://stackoverflow.com/questions/87821/sql-if-clause-within-where-clause
Answer 9 Mar 2011   license: CPOL
Probably you have the #include defined in multiple header file. Make sure to include it only once.
Answer 9 Mar 2011   license: CPOL
This article should help: http://bytes.com/topic/c-sharp/answers/537508-check-permissions-folder
Answer 9 Mar 2011   license: CPOL
You can use a div. You can than show/hide the div when required.Also take a look at the first solution found here: http://www.codeproject.com/Answers/166205/alert-in-the-run-time-of-an-image.aspx#answer1
Answer 9 Mar 2011   license: CPOL
bool found = false;foreach (DataRowView drv1 in listBox1.Items){ foreach (DataRowView drv2 in listBox2.Items) { if (drv1.Row.ItemArray[0].ToString().Equals(drv2.Row.ItemArray[0].ToString())) { found = true; break; } } if...
Answer 9 Mar 2011   license: CPOL
You must use Products products = productBL.getSpecificProducts(Convert.ToInt32(comboBox1.SelectedItem));
Answer 9 Mar 2011   license: CPOL
First of all, the Dispose method will release all the resources, thus losing all the data.If you want to hide a tabpage you should call the Hide method.For further information please check MSDN
C#
Answer 9 Mar 2011   license: CPOL
Here's a good tutorial:http://www.15seconds.com/issue/040421.htm
Answer 8 Mar 2011   license: CPOL
This should help http://support.microsoft.com/kb/306654
Answer 8 Mar 2011   license: CPOL
May I add to Amit Kumar Tiwari solution:First you need to check if you're running in x86 or x64. This could be achieved by:System.Environment.GetEnvironmentVariable("PROCESSOR_ARCHITECTURE")Please note that this only works if the variable isn't manipulated!!If the architecture is x86...
Answer 8 Mar 2011   license: CPOL
Personally I start off by drawing a rough sketch of all the forms on a piece of paper. The I would start a new project in your preferred IDE and actually start the design. I know that in some instances you would not be able to draw the form due to controls being created and displayed at runtime,...

Page 1 of 3
1 2 3


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