ANAANA's Q&A profile
.NET Development What should be done first? Class or E/R?
Does there exist a converter from e/r to class diagrams If not I have a question in how to make classes. Suppose I havea Person table and a Role table, the person may have many Roles, so I have an intermediate table that relates rows from both tables right I am customed to make E/R diagrams and not classes, How would I make those 3 tables on a class diagrams Thanks Creating ER stuff, also as XSD, gives u general view of the system, like ...Show All
SQL Server installation of SQL Server 2005 CTP (June) error 2147944003
During installation of SQL Server 2005 CTP (June) I get the error 2147944003. This error refers to the installation of tools (client components). The server components seem to be ok., services are running. My os is Microsoft Windows XP Professional Service Pack 2 (Build 2600). Could anybody help me, please -------------------------------------- This is a part of summary.txt: Machine : WBG5 Produ ...Show All
Visual Studio Express Editions Check if textbox is a Valid Integer from 0 to 10000.
How can I check if a textbox contains a number that is a valid integer (just numbers) and that its a number from 0 to 10000 The way i did was in loops which would freeze the program for a few seconds. Any other ways No, tryparse is a static method dim tst as int16 if int.tryparse(text1.text, out tst) then end if http://windowssdk.msdn.microsoft.com/library/default.asp url=/library/en-us/cpref6/html/M_System_Int32_TryParse_1_0b8 ...Show All
Windows Forms Adding user control to panel
I did a program to add multiple user control to a panel. My problem is whenever i add a new user control , the new user control will be at the top and the other previously added user controls will be moved below. I ...Show All
Visual Basic Accessing a VB6 dll from vb.Net
I have a dll supplied by an associate. He created it with VB6 and I wish to use it in a VB.Net (2005) Application. So far I am only able to see the contents as interfaces. I have done the following 1) I had to register the dll so that I could add a reference to it 2) Added the dll as a reference 3) imported the dll reference into my class 4) imported System.Runtime.Interopservices into my class 5) created a public insta ...Show All
Visual Studio Tools for Office VSTO2005 Beta2 : Caching Data with ServerDocument failed
Hi, I'm working on a solution where a winform Application must open a VSTO Word Template, and the winform App must send a few data to the VSTO Word Template. So, I'm trying to cache a DataSet into a Word VSTO document using the ServerDocument class in the winform App. I use the following code : string model = String.Concat(Soorce.IO.Settings.WordModelPath, "RecipeChapter.dot"); document = new ServerDocument(model); DataSet dsTest ...Show All
.NET Development Hosting Windows forms in COM containers
Hello, Does Microsoft support hosting of managed controls in unmanaged applications (ex Delphi 5) Thanks Ada Basically only Internet Explorer and MFC apps. See ActiveX control containers that support .NET controls http://support.microsoft.com/ kbid=311334 ...Show All
Visual C# IP ADDRESS Problem in c#
I am developing a client server application. For to do that I opend the port 1234 in two machines and send some data to destination. UdpClient udpClient = new UdpClient(); udpClient.Connect(123.123.123.123,1234); Byte[] sendBytes = Encoding.ASCII.GetBytes("TEST"); udpClient.Send(sendBytes,sendBytes.Length); But I am working in a LAN. Means my IP address is local to this LAN. I want to communicate to the machine in a different network. ...Show All
Windows Forms Language Problem
Hello I’m a bit of a newbie and I've got a small question: I would like to know if I can change the language of my setup file I've already changed all the text to Dutch but I can't figure out how to change the word's in the form that say in with part of the setup I am like Welcome etc. Best regards, Erik van Beek Sorry for taking so long to get back to you. Try this: 1. In Solution Explorer , right-click your S ...Show All
Visual Studio Tools for Office VSTO Cypress : Where's the CTP?
In her Cypress announcement, KD Hallman said you'd be able to download a CTP from http://msdn.microsoft.com/vstudio/future/ however there's only a link to the June CTP of VSTO v3. Am I right in thinking that the Cypress CTP hasn't been added to the page yet, or are they the same product Thanks, Ant Reza Chitsaz - MSFT wrote: Hi Ant, they are the same product. The VSTO v3 CTP is the Cypress CT ...Show All
Visual Basic How to set a control's visible property.
I have a form that has a combo box with 7 items and also has 7 group boxes. Basically, I would like the user to click an item in the combo box and have the corresponding group box appear. If the user clicks a different item in the combo box, then I want the visible groupbox to become invisible, and the new corresponding groupbox to become visible. Could someone help me out with the code Instead of a hardcoded T ...Show All
Visual Studio Team System General Newb Questions
I have a few questions, that i've been googling and searching for for a few and just figured I'd ask here in one general place where it may benefit others. 1. I have two machines, one very large spaced and one not so large spaced. We want a dual tier setup of TFS with Source Contol. Am i correct in assuming that the source control database is going to end up on the App tier, therefore we want more space there than the DB ...Show All
Visual Studio Express Editions Combo Box Help (beginner)
I added Items to the combo box. How do I define these items Combo Box has a value of 1' = 100' (This is what you see in the drop down list), but I would like to convert this to 1/1200. Can I do this Define {1' = 100'} = {1/1200}. If so, how By the way I would like the 1/1200 to be an Integer(I Think) so it returns a value of .0008333 repeating. Thanks, Mike hi, combobox have a valuemember and display ...Show All
Visual C++ Not able to print Unicode Characters on Command Prompt
Hi, I want to display unicode strings on the command prompt. I am using following code: TCHAR szTemp[50]; NLSLoadString(hInstNLSDll, ID_USAGE_2, szTemp, sizeof(szTemp)/ sizeof(szTemp)); _tprintf(_T("%s\n"), szTemp); NLSLoadString loads the string ID_USAGE_2 into szTemp. But it prints nothing from first unicode characters :( It prints the string before first unicode character w/o any problem. I changed the locale also accord ...Show All
Visual C# Export to PDF
Hi, How can I export some data to PDF files Thank's Alexei Hi, I have checked iTextDotNet... It doesn't work clearly... It have some bugs and it works for some data slowly... So I have found another solution of Gios Pdf.NET... Thank's to Gios for this solution... It's C# library and also it open source... You can get it from www.paologios.com ... Thank's Alexei ...Show All
