M Minasi's Q&A profile
Visual Studio Express Editions excel
hi there ok, i hope somebody can help me, i just started. i can't find a solution in the web. i guess it is not so hard but i have no glue what i need to get started. i would like to open a excel file, read something (like read b6) and write something in a excel file (like write NAME in c8). i am using visual c++ 2005 ee. thanks greetings daniel Hello Re: excel This forum is for “Questions about Visual C++ Express Edition and getting started with C++.” For questions such as yours please use the newsgroups at http://msdn.microsoft.com/newsgroups , such as Office Solution Development -> Excell -> Excell SDK. OTP Thanks Dami ...Show All
SQL Server Deploy Package Problem
I have a package that runs fine on my dev box. I deploy it to another server and run it by right-clicking and choosing run. I get an error saying it was unable to log in to the server.(Log in failed for user 'myuser') I am using sql authenication and the connection string says persist security info = true. So where is that password stored Did I miss something when I deployed (I have other connections in the package that are windows auth and they work fine) Data Source=myserver;User ID=myuser;Initial Catalog=Staging;Provider=SQLNCLI.1;Persist Security Info=True;Auto Translate=False; (I am just trying to get it to run on the other server, I know I may have other issues when I try to run it under sql agent) Thx ...Show All
SQL Server problem in the calculation of totals SOS
hello to every body. well i have a strange problem. i have all the partial values of some elements in a hierarchy correct but in the caclulation of the total sql server gives me a wrong result. when i make the calculatin by hand i get another result. and this is only for a specific perios for example (june 2006). for alla the other periods i get the right results.. Can anybody help me What is the calculation for the amount shown in the sample data - or is it just a cube measure with "sum" aggregation And does the "father/mother/child" dimension have a many-many relationship to the measure group for the amount ...Show All
Windows Forms How to get the next item?
If the user have selected an item, how I can work with the NEXT item (LISTVIEW) ...Show All
Windows Forms Binding image
Hi! i have a problem with viewing images in such contorls as DataList, GridView or FormView. I create new SqlDataSource, connect to my database, then I create DataList control and choose this DataSource in it. Then I edit DataList's item template and set the Image componet. Then I click Edit DataBinds and there set bindable property Image Url to be bind to the Image column. When I run the application I have red crosses X instead of pictures from db. If I use Label componet and bind it to database' column like an image, i have System.Byte[] on it. Help me with my problem if you know the solution. Thank you for your help. Try to keep in your database image directories instead of image u ...Show All
Software Development for Windows Vista PC games + 8800GTX + Vista compatibility? (need help ASAP actually)
I need to get a new computer within the next few months, and I am rather concerned that I will not be able to play certain games decently (if at all!) with the nVidia 8800GTX and Vista that I plan on getting with it (Alienware). As a result I've been looking on the net for places where I can get a sense at how well the two of these work together after the first official drivers have been released for the 8800GTX for Vista. In particular, I am hoping to hear from you guys that you all have experience playing games such as (ones I play) Dawn of War, Civilization 4, City of Heroes/City of Villains, World of Warcraft, Battlefield 2, and Unreal 2: XMP (that one's a bit obscure though). At least as far as Dawn of War is concerned, I heard ...Show All
.NET Development what is shim?
This term is new to me. What does it mean Thanks It is a generic term for any piece of code, usually in a DLL, that acts as an intermediary between two incompatible systems. A typical use for a shim is to make an unmanaged DLL usable to a .NET program. It would present a managed class interface to the .NET project and translate managed method calls to native method calls, marshaling the method arguments as needed. ...Show All
Visual Studio 2008 (Pre-release) luna.blue.xaml?
Is there a Luna Blue WPF theme available By Luna Blue I'm referring to the teal coloring scheme from Office 2007. I think you are looking for the Luna.NormalColor sdk "The Luna theme is used for Windows XP style and includes three color variants: Blue (NormalColor), Olive Green (Homestead), and Silver(Metallic)." ...Show All
Visual Studio Syntax error when using Online MSDN
Hi, I have a problem with the Visual Studio 2005 help. Every page that loads i get a "line 1 syntax error" message box. It is DRIVING ME INSANE! I have tried to repair of the Document Explorer tool. I have looked for updates or KB articles and i can't find anything. I have tried turning off IE debugging but just the shape of the message box changes (and it doesn't ask me to debug), and the syntax error moves to line 2. A sample source for the page starts with XML so i thought that might be the cause but I am running the latest updates. Has anyone else had this problem Thanks in advance for any tips, Nathan Update: You can actually prevent the main IE6 application from popping up an error when v ...Show All
SQL Server Why select top 100 percent was disabled in SQL Server 2k5 views
And how to get it work And by the way why Sql Server 2k5 became slower then 2k How to get to query planes in the management studio If something works, people will use it even if it's undocumented, unsupported, or *shouldn't* work at all. I know this from working in appcompat for a couple years. Public apis will be used in every possible way, ways they were never intended for, ways you could never imagine. So think twice if you are developing a public api! www.elsasoft.org ...Show All
Visual Studio 2008 (Pre-release) packets filtering
Can I delay packets with the library "fltdefs.h" Can I only block them I want to limit the net band: is it the right way Thanks In italian: Vorrei limitare la banda di rete a livello client; posso farlo tramite la libreria "fltdefs.h" Non voglio bloccare i pacchetti passanti per una certa porta, ma solo ritardarli. Grazie Hi, To be frank iam a novice in this subject. Recently I had gone through some contents on Windows Filtering Platform (WFP), WFP provides you with the power to participate in the filtering that takes place at all layers in the networking stack. A google on WFP will lead you to get more information on this. The downside of WFP is that it works only on Windows Vist ...Show All
.NET Development ReadXml with read count
Hi, I need to load a DataTable from a XML file but not all the data, instead, I want to load a custom number of rows from this XML file. ReadXml function reads all the schema and data from the xml file but if the data is too large or if I want to read only 10 records to show as a preview to the user, what I should I do I think XmlReader is the solution to this problem but I do not know how to use this weapon. Thanks for any efforts and time spent. Thank you for your reply which helped me to be sure on the way to follow to start implementing the code. There is no solution or question on the internet other than mine and I think that makes things difficult as you say too. I will surely ask you the questions I met a ...Show All
.NET Development xml file load problem
Hello, I am working on a project where I have to read a xml file. I used the following code: string abc = System.IO.Path.Combine(System.IO.Directory.GetCurrentDirectory(), "CountryState.xml"); System.Xml.XmlDocument xmlDoc = new XmlDocument(); xmlDoc.Load(abc); XmlNodeReader reader = new XmlNodeReader(xmlDoc); but got the error "Could not find file 'C:\Programming\WS\Soln\CountryState.xml'." where "C:\Programming\WS\Soln" is the solution file directory (which contains five project), not the project directory. you see I used 'System.IO.Directory.GetCurrentDirectory()' to get the current directory and it is not return me current directory path. By the way this is class library project. Please help me. ...Show All
Visual Basic A background process to detect user activity / How to get VB.NET to use a C# class?
Hello all, I have a multi-form application that is running fine, but now I would like to add code that would revert the application to its startup form if there is no user activity (mouse or keyboard). I have 27 forms in my application, and instead of going into each form indiviudually and adding a timer, I was wondering if there were a method to simply have a separate application (or hidden form in the same application) that would detect mouse and keyboard activity running in the background much like the method that your Windows screen saver uses to detect whether there is activity or not before showing the screen saver. I have looked into keyboard and mouse hooks but ran into a dead end; if I understand the documentation directl ...Show All
SQL Server NT AUTHORITY\ANONYMOUS LOGON'
I read a lot of artical but didn;t find a solutio to this problem. I have Windows 2003 SP1 install Reporting services 2005 I have other Windows 2003 SP1 server with SQL 2005 database. I set kerberos delegetion control on the server in the AD I also run the command cscript adsutil.vbs set w3svc/1/root/NTAuthenticationProviders "Negotiate,NTLM" on reporting services server but still getting this error message. Any help w3wp!processing!7!8/30/2006-00:00:01:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Cannot create a connection to data source 'MyDB'., ; Info: Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: Cannot create a connection t ...Show All
