473,788 Members | 2,868 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

C# / C Sharp Forum

0
205
thread by: BlackWasp | last post Jun 27 '08 by: BlackWasp
Used to use it a lot for medium size projects, then switched to VS Express editions. There's not a lot to choose between them - I made the switch becuase the projects are generally compatible with those I create in team development edition. If you don't care about this then SharpDevelop is great. -- BlackWasp www.blackwasp.co.uk
4
4,224
thread by: james | last post Jun 27 '08 by: Nirosh
Hi All, Would anyone mind going over how to strong name an assembly after it has been compiled? I was looking at AL.exe, but it won't take in .dll files. I'm not sure if I can strip out the module part of the dll. Any help is appreciated. Thanks! James
1
1,747
thread by: ArunDhaJ | last post Jun 27 '08 by: Nirosh
Hi, I'm in need of help for solving the following problem: I've a page with two div tag as follows: <div id="divNormalView" runat="server"> <asp:listbox id="listSelectedMembers" Runat="server"</ asp:listbox> </div> <div id="divPrintPreview" runat="server"> <asp:datagrid>
4
987
thread by: Alphamacaroon | last post Jun 27 '08 by: Alphamacaroon
I am noticing some really strange behavior with Regex replacements and am wondering if anyone can help me make any sense of it. Let's say we have a string "Price=#InsertPrice#" and we want to replace "#InsertPrice# with one or more "$" symbols to denote the price level. Now, here's what I'm seeing when I try the following replacement...
0
995
thread by: Bimal Kothari | last post Jun 27 '08 by: Bimal Kothari
private DataTable SortDataTable(DataTable GetDataTable, string sort) { DataTable _NewDataTable = GetDataTable.Clone(); int rowCount = GetDataTable.Rows.Count; DataRow foundRows = GetDataTable.Select(null, sort); // Sort with Column name for (int i = 0; i < rowCount; i++) { object arr = new object;
3
2,658
thread by: =?Utf-8?B?SmVzc2U=?= | last post Jun 27 '08 by: Ben Voigt [C++ MVP]
I have searched and searched, with no luck. I have a Form that has several event listeners in it (Keypresses, speech recognition, afew others). When I click a component in the form (such as a button), the form itself loses focus. How can I get it back? I have tried this.Focus() from w/in the form in a timer with no luck as well as...
2
2,918
thread by: Claire | last post Jun 27 '08 by: Michael Justin
Hi I would like to un-log users and return them back to the main screen of my application automatically if user activity (key presses/mouse) goes idle after a certain length of time. My main screen already closes any sub forms if a user login card is removed from a card reader, but I need the same for when an administrative user logs in with...
1
1,058
thread by: Greg | last post Jun 27 '08 by: Greg
If a company is putting together an SDK where all of their soon-to-be shipping assemblies have been signed and obfuscated, will those assemblies be usless without specifying the items (Namespaces, types, ...etc) to preserve during the obfuscation process? I've obfuscated an assembly (UserControl) using Dotfuscator CE 4.1, created a test...
12
2,329
thread by: joey.powell | last post Jun 27 '08 by: Peter Duniho
Hello, I have an app that uses a tab control with several tab pages. Sometimes some of the processing initiated on one of the tab pages gets busy doing stuff that is farmed out to worker threads. I have to be able to prevent the tab page from changing (prevent users selecting other tabs) while this is going on. I already have a variable...
2
2,781
thread by: pat.saunders | last post Jun 27 '08 by: Peter Duniho
Hi, I am using Visual Studio 2005 and am using Visual C#. I notice that the program.cs creates an instance of a form and runs it. I have a PictureBox in the form and a Class File x.cs and in the Class file x.cs want to access some of the picturebox parameters e.g size but I do not have access to these parameters. I could write a function in...
2
1,293
thread by: cbmeeks | last post Jun 27 '08 by: Peter Duniho
Man, I realize I've been asking a lot of questions lately. I appreciate you guys helping me in my thought process. This time, I have a design question I want opinions on. I'm building a business framework for tracking trending data. I have a class like: class Metric
1
1,255
thread by: Vinay Bhushan | last post Jun 27 '08 by: Vinay Bhushan
Hello Strange problem with regex parsing. The regular expession search text 217.173.102.220 - foomart regular expression. (.*\s)(-)(\s)(.*)
2
994
thread by: CSharper | last post Jun 27 '08 by: CSharper
During compilation, I am including a resource file and I want to check the exe to see if the resource file I added available? Is there any other way to see what are all the resources available in an assembly, without really knowing the names? Thanks.
0
976
thread by: Suganya | last post Jun 27 '08 by: Suganya
"Change your language and you change your thoughts." Learn English and free download Grammar & dictionary. Just click the website and share ur thoughts….enter in the search column “What do u want about English language”? u’ll get it it everything….. A common example of two verbs mixed up by learners are 'made' and 'do'. For example,...
4
6,135
thread by: =?Utf-8?B?RGF2aWQ=?= | last post Jun 27 '08 by: =?Utf-8?B?RGF2aWQ=?=
Hello all, I have dynamic controls all associated with a single ContextMenuStrip. For each menu item I have click event method. For each event I have cast sender to ToolStripMenuItem to ContextMenuStip to use SourceControl to get the control that initiated the event. This all works well if the the menu items are one level deep on the...
7
1,813
thread by: cbmeeks | last post Jun 27 '08 by: cbmeeks
Hope I'm using the right terminology. Anyway, say I have a class like: class Animal { public double GetValues() {......} public void FilterBy(string text); {......}
2
3,283
thread by: Mike P | last post Jun 27 '08 by: Mike P
I am running through the LINQ examples on the Microsoft site and I am wondering where the List object below is coming from? What classes do I need to add to my page to be able to use this List object? public void Linq3() { List products = GetProductList(); var expensiveInStockProducts = from p in products where p.UnitsInStock 0 &&...
12
14,882
thread by: Peter | last post Jun 27 '08 by: Peter
Hi if I have a url/query like "localhost?a&b&c=123" then I thought I could get these parameters and values by using NameValueCollection query = HttpContext.Current.Request.QueryString; But if I then try "query.AllKeys" I only get two keys, namely "null" and "c". Is this correct behaviour? Are "a" and "b" considered to be values for
1
1,363
thread by: Ang | last post Jun 27 '08 by: jkricka
HI, I want to put several DataGridViewComboBox (which map their own datatable) into a DataGridView. Different Rows of DataGridView will load their own DataGridViewComboBox. is it possible to do so? // blockList, cSubjectGroupList, subjectGroupList are DataTable
3
2,897
thread by: Michael Schöller | last post Jun 27 '08 by: Michael Schöller
Hello, First of all english is not my natural language so please fogive me some bad mistakes in gramatic and use of some vocables :). I have a great problem here. Well I will not use it anymore but I want to know why it is as it is ^^. I tried with .NET3.0 but I think it will be the same with 2.0 and 3.5. MSDTC is configured and working.
9
8,215
thread by: Tem | last post Jun 27 '08 by: =?ISO-8859-1?Q?Lasse_V=E5gs=E6ther_Karlsen?=
List<inta = new List<int>(); a.Add(1); a.Add(2); a.Add(3); List<intb = new List<int>(); b.Add(3); b.Add(4); b.Add(5);
1
1,411
thread by: Ilyas | last post Jun 27 '08 by: Marc Gravell
Hi all I have a database that contains several tables. Each table has the name data01, data02, data03 etc The column definitions for each table all contains several standard columns and then several custom columns. There are no foreign keys or anything like that! My questions is it it possible to use "linq to sql" in this scenario
1
2,511
thread by: arunairs | last post Jun 27 '08 by: =?Utf-8?B?TW9ydGVuIFdlbm5ldmlrIFtDIyBNVlBd?=
Hi, After writing the £ (pound sterling) symbol to a file using StreamWriter using the default encoding UTF8, when I retrieve it the file symbol £ gets changed. But when I use Encoding.Default in the StreamWriter, I am able to retrieve the symbol without any issue. Can you tell me why this is so? Microsoft recommend using UTF8 for...
5
1,050
thread by: CSharper | last post Jun 27 '08 by: CSharper
This is a newbie question on WCF. I would like to know, is it possible to host WCF web services where there is no IIS installed? What is the bare requirement to have WCF service hosted on a box? So far what I read, all I need is framework 3.5. Is that right? I do not need IIS correct? Thanks.
15
1,803
thread by: Logician | last post Jun 27 '08 by: =?ISO-8859-1?Q?Arne_Vajh=F8j?=
I want to use UNIX to develop c# applications, does anyone have any details of compatibility issues?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.