borba777's Q&A profile
Game Technologies: DirectX, XNA, XACT, etc. Help please!
I am having this problem when im installing DirectX 9.0c (tryed redistribution also) when it reachs 'Installing Components' I get an error saying ''A cabinet file necessary for installation cannot be trust'' please help http://msdn.microsoft.com/directx/sdk/readmepage/default.aspx Specifically.... "A cabinet file is necessary for installation and cannot be trusted." ERROR during installation. This problem happ ...Show All
Visual Studio 2008 (Pre-release) TextBox with rounded corners
Hello! Is it possible to make a textbox have rounded corners I think of something like the Border's CornerRadius, but I may see that a TextBox does not have any CornerRadius. I hope some of you may provide me with a hint. Best regards, Henrik Dahl You should look what you can achieve with a template for your textbox. When I saw your question, I was curious, so I tried something. You can edit ...Show All
Windows Forms Start an Application with Process.Start once Deployed
After publishing two different window form exe projects with vs2005. Call one App1 and one App2, both have been deployed to a client. How would I start a process for App2 from App1 In most cases App1 would start the process with the following code: Dim myProcess As Process = System.Diagnostics.Process.Start(ProgramPath, Arguments) Where ProgramPath would be set to ProgramPath="C:\DotNet\App2\bin\App2.exe" Once published ...Show All
SQL Server regarding XML export
Is there any process to load the data from table to an XML document using SSIS packages any answers reagarding this is helpful. Thanks for your information. I came to know that there is process to generate the xml file using SQL "FOR XML "clause in sql server2005. If we have to create an XML file using different databases we will go for joins in sql statement. If the query is too lengt ...Show All
Windows Forms how do i Auto refresh a datagridview
i have a small app that tells uses how many customers are waiting for them and what time they arrived but i cant think how i could get the view to refresh itself after say 15 seconds, cheers steve j Add a Timer control to your Form. In the Form Load event handler set the Interval property of the Timer to 15000 ms and do Timer.Start(). In Timer Tick event handler just refill your TableAdapter. The DataGridView will refresh automatically. ...Show All
SQL Server Implicit conversions using UDTs
I've written a CLR UDT that basically wraps a COM FILETIME. While using and testing this UDT, I've come across some unusual behavior that I can't seem to track down. My question is this: When I make the T-SQL statements DECLARE @ft dbo.MyFileTime SET @ft = 0x0123456789ABCDEF What's happening within the SET statement My first surprise was that it succeeded. Then I thought, "The hex value, I understand, is implicitly a BI ...Show All
Visual C++ aboute <iostream>, VC 2005 doesn't see thet header file
I have Installed VC 2005, and when I write some little Programm, the compilator doesn's see the header file (iostream), It have just one header file "stdafx.h" in the project's folder, whot can I do, Pleas explane me... ( maxo72@mail.ru ) Please specify exact details. What is in your file. What error are you getting. Make sure you have the #include for <iostream> _AFTER_ the include for stdafx.h. Ron ...Show All
SQL Server Bulk Insert Unicode
Good day, We are using bulk insert with a formatfile to load a text file into sqlexpress. One field in the text file contains non-ascii (unicode) charaters and the corresponding database field is nvarchar. When the record and row are specified in the format file as: <FIELD ID="23" xsi:type="CharTerm" TERMINATOR="\t" MAX_LENGTH="400" COLLATION="Latin1_General_CI_AS"/> <COLUMN SOUR ...Show All
.NET Development ??? MethodInfo Props are Wrong (or Docs are Wrong) ???
Hi everyone, I hope you can comment on this -- I'm pretty darned sure that either some of the MethodInfo properties are wrong or the Microsoft documentation is wrong. Please have a look at the program below. It attempts to print out the accessibility (i.e., "visibility") of each method in the class. I've included the program along with its output. The Microsoft documentation for MethodInfo tells us that the IsAssembly propert ...Show All
SQL Server raw file destination and environment variables
when using a raw file destination it would be nice to be able to use an environment variable for the filename property. like %my_extract%\data.txt instead of c:\my_extract\data.txt You could use the script task to define a SSIS variable, storing the file name, built using the environment variable. Then you can use this variable in Raw adapters by using the File Name from Variable access mode ...Show All
Visual Studio Tools for Office TSQL issues (how to populate Word document from SQL using VB)
I want in incorporate quereis in my VB.Net app to populate word documents..i am getting the data from a sql server database... Do i need to just write regular t-sql statements or do i need to begin with some type of reporting You can use TSQL to extract the data from a SQL Server database. What are you using to generate the word document Are you using the Microsoft Word Object in the COM tab in the Add Reference option ...Show All
Visual Studio Team System Adding users to [project]Contributors: Cannot access users/groups in domain
Beta 3 - Refresh Client Tier installed on Windows XP connected to TFS on Windows Server 2003 with Active Directory enabled. Domain = SIGNAUSTR I've successfully created a Team Project called SandpitTest and now want to add users to the group [SandpitTest]\Contributors. I followed these steps: 1. Logged on as TFSSETUP 2. Started Visual Studio and connected with TFS (Tools | Connect to TFS) 3. Selected the TFS in Team Explorer 4. Applied Team | Te ...Show All
Windows Forms VB.NET2003 MouseWheel on a panel?
How do I make the mouse wheel scroll a panel that scrolls I have more control than can fit, and AutoScroll set to true, so scrollbars do appear. But the mouse wheel doesn't scroll the contents up/down or left/right. I have seen that behavior before in Internet Explorer. If a div contains a scroll bar and you place the mouse wheel over the top and use it to scroll to the bottom of it, the page begins to scroll. H ...Show All
Windows Forms Visual Studio.Net after 1.0 -> 1.1 Upgrade
I'm trying to write a simple C# Oracle web project. I noticed the System.Data.OracleClient wasn't in the 1.0 Framework so I downloaded and installed the 1.1 framework. The problem is that Visual Studio is still pointed at the 1.0 frame work&n ...Show All
.NET Development Reports deployment in MS Reporting Services
Hi, When a report is deployed to MS reporting services, where is the physical storage done for the respective report(rdl) Anyone please clear my doubt. Hiral When deploying .rdl in reporting services it will go to DB. The reporting services will serialize the rdl and put in the corresponding report server database. ...Show All
