kicks_joy_darkness's Q&A profile
Windows Forms TextBox controls in Components
My buttons show in my component when i add it to my windows form but my textbox controls when i add them to the visual designer and i go to my windows form i see the button controls but i do not see the textbox's any reason why that is So, you right click the project and selected the "Component" option from the Add menu In this case I'm surprised that you see the button... you should not see a thing. Shouldn't you select the "User Control" ...Show All
Windows Forms Problem with MainMenu and Minimum Size of form
I did a search online and on this forum and couldn't find a solution anywhere. I have a form with a MainMenu control and I wanted to set the form's minimum size. After setting a minimum size and starting my form I notice that its height has increased. It has added extra space at the bottom. I've tried changing the minimum size and the size of the form around but it seems to always add around 25 pixels of height to the bottom of the form if I have a MainMenu control and a minimum height for the form. Its a minor problem, I know, but I am interested if anyone has a solution This user has not been on since the post...I recommend that you reconstitute the issue question describing the situation better... and ...Show All
.NET Development I get the following event log warnings when installing .NET 3.0 -- please help
I get the following warnings in the event viewer when trying to install .NET 3.0 on Windows Server 2003 Configuration section system.serviceModel does not exist in C:\WINNT\Microsoft.NET\Framework\v2.0.50727\Config\machine.config. Configuration section system.runtime.serialization does not exist in C:\WINNT\Microsoft.NET\Framework\v2.0.50727\Config\machine.config. Configuration section system.serviceModel.activation does not exist in C:\WINNT\Microsoft.NET\Framework\v2.0.50727\Config\machine.config. A configuration entry for BuildProvider System.ServiceModel.Activation.ServiceBuildProvider, System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 does not exist. All compilation assembly nodes do ...Show All
SQL Server The merge process is cleaning up meta data in database 'xDatabase'.
Hi all, When I get this message "The merge process is cleaning up meta data in database 'xDatabase'." at distributor MS SQL 2005 replicator monitor on one of his suscription, this proccess generate so proccess charge to the suscriber that users note difference in performance. I wonder if exist a way to change some kind of parameter for this proccess run on specific schedule Any help would be appreciated. other info I had suscribers that only replicate in one way, maybe this metadata is causing this overcharge. Hello, Setting -MetadataRetentionCleanup to 0 means Merge Agent process won't cleanup the metadata during the sync process. Therefore you probably need to call sp_ ...Show All
SQL Server need matrix report advice
I have to create a report that displays monthly actual and forecasted values by project with a variance column for the current month. Has anyone ever attempted something like this I am having a difficult time determining how the data should return from the procedure so that it can be display in the following format: JUL AUG SEP OCT NOV DEC JAN FEB Actuals Var Forecast PROJECT A 10 20 15 -15 30 15 41 26 47 64 PROJECT B 15 10 25 5 20 20 10 5 10 10 I need to use a matrix since the number of columns can vary. ...Show All
Windows Forms OnClick preceding OnEnter
VS 2005 / XP Pro -- both with all service packs It is my understanding that the OnEnter event should precede most (all ) other events for a control but... Our application has a form on which is a Tab-control. We load a number of controls dynamically onto this Tab-control -- ComboBoxes, CheckListBoxes, and TextBoxes. We haven't checked all the Tabs, but on at least one of the Tabs the OnClick/OnMouseClick event precedes the OnEnter event for the ComboBoxes and CheckListBoxes (but not the TextBoxes). Controls that are added at design-time on other Forms' Tab-controls have the events fire in the expected order -- OnEnter and then OnClick/OnMouseClick. Is my understand of the sequence of events erroneous or can someone g ...Show All
Visual Studio Express Editions Publishing to install on offline computer
I need to install my program on a computer that doesn't have the internet. When I went to publish it I changed the Install Mode to "The application is available offline as well" but when I went to install it, it tried to connect to the internet to install .NET Framework 2.0. So I checked the prerequisites and .NET Framework 2.0 was checked. I unchecked it but then when I went to install it, I got a message asking me which program to use to open the setup file. Anyone know what I can do Because ClickOnce is so ridiculously simple... it leaves out a great make things, one of which is including redistributable files, instead it uses a bootstrapper to try to install those files if they do not alread ...Show All
Visual C# form closing problem
I could not invent a realistic title for the post since I do not know how to name that object. On the top border of every form there is a small button on the right that closes the form. It is next to Maximize/Minimize button. I wish I knew a special term for it. I want to prevent my form from having the option of being closed by pressing on it. I want to always close it via a custom close button. How can I do it The reason for this is as follows. I have a stream of records that accumulate in memory and when the number of rows in a DataTable reaches a certain threshold a portion thereof is being sent to SQL Server. About 2000 records remain in memory. When the process of downloading ends I may still have some records that are unsav ...Show All
Visual Studio Team System Adding FxCopCmd.exe to Post-build event command line options
Hi, I have followed the steps for VS 2005 integration at this page: http://www.gotdotnet.com/team/fxcop/Docs/FxCopCmd/FxCopCmd_VS.html and everything has worked correctly. I wanted to push the integration a step further. So I opened one of my project's properties and under Build Events / Post-build event command line I entered this information: "C:\Program Files\Microsoft FxCop 1.35\FxCopCmd.exe" /p:"D:\Astrum Development\XStrata\Vega Nickel\AstrumFxCop.FxCop" /c When I build my project, after my project has been built, it starts FxCop, performs the analysis it tries to write the error message, but instead the output windows shows an error message saying : Cannot load PDB file. The results from FxCop aren't displayed, and oftentimes thi ...Show All
Visual Studio Express Editions array for IP address range
im trying to get an IP address range into an array so that i can scan for example 192.168.1.1 to 192.168.1.12 the array that i created was in vb6 and even that one errored out because of the "." between each octet.. Im not using vb6 anymore, just express Hi... I think the following will work for what you're needing...might need to tweak it a bit here and there. Hope this helps! Dim ipAddresses As New ArrayList Dim endAddress As String = "192.168.3.14" Dim currentAddress As String = "" Dim firstOctet As Integer = 192 Dim secondOctet As Integer = 168 Dim thirdOctet As Integer = 1 Dim forthOctet As Integer = 1 Do ' set the current ip address ...Show All
Visual Studio Tools for Office Can't Run a Excel Workbook application using Visual studio tools for office 2005 & C#
I have started a new project of C# using Visual studio tools for Office 2005 (Excel 2003). But I cannot run it.. While running it shows "The customization assembly could not be found or could not b loaded. You can still edit and save the document. Contact your admisnistrator of he author for this document for further assistance." Can somebody help me in this regards. Saibal NelG1, Cindy's recommendation to install the PSS VSTO 2005 Troubleshooter is an important one. By running this and viewing its results, you can isolate most of the installation issues with a customization. In the absence of more data, I'll go ahead and close this thread at this point. If your issue remains unresolved, please re ...Show All
SQL Server problem in linked server to access
windows xp pro iis 5.0 office 2002 sql server express 2005 linked server: lkdb Provider: Microsoft.Jet.OLEDB.4.0 product: Jet 4.0 data source: d:\db\test.mdb provider string: Provider='Microsoft.Jet.OLEDB.4.0'; Jet OLEDB:System database='d:\db\Secured.MDW';Data Source='d:\db\test.mdb';user id=rep; password=1234;; got error message: OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "lkdb" returned message "Could not find installable ISAM.". Msg 7303, Level 16, State 1, Line 1 Cannot initialize the data source object of OLE DB provider "Microsoft.Jet.OLEDB.4.0" for linked server "lkdb". EXEC sp_addlinkedserver 'AccessSource', 'Jet 4.0', 'Microsoft.Jet.OLEDB.4.0', ...Show All
Game Technologies: DirectX, XNA, XACT, etc. How can i find my model's frame's position
i have a human model. Its have alotofs frame like right_hand. How can i find my models frames poistions. i'mnot want to find model position i want to find frames positions is it imposible Thanks. Create an array of absolute transfroms using Model.CopyAbsoluteTransformsTo(). Loop through your Model.Meshes and you should see each of your Frames in there. The position of the frame should be: absoluteTransforms[mesh.ParentBone.Index].Transform in Object space. ...Show All
Windows Forms How to add print job to my c# 2005 project?
Hi there, I am working on a project that takes customer data from user and prints out the bill to the customer. How can I add print job to my project I have no experience at all in this. Thanks in advance. You use the PrintDocument class for printing ...Show All
SQL Server sql connecting error via tcp/ip
hello , can anybody help me iam getting the same error " target machine will activly refused to connect". while iam connecting to the sql server 2000. i didn't find the sql server listens on 1433 .how to know server is listenning on port 1433. Investigating the event log, you will see that there is an entry upon service start which shows which port the SQL Server instance is using. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
