Alex Bibiano's Q&A profile
SQL Server Document Map
Problems with Document Map creating a side scroll to get to Up/Down Scroll for the Map itself. There are two scroll bars once you side scroll over in the map window. Anyone seen this or know how to fix Or Anyone know how to change any of the properties on the Document Map or map window Thanks!!!!! Hi, I wondered if you ever got a resolution on this. I have a similar problem that once I deploy the report the scroll bar for the document map does not let you scroll to the document map. It only allows you to scroll through what initially fits when the report is first displayed. Before it was deployed, when the report was previewed, the scrolling worked fine... it was only after it was deployed that I ...Show All
Visual Studio Team System best practice for storing 3rd party libraries in version control
Does anyone store their third-party controls and library DLLs in a shared spot in TFS version control Instead of having to install these DLLs in the GAC on the local machine, we'd like these to get checked out in their own ThirdParty folder, organized by vendor and then version. But I don't see a way to add them to source control if they're not part of a proper Visual Studio solution. Within Source Control Explorer, I don't get an option to Add New Folder. Is this possible Thanks! Dan To figure out what's going wrong with your references, I would open the *.proj files in a text editor. Make sure the references are using relative paths (..\..\sharedComponent\foo.dll) and not absolute paths (d:\computer\s ...Show All
Visual C++ Using zlib within a managed MS Visual C++ 2005 Express project
[FYI, I'm somewhat new to the latest Visual Studio incarnations and am coming up to speed as quickly as possible. ] Has anyone managed to get zlib 1.2.3 to work within a managed MS Visual C++ 2005 Express project (using /clr:safe) I have gone so far as to successfully rebuild the zlib DLL and lib within the same IDE (different project) successfully using the original sources (though the project had to be converted automatically from the older version first). However, zlib is not in C++ .Net (it's pretty much standard C++) and so I cannot simply reference its DLL as part of the project (it's not clear to me how you'd make that call). I'm in need of some direction, i.e., how to load the DLL and how to reference some part of it. I'm get ...Show All
.NET Development Bulk Transfer of Attributes
I have an XmlElement that I want to fill with the attributes found in the current element of an XmlReader. The easiest way I know to do this is to loop through "MoveToNextAttribute" and call MyXmlElement.Attributes.Append()...or something like that. But is there a way to do this in "bulk " Put differently, is there a BCL method for transferring all the attributes over in one call I don't think there is any "bulk" method so you could implement what you suggested yourself. Assuming you have an XmlElement you can do e.g. XmlDocument doc = xmlElementInstance.OwnerDocument; while (xmlReaderInstance.MoveToNextAttribute()) { xmlElementInstance.Attributes.Append(doc.ReadNode(xmlReaderIns ...Show All
Smart Device Development How to hide keyboard at mobile 5.0 or pocket pc2003
Hi all: Now I only know how to hide the menu_work and task bar at mobile 5.0 or pocket pc2003. But I have no ideal about How to hide the keyboard at these images. Could you help me for this. Thanks! Sample code: HWND hWndTaskbar = ::FindWindow(_T("HHTaskBar"), NULL); ::ShowWindow(hWndTaskbar, SW_SHOW); HWND hWndMenubar = ::FindWindow(_T("menu_worker"), NULL); ::ShowWindow(hWndMenubar, SW_HIDE); ....... I have used this API to try . But the menubar and input button(keyboard icon) doesn't hide. Sample code: HWND hwnd = GetSafeHwnd(); DWORD dwState = (SHFS_HIDETASKBAR | SHFS_HIDESTARTICON | SHFS_HIDESIPBUTTON); SHFullScreen(hwnd, dwState); // Next resize the main window to the size ...Show All
Visual C++ Reverse Engineering c++ code to Visio UML
Hi, I'm trying to reverse engineering my code written in MS VS 2003 in order to create a Visio UML diagram. Unfortunately not all the classes are extracted and the few classes that have been extracted doesn't have all the features. Is it possible to fix this problem or should I draw the UML diagram by hand Cheers Donatella Hallo I'm using Microsoft Visual Studio .Net 2003 and Microsoft Visio 2003. Thank you Donatella ...Show All
Software Development for Windows Vista Loading workflow from dynamic instantiated assembly fails
Hello, We have hosted a windows service with the WWF runtime. This service provides functions to compile workflows on demand. They are compiled to a special repository folder and dynamicaly resolved by our AssemblyLoader to start the workflow. This works everything fine, except ... ..if the workflow is persisted and the workflow is loaded by the runtime itself it can not resolve the DLL because it's not in the execution folder/app domain (bin folder). Questions: -Is it possible to define assemblies to load on runtime instantiation/starting. -Is it possible to find newly compiled DLLs without restarting the service. -Is there another workaround Exception: System.IO.FileNotFoundException: Could not load file or assembly 'CustomWorkflow.4 ...Show All
Smart Device Development MSMQ- on PPC
Hi, I have an application using msmq on ppc 2003 and wm5 device. Application on the ppc is a client and i happen to recive messages from a host which is a PC. I am losing messages on the cleint if the Host ie the PC sends me messsages in bulk ie around 4000-6000 messages. any idean on this.... thanks, praveen Loosing messages at which point Do they ever leave desktop Do you have enough space on device to store them all and settings allow MSMQ to do so ...Show All
SQL Server how to dynamically change source text file in sql server dts
Hi , I have a table (source file) where all sourse file(its all text file) name and location stored. i have a dts packeage, through this package all the sourse file will upload. So I need to dynamically change the source file name in dts packages. How i can do it Can any body plz help me out! Thnaks SAndipan ...Show All
Gadgets Function to edit html code of a webpage
Hi guys First of all, Marry Christmas. :) I'm developing a gadget for Vista Sidebar but I think that it's much better to explane my problem here. Take some random webpage, for ex. www.microsoft.com. I would like to create a script function that automatically delete first 50 lines and last 50 lines of html code of that page (I want my gadget to show only middle part). Is there any way to make something like this Thanks in advance Hi, thanks again for informative reply. My goal Just to create some useful gadget for Sidebar that allow people to search on Wikipedia and display results in non-very-large Flyout (that's why I need to get only useful information, I just don't have enough space for menu/frame stuff). Wanna add some other i ...Show All
Visual Studio Express Editions Programming Sudoku
Well I just bought teh book Programming Sudoku, and I ran into a few problems. When I saw that you needed Visual Studio 2005 I was upset, but tehn I read on and found out it says C# shouldnt have a problem so im using Microsoft Visual C# Express Edition. Ive gotten pretty far in the book, and its in the Code section where i ran into a few problems! Heres what the bok says to do, Public Class Form1 '---dimension of each cell in the grid--- Const CellWidth As Integer = 32 Const cellHeight As Integer = 32 And thats where I hit the problems! See I wrote that and i get build errors! Heres my Code using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.D ...Show All
.NET Development Too many arguments specified error in stored proc
I'm getting a 'too many arguments specified' error when I call my stored proc. I've assigned the stored proc to a SqlDataAdapter and a DataSet which is called when the SqlDataAdapter.InsertCommand is called. I've checked the numbers of variables and I can't see where there is a mismatch in the number of arguments being called. I assume that this error has something to do with how I am retrieving the SQL autonumbered identity column (CitationID) with SCOPE_IDENTITY(). If someone could look over my code and let me know what I'm doing wrong, I would greatly appreciate it. Stored Proc: ALTER PROCEDURE tbl_Citations_AddNewRow @CitationType nvarchar (6), @ARTFlag nvarchar (7), @Title nvarchar (1000), @PublicationDate date ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Export Games
Is there any way that I can export the game that I have made in XNA as an exe, so that someone is able to play them on a computer without visual C# You might want to check out NSIS: http://nsis.sourceforge.net/Main_Page You can make your own painless installer that includes the necessary files and bundles all your assets into one convenient package. ...Show All
Visual Studio report viewer textbox keep together problem
I am using winform report viewer in C#. I add a list. Inside the list, I add customer Id, name, addresses etc. these approximately occupied half page. The last field I add is a Note that is a long text. I found if the Note is more than half page, the Note will entirely display in the second page and leave the first page's second half page blank. That is not what I want. I wish the note always start to display at first page and continue to the next page. In the list property, I set the keep together to false, set group on to the customer Id and page break at end. I've just come across this problem too - a simple textbox that should start on page 1 and continue onto page 2 but only starts on page 2 lea ...Show All
SQL Server There is data but no report
What, in general, can cause a problem that when SQL code creates a dataset, but when report is run, nothing is shown. It's difficult to say then without seeing the RDL code. You could post it here. It could be a case of a rougue filter or grouping statement. Was the report and all of it's components created from scratch or was part of it copy pasted from another report I had a similar situation when I capied a grid from another report (to preserve formatting) and forgot about a filter I had set on the grid. Have you tried re-creating the report from scratch ...Show All
