Software Development Network Logo
  • Windows Forms
  • IE Development
  • Audio and Video
  • .NET Development
  • VS Team System
  • Microsoft ISV
  • Visual FoxPro
  • Visual Studio
  • Smart Devicet
  • Visual Basic
  • Game Technologies
  • Visual C++
  • Windows Vista
  • SharePoint Products
  • SQL Server

Software Development Network >> hr0nix's Q&A profile

hr0nix

Member List

aoky
kru
Robert Beaubien
Agent00
TerryTuell
OROCHKA
michid
RichardCUK
Dan Scott
brian_tsim
Cammyr
zerovelocity
MJMatthew
chris441962
sroughley
mfareezaw
karande23
Izzy545
Amos Soma
orcmid
Only Title

hr0nix's Q&A profile

  • Visual Studio 2008 (Pre-release) Possible odd TreeView bug (sample included)

    Using some custom style with a StyleSelector for my TreeView, I found a really strange bug, more related to ItemContainerGenerator, I think. I had to implement some drag and drop, and it appears that switching (my removing and re-inserting them) two sub-items in a sub-collection of a previously switched item in the parent collection used as ItemsSource for my TreeView lead to some unexpected error : The container passed to StyleSelector.SelectStyle while reinserting the sub-items seems "invalid" ! It isn't related to the TreeView anymore : it isn't able to find ressources and if you try getting its parent ItemsControl, it is now null ! View the sample application I made to test this bug, since explaining here doesn't m ...Show All

  • Software Development for Windows Vista System.IndexOutOfRangeException in Host implementation

    I'm having a strange intermittent error that's causing me no small amount of grief. I've implemented a generic WWF host implementation for our company and it seems to be working okay except for one small issue. Every once in awhile I receive the following error in my Application event log " System.IndexOutOfRangeException" with no accompaying dotNet exception being thrown. My test case for this host is simply a file watcher (non workflow) that logs file activity into a database. The workflow host implementation uses a work provider model which periodically goes out to the database and retrieves a list of pending files that need processing. It then (based on the file's path) looks up a workflow and queue's these workflo ...Show All

  • Windows Search Technologies WDS and Indexing service

    hi all, I would like to use WDS 3.0 through programmatically for searching word document contents. So, I am querying sytemindex with System.Search.Contents as the Where clause. My questions are: Does WDS using the "Indexing Service" (which is already available in the system) What is the difference if I manually configure my target folder with available "Indexing service" and query directly without using WDS SDK For me its easy to query the WDS component (thru OleDb)  than querying the indexed file directly. So, can I use this technique in production also Once the Indexing is done for a folder if I add or remove a file inside the folder will it re-index from the first or it will just update the index (I guess it shouldn't ...Show All

  • SQL Server Trying subreports - does not work

    Hello colleagues, I have the following issue: I am trying to create a report with subreport this way: 1) create report 2) create subreport. Set parameter @AccountName in the SQL query (...WHERE account.name = @AccountName) and in the parameters collection - AccountName, data type string 3) place the subreport into the report and set parameters AcountID = =Fields!name.Value, so that the WHERE clause in the subreport should filter the content according to the field Fields!name.Value. So far, I suppose this should work. Nevertheless, I get this result in Visual Studio .net: An error occurred while executing the subreport ‘subreppp’: An error has occurred during report processing. Cannot read the next data row for the d ...Show All

  • Visual Studio Team System Feature Enhancement Request - Column Filtering For Data Changes

    I'd like to make a feature request that I think would be helpful. After doing a data comparison, you're given the option to deselect certain rows you don't want to update. It would be helpful if there were also checkboxes on the column headings themselves, where you could deselect them. There are scenarios where you want to move all data except a certain column (ex. LastUpdatedTime or something of that nature). It would be great if you could consider this option for implementation. Thanks, -M- That's helpful for deciding what you want to compare, but I was hoping for something that lets you decide what to implement. Perhaps I want to compare them, but after doing so I can see the data difference ...Show All

  • Visual Studio Team System unused objects

    Is there any way to list the objects that are no longer referenced anywhere in the database Many times it is useful to check where an object is referenced and it is used at all. Something like caller/callee graph. Thanks, Martin Kulov http://www.codeattest.com/blogs/martin Yeap, This is actually a request during one of my presentations on VSTE for DB. In every single project development database objects change and at some time there are many unused objects that has to be removed. Especially when the database is implemented by many people. I am not sure if this is appropriate for build output as warnings and errors since an object can only be used from code, and it will not be referenced from any ot ...Show All

  • Visual Studio Team System No appropriate mapping exists for $/Project/Branch/File.cs

    I'm trying to unshelve some code I was working on weeks ago and keeping the error msg in subject line which I'll repeat: No appropriate mapping exists for $/Project/Branch/File.cs I do have a workspace mapping setup for the source control path in question so I'm not sure what gives. My workspace mappings have changed since I shelved the shelveset...is this the source of my problem Is there any way to dump the shelveset to disk in some manner so I can access the code changes. I really don't want to lose them... Help appreciated. If you're having trouble with workspace mappings, you can always map the root $/. Then you can be certain everything in the repository is mapped. In my experience strange worksp ...Show All

  • SQL Server how to give permission to this user to connect to my database???

    I am using Microsoft Visual Web Developer 2005 Here are the steps I used to create my database Tools -> connect to database -> Select datasourse - Microsoft SQL Server (SqlClient) -> Server name - comp4_8\SQLExpress -> Log on to the server – Use Windows Authentication -> Connect to a database -> Select or enter a database name – MyDataBase comp4_8 - is the name of my computer. I am using Windows XP Professional SP2. Login as administrator without password. Now about the problem I have. On local machine everything is great! But I hosted my website and got this error. The question is how to give permission to this user to connect to my database. Cannot open database " ...Show All

  • Windows Search Technologies WDS never finishes indexing

    If I watch the status, it will get down to 1 file left and then build back up to 40,000+ files left to index (I do not change very many files on this system and certainly not 40000 in a day). If I search using WDS, it says it is building the initial index. I have even left Index Now checkmarked for the last week. Any idea on how to fix Hi MrJavaGuy, We've seen this problem before when WDS tries to index program files for some applications. You may be able to fix the issue by doing one of the following: Set your indexing options to index E-mail and My Documents or Use custom indexing options and set WDS to index your email and only those folders where you keep documents you want to index (i.e. ...Show All

  • Visual C++ Visual C++ 2005 executables on computers w/o vcredist_x86.exe ?

    Is there an option to execute programs compiled & linked with Visual C++ 2005 on a computer on which neither vcredist_x86.exe nor Visual Studio 2005 was installed Someone claimed he saw a page that describes how to do it, possibly by moving the source code to a new project with an appropriate setting, but can't remember the URL. You can link statically to the CRT (using the /MT) but this is not recommended. For the recommended options of delploying you application, please check out http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=398802&SiteID=1 Thanks, Ayman Shoukry VC++ Team ...Show All

  • Software Development for Windows Vista Sample code needed to understand the UIA

    Hi, I am planning to use the UIA in our environment. Can anybody post a sample code to automate a simple GUI application (notepad) Basically i am looking for how to invoke the notepad application and enumerate the menu items in it using the UIA TIA, ~JK Executing an application programmatically is not part of UIA. Once you have Notepad running, you can certainly use UI Automation to enumerate menu items. There is a great deal of sample code in the SDK that should help you learn the basics of finding UI elements and their properties. You might start at http://msdn2.microsoft.com/en-us/library/ms752331.aspx . ...Show All

  • SQL Server Cannot see the cube using Crystal Analysis 9

    Hi, I'm currently using SQL 2000 Analysis Manager to create a cube, and Crystal Analysis 9 to try to view the cube. When I grant the role of the cube to "Everyone", there is no problem, CA is able to view the cube. However, when the role is granted to a specific "domain account", the cube is NOT showing up in CA... My settings are: SQL 2000 on one PC, and CA on another PC. Both are under the same domain, and both are logged in using the same domain account. Also, this domain account is already granted the "Administrator" rights in SQL 2000 PC. Any idea why this is happening Anyone ran into this problem too Thanks very much in advance. sendmehere. ...Show All

  • Windows Forms How can I retrieve SELECT String from VB designer generated ADO objects

    I am trying to get the select string from vb.net 2005 designer generated ADO Objects. Let's say I create a new data source using the IDE which creates a dataset named TestDataSet, which in turn contains a table called Clients. 'Select * from Clients.' I would like to be able to retrieve this select string in my code. Any help will be greatly appreciated. I don't think its the dataset that actually stored the Sql/OleDb Command - the command object which contains your query/Select command you will be looking for the DataAdapter.SelectCommand.CommandText property. do you know the name of your dataAdapter you have created if so, do as above, replacing "DataAdapter" with the dat ...Show All

  • Visual C++ Reading a Hyperterminal Session File

    I spent days trying to find the layout of a Windows NT Hyperterminal Session .ht file. I am using Hyperterminal on a Windows NT machine to communicate with a Optical Recording Device via the COM port. I would like to copy the Session file to my XP development machine and read the Session File. Is there a Hyperterminal Resource kit, SDK, White Paper or anything that gives the layout of this file Does anyone know where I can find the layout of the Windows NT Hyperterminal Session File Is there a better forum to post my questions where I may find the answer Thanks, Joel For such issues, please use the win32 dev newsgroups at http://msdn.microsoft.com/newsgroups . Folks there will be more familiar ...Show All

  • Visual Studio Start Installation of msi-package with command

    Hello and greetings from Germany, I'm new to MSBuild and therfore I may ask a stupid question. I developed a MSi-Package with WIX. What is important for me now is, that I need a Bootstrapper for for ensuring that all necassary components are installed. Sofar this is no problem for me. But after completing this prerequisits I must install the msi with parameters passed to msiexec. I need this Parameters for further processing in the installer. Is there a way to do so with MSBuild, and if yes, how must I configure the Project-File Thanks for your help. Greetinge Markus I think you may be missing a /i in your commandline. Try going to a command prompt (type 'cmd' in Start > Run). Then run 'ms ...Show All

©2008 Software Development Network