hannesaj's Q&A profile
SQL Server Question about tempdb size
I a have a question about size of tempdb. Getting the size from different sources looks controversioal. My tempdb consists of 3 files (2 data files + 1 log file) In database properties it shows total size of 153 GB However, if I go to tempdb/Tasks/Shrink/Files in SSMS (without actually shrinking them), I get different picture. I collected information from that dialog box into the following table: File Type Logical Name currently allocated space --------- ------------ ------------------------- Data tempdev 50 GB Data tempdev2 5 GB Log templog 10 GB ------------------------------------------------ Total: 65 GB If I check these values from the server's Windows Explorer, it shows for same files, respectively: ...Show All
Windows Live Developer Forums Custom Backgrounds??
How can I get a custom background. I went on Hack MSN Spaces, but his tutorial only works on Msn Space not Live spaces. And It only works for those 2 modules thing. Mine is 3. So can anyone help me ...Show All
Visual Studio Team System Error when installing SP1(beta)
Error: Product: Microsoft Visual Studio 2005 Team Foundation Server - ENU -- The application pool identity required by Team Foundation Server (TFSWSS) for the content virtual server is not using the Team Foundation Server service account. To proceed, you must exit setup, set the application pool identity (TFSWSS) to use the Team Foundation Server service account, and then run setup again. I have checked and the TFSWSS app pool is running as "SE\TFSService" ( my service account) Any ideas on how to proceed Can I check what account that the setup think TFSWSS should run as /Andreas Ohlund Have you verified that the AppPool is running You can check this using the IIS Manager (you ...Show All
SQL Server Need Help on this SQL Statement
Hi All, sqlLstProds="Select * From PRODUCT_DEF "&_ "WHERE productID IN(Select productID From PRODUCT_DEF WHERE (IDProductCriteria = 5) AND ([Value] = '"&getSession("ModelID")&"')) "&_ " Order By IDProduct, IDProductCriteria" I have the above SQL Code in an ASP page. This queries the Product_Def table, however there is also a table called Product_sType, the primary key in that table is productID which corresponds to productID ub the Product_Def table. I need to add to the query a where clause, where active = 1 active 0 is obviously discontinued products, how would I do this So basically, it's somewhat of a join of some sort, like select * from Produc ...Show All
Architecture Selecting a good UML tools
Hi Paresh, You might want to look/post at discussions at comp.software-eng newsgroup - you could find discussions containg UML in that group from google via: http://groups.google.com/group/comp.software-eng/search q=UML&start=10 & You should be able to get some good comments from that group. also look/post at the newsgroup comp.object ...Show All
Windows Forms Help with strange error message - dataGrid
I have a dataGrid in my app. I set its dataSource to my arrayList and all is well. I then unset it's dataSource, refresh it's GUI and then set it to another arrayList. If i then highlight some text from one of it's cells and then press a button(dataGrid loses focus) i receive a MessageBox saying: Error when committing the row to the original data store. Index was out of range. Must be non-negative and less than the size of the collection. Parameter name: index Do you want to correct the value My data grid is read only so im not even changing any of it's values. Anyone got any ideas Im using the following code, anyone see anything im doing wrong public void BindArrayListMessage ...Show All
Windows Forms Publish ClickOnce project with Team Build?
Does anyone have any examples of how to create a Team Build BuildType that publishes the project similiar to the way you manually do it in visual studio I already have the BuildType created and working (it gets kicked off on a schedule). I've also created a BeforeDropBuild task that does GenerateApplicationManifest and GenerateDeploymentManifest that also works. This was a bit confusing -- when the BuildType is run not through the GUI many of the properties don't exist and most of the examples appear to assume they would. Anyway, these steps work in that the build does not fail. Somehow I need to publish the manifest I suppose, but I can't find any examples of how to do it. I'm not even sure I know the right questions to ask. Any help w ...Show All
Visual Basic Reading .doc Files
Hi, I'm fairly new to VB and learned on VB 2003. I just upgraded to VBE 2005. I'm trying to make a multiple document reader I'm trying to be able to read MS Word documents, Works documents, Text files, Rich Text files, and an AutoCAD lisp file(its basically a text file). I was just reading the article titled " Accessing information in an opend word document ". Is that anything like what I'm trying to Do The main thing I need is to find out how to access these Items. If anyone can point me in the right direction it would be appreciated. Thanks in advance for the replies. I want to thank you very much Miss Cindy Meister (Word MVP). that looks like just the place(s) to get the information I need. thanks ...Show All
Visual Studio Team System Problems to access TFS from Visual Studio Team Suite
Hi, We are having a pilot projekt for a development environment for our students with Visual Studio Steam System. The students want to access the TFS both from the terminal server and the lab rooms. Here the scenario: 1. One TFS server 2. One Terminal Server with VS Team Suite SP1 + Team Explorer + SQL 2005 SP1 3. Windows lab rooms with Windows XP SP2 clients + VS Team Suite SP1 + Team Explorer SP1 4. All computers are members of an AD domain and we are using domain credentials for the user accounts. We are not able to access the TFS and the SQL DB from our Windows XP client maschines. When starting VS Team Suite on the clients the following happens. 1. When trying to add the TFS by using "Connect to Team Foundation Server ...Show All
Visual C++ Can't link a managed wrapper (mixed managed/native) assembly to a static lib???
Unless I'm missing something, this seems like a fairly major limitation... I have a mixed manage and native "wrapper" assembly project that wraps a third party's static library. We do not have a DLL version of the third party library, just the .lib. In VS 2003 with managed extensions for C++, the project compiled and linked fine. Now, after having converted all the managed extension stuff to C++/CLI, I have it all compiling. However, it does not link because of multiply defined symbols (LNK2005 error). It appears the static library had linked (statically) to libcmt.lib When linking my project I get 20 or so linker errors like this: libcmt.lib(fflush.obj) : error LNK2005: _fflush already defined in MSVCRTD.lib(MSVCR80D.dll) My ...Show All
.NET Development Could not find installable ISAM.
I got the "Could Not find installable ISAM error" while uploading an Excel file in my application. The connection string uses the Microsoft.Jet.OLEDB.4.0 provider with following parameters Provider=Microsoft.Jet.OLEDB.4.0;Excel 8.0; Extended Properties=HDR=No; IMEX=1. I checked the registry entries as mentioned in the "Retrieving Data from Excell 2003-Could Not Find installable ISAM" post and even registered the "Msexcl40.dll" again. Even then I got the "Could Not find installable ISAM error". So I restarted the IIS Server. Even then the problem persists. What else could be the problem Thanks and Regards, Little I see some problems with the syntax. Tr ...Show All
Windows Forms Progressbar WinForm popup
How can I make a progress bar popup in C# WIN form when a button click event has raised and close it when my code has gone to a certain point farshad.A wrote: Good idea, except you must call "show.Show()" ; since ShowDialog() stops your main form until the modal shown one is closed. And if you wish the progressbar to be on top, you may want to change Form_Progres's TopMost property to true. Cheers, farshad Thank you both for answering, I have done like farshad suggested and it woks fine but the progress bar and a label that I have wont show, the window itself shows but not the controls, have you any idea why that is ...Show All
.NET Development Webservice C# issue in VS 2005
1. I have Employee business object class developed in C# which is referenced both by client and Web Service project. 2. I have webservice class with method to add employee. Here is the Windows Forms c# client code public void AddEmployee(Emp emp) { localhost.Employee.Emp obj = new localhost.Employee.Emp(); obj.AddEmployee(emp); } Here is the Web Service method public void AddEmployee(Emp emp) { //Calls data class to add employee } Question: 1.Do i need to specify the Employee business object class with serializable attribute.Is that mandatory 2.In the web service,Web methods call data layer classes.Do the data layer classes also needs to have Serializable attribute specified in the class. 3.I generated prox ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Mapping a texture on a sphere, all usable by XNA - which format
Hello all, I'd like to map a JPG file to a very simple sphere to create a planet that can be seen in XNA. I've tried using Blender to make this very simple sphere and I was successful when I exported it to a .x file format (btw, must I use the saving option that says Left-handed system I know that it won't change anything for a sphere, but I'd like to know for more complex model that might not have that symmetry). I've tried mapping an image of the Earth's surface to the sphere and was successful in Blender (it renders correctly, using a spherical mapping). When I export it to .x, it seems that the linking information between model and texture is lost and I can't reproduce it in a XNA program. I could have access to MilkShape or Wings3D al ...Show All
Software Development for Windows Vista How to set the include path?
Hi all, I downloaded a sample directshow project. I've downloaded the directshow sdk(directx update) and added the inlude directory in sdk to the project using Tools-->Options-->Projects and Solutions-->VC++ Directories. But when I built the solution, I had the error: fatal error C1083: Cannot open include file: 'dshow.h': No such file or directory How to solve this problem Thank you! ...Show All
