1,302 Posted Topics
Re: I don't understand the question :| adatapost how could you :) I think they need to develop and editor to this file to add\modify\remove some words. | |
Re: haaaa, give me your tryings friend :) | |
Re: try this [URL]http://www.adobe.com/support/flash/[/URL] | |
Re: It works with me, do you work on Vista? if yes you run VS\your application as administrator. | |
Re: Please attach picture to what happened to understand you well. | |
Re: If you do that, you're applications supposed to run on .NET framework 2, did you do that? with all application references?? | |
Re: [url]http://blogs.msdn.com/vsto/archive/2009/03/06/my-word-add-in-creates-duplicate-menu-items-make-it-stop-norm-estabrook.aspx[/url] [url]http://www.carlosag.net/Articles/createVSTemplate.aspx[/url] [url]http://codebetter.com/blogs/david.hayden/archive/2005/11/06/134343.aspx[/url] [url]http://filext.com/file-extension/DOT[/url] | |
Re: General question!! [B]Undefined problem has infinite set of solutions[/B] | |
Re: First please use Code tags. Second, make class to handle this [code=c#] class MyWord //may implement some interfaces { string word; public string Word { get; set;} int rank; public int Rank { get; set;} } [/code] Then when some search meets increase the rank. | |
Re: I don't know what's in your mind but have a look on PagedDataSource Class Encapsulates the paging-related properties of a data-bound control (such as DataGrid, GridView, DetailsView, and FormView) that allow it to perform paging. This class cannot be inherited. [url]http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.pageddatasource.aspx[/url] | |
Re: Math.Add ??? Exists in Math class??! The answer shouldn't be to use it or not to use it. Regardless this small operation in sometimes I shouldn't do that. Try we log error\exceptions I can't permit developers team to do that [Code=C#]try { } catch (Exception ex) { File.AppendAllText(ExceptionFilePath, ex.Message); }[/code] … | |
Re: As you're online. Please mark it as solved. | |
Re: Yes, Danny, I begun to note that, the next coming days you'll find him asking a lot then no single thread to be marked as solved and even no replies. | |
Re: It depends, excuse me, it's not a question. your question should be can I learn C# but the long time can't be determined. Let me know when this question will be solved? when I say after 3 months :) So, the answer is 3 months. | |
| |
Re: You end users\stakeholders\clients must have SQLExpress formerly called MSDE (Microsoft SQL Server Desktop Engine). So you don't need to install SQL Server (Server tools). Then how to attach the database there are a lot of ways to do it programtically may be through installation, may be standalone application do that … | |
Re: [code=C#] foreach(Control c in Panel1.Controls) { if(c is TextBox) MessageBox.Show(string.Format("TextBox Name: {0} , TextBox Text {1}",c.Name, c.Text)); } [/code] | |
Re: Here's a post I wrote but it's by C# you can see the idea and convert it to VB.NET [url]http://fcihelwan.wordpress.com/2008/05/16/how-to-make-your-controls-moveable/[/url] | |
Re: Excuse me Danny, Lighthead (Actually I don't know your real name). Mansi please tell us your problem compilation error or fatal error in which line, etc.... it make that easier for us to help. | |
Re: [code=C#] String html = getSource(); List<Group> newGroups = new List<Group>(); r = new Regex("class=lnk href\\s*=\\s*(?:\"(?<1>[^\"]*)\"|(?<1>\\S+))", RegexOptions.IgnoreCase | RegexOptions.Compiled); for (m = r.Match(html); m.Success; m = m.NextMatch()) { MessageBox.Show("Link" + m.Groups[1].Value); //new modified code newGroups.Add(m.Groups[index]); //not 1 as you say } [/code] Read my comments in the code I may got … | |
Re: No, Serkan it also used as they said in desktop application[I] SQL Server Compact 3.5 is a free, easy-to-use embedded database engine that lets developers build robust Windows Desktop and mobile applications that run on all Windows platforms including Windows XP, Vista, Pocket PC, and Smartphone.[/I] [URL="http://www.microsoft.com/Sqlserver/2005/en/us/compact.aspx"]read more[/URL] You're both … | |
Re: I think they need to have Label and scroll its contents. Please answer us. | |
Re: What the at runtime created controls? TextBoxes or Buttons ? If TextBoxes You can add reference to recent created textbox name and perform the calculation I.e: We created textbox its name textbox15 [code=C#] string recentTextBoxName = GetRecentCreatedTextBox(); string GetRecentCreatedTextBox() { ///creating textbox at runtime ///return its name } void PerformCalcualtion(string … | |
Re: Create project from type VC++ and add its output assembly to C# project. I'm using VSTS 2008 which permits that, I don't know what version you're talking about. | |
Re: Need to export MySQL database to ?? I recommend you to use SQL Server Integration Services [B]P.S: Destination ought not to be MS SQL Server[/B]. | |
Re: It's up to you, all end with the skills you can grow them up, if you're smart you'll do anything by anything. But I should say something C# is full of features and I like it, the most programming language has community based solution. That's my opinion [B]personal opinion[/B]. | |
Re: Use Setup wizard project to create an package for installation. | |
Re: You can add different RichTextBox to handle this, and append data to the RichTextBox programtically. | |
Re: Serkan always overrides technical thread to personal one, really if you are banned I'll upset not having you around, but still I'll be sure there are no more replies in threads :D | |
Re: Please use code tag :) [code=C#] static void Main(string[] args) { //code to call the method Getnames and print the value of name here.. Demo d = new Demo(); List<MyTest> m = new List<MyTest>(); d.GetNames<MyTest>(m); } [/code] | |
Re: You'll need to play with DataBound Event Handler, read this post [url]http://www.csharphelp.com/archives/archive151.html[/url] and try to apply the concept on your case Google result: [url]http://www.google.com.eg/search?rlz=1C1CHMB_enEG312EG313&sourceid=chrome&ie=UTF-8&q=databound+grid+combobox+C%23[/url] | |
Re: How you bind your ComboBox? Because we may wrap it by custom class and get unique items | |
Re: You're working in web browser so you have full control to handle what to get and what to not. but if you're relay on some made controls you need to see if they have any interfaces to those functionalities so you can call them from external application. | |
Re: I don't really offend you try this [url]http://www.lmgtfy.com/?q=blowfish+cipher+c%23[/url] | |
Re: To get object type [code] Program p = new Program(); Console.WriteLine(p.GetType().Name);//prints Program [/code] To get object base type [code] Program p = new Program(); Console.WriteLine(p.GetType().BaseType.Name);//prints Object (the base class of Program class) [/code] To compare between two objects you just need to use string.Compare.... | |
Re: Exactly like what adatapost have said, but I think you built your query well then please attach your solution to know where your problem in. | |
Re: I've looked on their implemetation (DirectoryInfo implementation) and they format string (Directory path) in the constructor like to get the full internal path and so on, so you don't have anything. the idea is Windows Platform hasn't such type of directories. You may use any open source of C# which … | |
Re: Read this post [url]http://blogs.msdn.com/coding4fun/archive/2006/10/31/912569.aspx[/url] and compare its code with yours | |
Re: Because it's big thread I didn't read all, but you can tell us what the specific problem you face, like I've problem that my data not updated and show us your code with little explanation and using Code Tags. But, It's very hard to solve a bulk of problems + … | |
Re: I think you misuse Remoting if you come to ask this question, because as Windows service is running you can hold variables on it (I assume you are holding connection strings, user name, etc..). That was abstraction, let's move to the next step, does both applications running on the same … | |
Re: Here you are: [url]http://fcihelwan.wordpress.com/2007/08/30/object-relational-designer-or-designer/[/url] [url]http://fcihelwan.wordpress.com/2007/11/20/object-relational-mapping-orm/[/url] Read those then we can discuss more about ORM | |
Re: To resize image [url]http://www.vb-helper.com/howto_net_image_resize.html[/url] | |
Re: Compare between the two tables by Database engine using Outer join then the result would be shown in the Grid. | |
Re: Modify it [code=C#] string str = TextBox1.Text; int l = str.Length; int i;http://www.egyhat.com/radio/ for (i = 0; i < l; i++) { if (str[i] == ' ') { Response.Write("Invalid"); } else { Response.Write("valid"); } } [/code] The reason you str[i] returns char and you assign it to " " (string) … |
The End.