Marcell's Q&A profile
SQL Server SQL Server Management Studio Express
Just wondering if there is a release date for the SQL Server Management Studio Express. I know that the CTP came out, and I have been working with that, but haven't seen an update that indicates the product has been released, or that the link to the CTP was cleaned up. Regards, Flavelle We plan to release Management Studio Express at the same time SQL Server 2005 SP1 is released. I don't think we've publicly said exactly when that will be. I believe the problem with the link was that the file cache at some of our web hosting subcontractors hadn't been updated. This was supposed to have been fixe ...Show All
Visual C++ C1083 Permission denied
Hi, I'm getting this C1083 Permission denied error when I try to build an application (console type) project A which includes files from another project B (static library type). The B project includes files from a math library C (GSL). When I build the static library B, I have no problems. The problem is when I try to build A, and it complains about having permission denied to access a folder which turns to be the folder containing the .h files of C (included by B). I hope this is clear enough, if not please tell me. I'm using XP Home Edition and files have no permissions at all. Here is the text: 1>c1xx : fatal error C1083 ...Show All
Software Development for Windows Vista Changing DependencyProperty at Runtime
There have been a few threads that have been dedicated to design time issues with changing DependencyProperty values. We have come upon a runtime problem with persisting a DependecyProperty. We are working with StateMachine workflows and we have one workflow invoking another by use of an activity. In the Execute method of the activity, we start the other workflow and store the Guid in a DependencyProperty. The PersistenceService does its thing, but when the workflow is activated again, that DependencyProperty is null and the Guid we assigned it wasn't persisted. Can anyone help regarding this issue Thanks. Mike ...Show All
Windows Forms Where can I find IE Ver 5.00.3300.0000?
I was thinking that...but after searching the ms site... i finally just clicked on forums and it brought me here.... so I said - Guess ms is alwasys telling me how trustworthy they are. I will just trust them and assume the link will get me there. I found ie 5.01. now my ******* camera considers my computer powerfull enough to view pictures. (insert joy remarks here). Seeing as this is a forum for programming..... Could anyone (in general -I'm tech support -for IE no less haha...but not programmer) why would an HP camera (printer's too) give a dam about IE in any way shape of forum If I had a stand alone computer, i'd be up the creek. ...Show All
.NET Development dll file is getting locked even after the domain in which it is loaded is unloaded
hi, i am having a problem with dyanmic loading of assemblies.the problem is that the dll file is getting locked even after the domain in which it is loaded is unloaded.The code below shows a dll search being loaded in domain appdomain.then we get a specific type from the dll and unload the domain thereafter. Now if we want to replace the search dll or delete it ,it is shown as being used and hence can't be deleted. But unloading a domain should have made it free.Does anyone have a solution for this behaviour .please help.code is as follows =============================== AppDomain appdomain = AppDomain.CreateDomain("loader domain"); ...Show All
Visual Basic How to?
Hello, I have just downloaded this new Visual Basic Beta thing, I have made a window containing some words, and was wondering how I could 1. Hide the window from the ctrl alt del list. 2. When i press the button it opens another window (a duplicate) 3. Be not able to close the window (remove the X) 4. And do anything else which would disable you from closing the box (disable Alt+F4 or something) This is my first program, it's just for fun to see if it would work CHeers You didn't understand what I said. First of all I'm a woman. Second, since win95 and win 98, it isn't possible to ho ...Show All
SQL Server Computer Memmory Resources consumed after generate MAAS Cubes (SQL 2000)
Dear All, I have created some cubes with Analysis services (sql server 2000 Personal edition) After processed the cubes if I restart the computer seems like the memory resources are being consumed by the msmdsrv.exe and the msmdvldm.exe, it takes about 30 minutes to the system becomes available; I would like to know how if theres a way to configure my OS and the MASA sides to have better response. SQLSERVER 2000 Personal Ed. SQL Service Pack 2 Applied 512 MB RAM Pentium 4 Windows XP 120GB Hard Disk Any help will be appreciated, Thanks in advance, Ruben Figueroa Senior Analyst Programmer Quick Photo Intl. rubenfiguero ...Show All
.NET Development 'Root element is missing' on XMLDataDocument.Load
I'm trying to append a dataset's xml to an existing xml file that was created from the first encounter with the dataset. The application is an online scholarship application form. It needs to collect student data into a single file for downloading at the end of the day. I've been beating my head against this simple problem for several days now and am out of ideas. _ds as DataSet comes from the web form. Here is the extremely simple code that doesn't work. The 'Root element is missing error' occurs on the line: docSngl.Load(strmMem) The MemoryStream object has the correct length after the WriteXML. If Not File.Ex ...Show All
Visual Studio Express Editions Font Problem
Hi, I tried to set a post script font to a text field. But the font name itself not coming in the fonts list. (tried for local language atm fonts pfb ) Please clarify how to set this. Hi, Visual Basic 2005 only supports TrueType and OpenType fonts - PostScript fonts aren't supported. Steve Hoag Visual Basic Express ...Show All
Windows Forms Hide certain standard control's properties from designer
Hi, I created a custom control which inherited from Forms.Button. There's no problems to create & expose custom properties but... I cant find anyway to hide the standard Button's properties... Note that I'm using J# Thanks override the property, apply the Browsable(false) attribute. . . call the base property to access it. this is c#, but the approach should be the same: public partial class MyTextBox : System.Windows.Forms. TextBox { [System.ComponentModel. Browsable ( false )] public override string Text { get { return base .Text; } se ...Show All
SQL Server Conditional Split to send top 10, top20, and top 30 in three different flows ?
I have dataflow that i wish to split. The recordset that i uses is sorted by the Sort Task. After that i'll like to take the Top 10 records and send in one direction, then ill like to take the top 20 and send in another direction and finally Top 30 in a third direction. How can i do that Thank you Jamie! Your "SSIS Nugget: Select Top N in a data-flow" worked great. I have one question though - I couldnt get the " Output0Buffer" to work, but when I changed the SynchronousInputID for the Output to 0 it worked, what is the connection between the declaration of the Output0Buffer and the Synchronous se ...Show All
Visual Studio Express Editions Tool tips in statusstrip
I start working with VB 2005 EE. But I find one trouble.I was put StatusStrip control on design panel and ShowItemTooltips property switch on true. Then I put the Tooltip control on design panel and on the form add some controls. I fill Tooltip on ToolTip1 property with text. I see hint inside popup baloon, but not in the Statusstrip control. What i do wrong As far as i can see, the ToolTip will be displayed in either a Balloon or a PopUp "window" (depending on the "isBalloon" property). If you would like to use the StatusStrip control to display a certain "ToolTip" then you co ...Show All
Visual Studio Express Editions ClickOnce Problems
I have a small windows test application that I'm attempting to deploy. I can deploy it to my hard drive, transfer it to a memory stick, and successfully install it on another computer. I can deploy it to a website, when the website opens and I click on Run or Install (depending on the type of deployment) a new webpage, myTestApp.application, is displayed. The page is an XML file. That is as far as the deployment goes! There are no error messages and no clues to help me solve this problem. Your suggestions would be greatly appreciated. Hi Grandpa - you skilled user...you. Could you have glossed over the problem I keep reading it a ...Show All
Visual C++ error when linking a Fortran library to c++ code in VC8 (.NET2005)
I get the following error when i try to link a fortran library to a c++ code in .NET 2005. LINK : fatal error LNK1104: cannot open file 'libc.lib' the code was working fine when built using .NET2003. also, when I do not try to link the fortran library (just to see if that was the cause), it builds the exe without any problems. i don't even know how to begin addressing this problem...any help would be appreciated. please let me know if u need any more information thanks, Julian. Julian V wrote: I understand that libc.lib is part of the old runtime libraries which is not present in th ...Show All
Windows Search Technologies Outlook 2000 crashes on exit with WDS installed
I ran into 2 problems with WDS version 2.06.0000.2083. I have just installed WDS for the first time on XP SP2. I don't have MSN Search Toolbar installed. My Outlook setup doesn't use Exchange and just connects to my ISP to retrieve email. The problem I have is that Outlook crashes on exit. I can post memory dump if necessary. Additionally, if I let WDS finish indexing while Outlook is up, WDS doesn't ever find anything in the email messages. Kind of defeats the purpose of Outlook integration. Are these known issues that I ran into If so, when should we expect to have a new version out that addresses Outlook 2000 integration Thanks. ...Show All
