TikiWan's Q&A profile
SQL Server SQL Management Studio integration with SourceSafe
Hi, as I've read from msdn threads there is a way, to source control Stored Procedures through Management Studio, but I haven't found a step-by-step guide how to do this. What I've done is selected SourceSafe as a source control program in Management Studio, but still I don't have any "Add to source control" option on Stored procedures. Can somebody help me with this stuff Forget about using Visual Source Safe with SMSS and integrating with anything else. You can create a project in VSS and add SPs to it but they are not visible in Visual Studio. Projects created in Visual Studion are not visib ...Show All
Windows Forms DataGridView - slow
Hi, this DataGridView is really giving me headaches like you can see in all the topics I start :) This time it's about performance. I'm using a DataBound DataGridView and performance for painting on it, etc. is good as long as it contains no data :) However, as soon as I load 10 columns in it with about 200 rows, performance really drops. Resizing the form that contains the grid becomes real slow even with column auto size off. Painting selection rectangle over columns becomes real laggy, etc. Anybody got some ideas why this could be the case Or is that "to be expected" Thanks, Tom MortenFraMoss w ...Show All
.NET Development RE
Hi all, I can't really summarize my questions into the subject as it's quite complicated. This is my situation. I'm going to have hundreds of objects of the same class (to be concise, hundreds of TCP connections wrapped by the class Connection), none of which needs to be referenced--they work on their own, and will stop when no longer needed. To make the program non-CPU-intensive I used asynchronous I/O, hoping that the methods held by AsyncCallback delegates will keep the objects alive. I then wrote a tester program which seemed to perfectly support my assumption, as seen below. It starts the listener thread, initiates a TCP conn ...Show All
SQL Server How to sync database latest data with Analysis service
Hi, I am creating sql server reports using analysis service(using cubes and dimensions). After creation of cubes and dimensions for existing data I deployed it. Then I created reports on this data. Reports are generated properly for existing data. But the report is not showing newly inserted data to database (latest data inserted after deploying analysis service). Did I miss anything Or any new configuration required Newly added data is reflected in report when each time I process the cube and dimension and redeploying it. which is a manual process. How to auto sync newly added data into database with cubes Any he ...Show All
Visual Studio Team System In Create Unit Tests dialog partial class members are not there
I have a typed dataset class in which I include custom members in a partial class. When I select a custom function name in the dataset partial class and select create unit test after right clicking, the custom function in the Create Unit Tests dialog is NOT present. Hi, This is a known issue with the RTM version of visual studio. We are looking to fix this in a future version of visual studio. However, there are a number of work arounds: * Don't use nested classes -- The dataset wizard ends up using nested classes. It's a specific issue with VB, Nested Classes, and Partial Classes * Move the The file contiaining the nested class s ...Show All
.NET Development where is msxml6.h & msxml6.lib?
Where do I get these two files msxml6.h and msxml6.lib Thanks. Hello, so far your best approach (until MSXML6 SDK is released) is to use in your (C++) project: #import "msxml6.dll" and smart pointers... that's what I am doing. andrea PS will MSXML6 SDK be ever released ...Show All
.NET Development Data adapter inherited from component
Hi all, I have tried the vis studio 2005, I like the IDE verry much but theres something wrong about the new table adapter. I try to drop 20 type of table in dataset designer, the IDE automatically created me 20 type data adapter, but the problem is that adapter inherited fom component. nont from tabledataadapter, so i must invoke the fill methode one by one. currently i only use loop and invoke fill method from it's base class. any one can help how to resolve the problem If you are trying to fill multiple tables within the dataset in one go, try using a single dataadapter with multiple select s ...Show All
Visual Studio Express Editions Having problems creating a new user VWD2005
I am currently having problems with creating a new user this happens under visual web developer 2005 here is what it looks like: User Detail Sign Up for Your New Account User Name: * Password: * Confirm Password: * E-mail: * Security Question: * Security Answer: * The Password and Confirmation Password must match. Password length minimum: 7. Non-alphanumeric characters required: 1. Here are some links to assist in changing the password stength in asp.net 2.0 applications. Changing the password Complexity in ASP.NET v2.0 ---------------------------------------- ...Show All
Visual Basic password in access
Hi! Happy new year to all VB Guru out there my previous query was solved in a couple of days, I am stuck again, i am doing a project with access has a database and VB 6.0 has a front end. I want my database to be password protect i.e if any dblclick access file it must ask for a password. Can i link a password protect access file to VB if tried but error like worksheet file not found was thrown, can any VB GuRu out there let me know the steps in accomplishin the task. Also i want in my project to display mathematical formulas, has some fine guy know how to store mathematical formula( like sin2A + Cos2A=1 here '2' must be ...Show All
Visual C++ Error C2440: cannot convert from type to type
Yesterday I got this error in a new C++/CLI project: Error 1 error C2440: 'return' : cannot convert from 'ZXNewtonCP::LayoutManager' to 'ZXNewtonCP::LayoutManager' d:\proyectos\rfog\zxnewtoncp\zxnewtoncp\Config.h 17 LayoutManager is a managed class, and is instantiated in class config as a stack type, not a reference or pointer. My intention was to return a reference, but I mistake the typing and got that error. I don’t know if system can return a complete class instead a reference, but the error sounds cryptic and obscure. Public ref class LayoutManager {…} Public ref class Config { LayoutManager lay ...Show All
Windows Forms dataset to xml to rtf problem
Hi there I create xml file from a dataset and then use the created xml file and a xslt file to create an rtf file. Here is the code to generate the files: System.IO.FileStream myFileStream = new System.IO.FileStream ("c:\\mySchema.xml", System.IO.FileMode.Create); System.Xml.XmlTextWriter MyXmlTextWriter = new System.Xml.XmlTextWriter(myFileStream, System.Text.Encoding.Default); DataSet ds = new DataSet(); oleD ...Show All
Visual C++ A real challenge for you !! (Menu border)
Can anyone suggest a way to display a popup menu that has no 3D borders and looks flat like a listbox I have tried owner drawn menus but they only let you draw on the menu items and not the border. I can't find an option to turn off the 3D effects for a menu. BTW, I need solution that doesnt use C++, MFC or any libs (only pure API) If you want draw the border by yourself: use WM_NCPAINT, WM_NCCALCSIZE these message be send before WM_DRAWITEM ...Show All
Visual Studio Express Editions Compile a program as a Microsoft Windows service?
Is it possible to make a program as a Microsoft Windows service I need to know, Blair Allen Stark wrote: Yes Doh -.- How ...Show All
Visual C++ Does methods of "std::fstream" set "errno" appropriately?
Hi, Does methods of "std::fstream" set "errno" appropriately Does the mentioned anywhere in docuemnts of Visual C++ Best regards, HouZhenYu Hi, I don't see a reason for it not setting that "errno" correctly (unless it has some bug). Check this page for information of what error flags are set when using fstream members: http://msdn.microsoft.com/library/default.asp url=/library/en-us/vclang98/html/_iostream_fstream.asp ...Show All
Smart Device Development WSAEINPROGRESS
When i use the method getRequestStream() of an object HttpWebRequest, and try to write to this stream i got a socket exception. The errorcode is 10036, WSAEINPROGRESS. Dim postBytes() As Byte Dim asciiEncode As Encoding = New ASCIIEncoding postBytes = asciiEncode.GetBytes(Me.mQuery) httpReq.ContentType = "application/x-www-form-urlencoded" ...Show All
