Mashuri's Q&A profile
SQL Server Dumb questions on attribute relationships and multiple hierachy relationships
Hi, This is a couple of general questions about how to create robust attribute hierarchies. I'm sure the answera are somewhere on the MS web sites, but I can't find it. 1) How precisely does the inclusion of attribute relationships affect the design of aggregations and the resulting speed I'm led to believe that defining the attribute relationships will effectively force AS to use these hierarchies when cre ...Show All
Visual Studio Express Editions runtime error
I also get this error don't have google tool bar or McAfee Micorsoft Visual C++Runtime Library Program:C:\Programs Files\Internet Explorer\iexplore.exe This application has requested the Runtime to terminate it in an unusual way. Please contact the application support team for mor info. PPPPPlease Help The better advise is to track why the error started reproducing now and not before. I would the ...Show All
Visual C++ C4533 warning, "initialization skipped by goto"
Is this warning buggy in MSVC 7.1 or is it just a stupid warning In the example given here: http://msdn2.microsoft.com/library/f7687yks.aspx It makes sense because the condition, (1) will always be true and the goto will always skip the initialization. But the following code gives me the same C4533 warning and it makes absolutely no sense why it should. #include <iostream> using namespace std; struct TOILET { &n ...Show All
SQL Server Wich datatype?
Hi Group, Wich datatype can I best use for a number with several decimals (can be anything between 1 and e.g.10) If the number has 10 decimals the customer needs the EXACT numbers. They couldn't explain why.... TIA Regards, Sander use the Decimal or Numeric data type! float and real data types only store approximate data which loses precision when the decimal part of the data cannot be exactly represented using ...Show All
Visual C# Capturing KeyPress "Always" !!
Greetings... My Form needs to capture the KeyPress and KeyUp events. I did set the KeyPreview property to true and it works almost all the time ! When the application starts, it doesn't work... I fist need to touch something (i.e. give the focus to a control) so that the key press and up events could be treated properly. How can i go around this Thanks ! Acoquinar Hi, since it's a good idea anyways to have ...Show All
Software Development for Windows Vista Extending the WinWF Designer
If one were to want to extend the WinWF designer by, say, adding a friendlier, knowledge-worker-oriented UI on top of it, what would be the recommended way of doing so I know I've read here and there that this is an expected scenario for WinWF, but I must be searching with the wrong keywords because I can't seem to find much information about how to do it. So far, the most viable solution I've come up with is to build a DSL that would transf ...Show All
Visual Studio Team System No code coverage in Team Build Beta 3
I've set up a team build to perform tests for my project. The problem is that Code Coverage is never being ran, even though localtestrun.testrunconfig has converage enabled and it works correctly when run through Visual Studio. Anyone got any suggestions Hmm, how to explain this Did another build this morning and everything is working correctly. TFS just seems to be really slow at detecting changes ...Show All
SQL Server Object variable assigned to parent package
Hi, I have a child package which executes a sql query and retrieves back a result set assigned to a object variable. Then i need to assign this object variable to a variable in the parent package, where it will be used as an ADODB Enumerator in a ForEach Loop Now, if this variable was, for example, a string, it'd be quite easy to put in a script task dts.variables("x").value = dts.variables("y").value where x is the variable in the parent packag ...Show All
.NET Development Could I pass data between threads?
I create a DataTable in one thread, when I pass it to another thread, the data in it seems corrupted. How can I pass data between threads Thanks! Hi, If you dont want to declare a class level DataSet variable,you can just pass the Dataset object to a method in main thread. using System; using System.IO; using System.Threading; namespace ThreadMethod { class Class1 { Class1() { Thread tThread = new Thread( new ThreadStart( ...Show All
SQL Server execution cached schedule
Hi, when setting the temporary cache schedule, is it possilbe to set it to cache at 8am, 10am, and 3pm everyday it seems i can either set it to cache every n hrs or once daily only. thanks. ...Show All
.NET Development Looking 4 "Dataset provider"
Hi, I'm looking for a ".Net Dataset Provider" to use in (old) ADO connection (VB6), so the connection will work with the Datset instead working with some DB. I've searched the web, and all I found was such a provider but for Delphi. Has anyone came across such a thing thanks, Oren. You might be interested in the assembly I've been working on at http://www.queryadataset.com . Besides INNER JOINS, it lets ...Show All
Software Development for Windows Vista Vista Build 5270 not having a succesful install
Even though I was able to get Vista build 5231 to install without a problem on my Dell D800 (60GB Hard drive, 2GB RAM), I have not been able to do so with the 5270 build. have tried everyway of wiping my drive completely clean but it does not work. I get 3/4 of the way through on the install bar, then the bar disappears and the the computer freezes. If I reboot it by holding the button in, it will come back but will not boot unless I have the DV ...Show All
Visual C# sentence case string
How to convert uppercase string to sentence case string in C# e.g. input: HI ALL! I'M A NEWBIE. PLZ HELP! output: Hi all! I'm a newbie. Plz help! Here, I just wrote this as this made me curious. I know this could probably be done a lot better by iterating over a chararray and changing the case depending on flipping a bit to indicate it was necessary but I was lazy and used strings: /// <summary> ...Show All
Windows Forms What item to choose in order to create a derived control
Hi all... The question may have a simple answer but I am very confused. If I want to create a TreeView derived control, what type of item I need to add - a class, a component class, a user control or a custom control. Actually I used Component class item and it seems to work, but since I am starting I don't know If I will get stuck in the middle of the way. If I want to create a BindingSource derived control, do I ...Show All
Visual Studio New project type with "virtual" items using managed package framework
Hi, I am creating a new Visual Studio Project Type with VSIP 2005 Beta 1 for VS 2005 Dez CTP. This project type should expose a hierarchy whitch mainly consists of nodes which don't map to physical folders or files, but to items in a separate xml file. This Project Type should be implemented with the VSIP Managed Package Framework Classes but at the moment I don't find the right approach for that, since the documentation is very s ...Show All
