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

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

hanjg82

Member List

Shrek.NET
jamesIEDOTNET
ShEi
Munish Gupta
Gaurav Singh
nlarkjason
ropley
LokiSD
anisk
Martin Hart Turner
Alex Krapivin
dotnetsekar
Patricio Merino Díaz
Sivaraman
SIPS
Speedie
Hassan Ayoub
vb2005
zz2
Zamorano400
Only Title

hanjg82's Q&A profile

  • SQL Server External Activation with "n" servers processing messages.

    I am attempting to use Service Broker to distribute message processing across multiple machines. I have mulitple queues setup to all notify a single service with the QUEUE_ACTIVATION event. My external application then sits in a "WAITFOR RECEIVE" on that event queue and when it receives a message for a particular queue, will begin processing the messages in that queue if that particular server is configured to process messages of that type. My problem is that once one server starts receiving messages, the others don't always start processing and I end up with one server attempting to process all the messages by itself. What is the best way to notify multiple servers that there are messages in a particular queue which need process ...Show All

  • Smart Device Development revise app after making cab file

    Noob question...I have developed an app, made the cab file, installed it, noticed some changes I want to make to the app. What do I do about the existing cab file in the solution as far as do I need to name my next one something different, do I make revisions in the code and then just add another cab file to the project, and what will happen to the old cab file if I make a new one in the solution/project Thanks. SonicSue I’m not quite sure I follow… If you have a project which builds CAB you just build that project to get updated CAB. Similar, you just build your executable project every time your change the source code instead of creating new project with the same name every time. ...Show All

  • Visual Studio C# class library documentation download

    Maybe it's my connection, but I find it incredibly slow for the pages to load. Is it possible to download the documentation to my local machine Specifically, I'm interested in the C# class library documentation at MSDN Library > .NET Developement > Class Library Any ideas Thanks. Hello tsll2 - which version of Visual Studio do you have installed Visual Studio ships with a version of MSDN as a second step of the install process. If you performed this step, you can set your help settings to default to the Local version of the help rather than the Online via the Tools | Options dialog. Sincerely, ...Show All

  • SQL Server How do I register/install an IFilter with an instance of Sql Server?

    Hello, I am wanting to install Adobe's Pdf IFilter v6.0 for use with pdf files stored in the database and to use Full-Text searching on those files. I have been unable to find documentation telling me where I need to install the files, and how I register the IFilter with an instance of Sql Server.  I know I've seen demos showing how to do it, but I have not been able to find them again. Thanks, JoeM There is a typo in the code. The correct one should be as this: use master go EXEC sp_fulltext_service 'load_os_resources',1 go EXEC sp_fulltext_service 'verify_signature', 0 go reconfigure with override I had a similar problem with searching text from PDF. This works fine for me too. Nian ...Show All

  • Visual Studio 2008 (Pre-release) Styling Brushes

    It appears that there is no way to apply a style to a Brush (such as SolidColorBrush) -- the style property is seemingly non-existant. Is there any reason/workaround for this Thanks! I actually tried that Fill.Color idea before I asked....as you say, it doesn't work. I am actually in the midst of upgrading from June CTP to RC1, so I can't test this at the moment. However, will this work if I change the brush of the Rectangle after it has been loaded (i.e. will this still take effect if I set its fill to a new brush from the code behind after I have placed it on the screen) I wouldn't think so -- I would only think it would work when the rectangle was loaded, not when the fill was changed. Thanks! ...Show All

  • Visual Studio Multiple tables in the same database causing problems

    So I have 3 tables inside one access database that im trying to create a report off of. My problem is that when I have fields from more than one table in the report, the report will not pull any data from either table. Its almost like its confused on how to access the data. I figured it out, i just added 2 subreports to the main report that i already had created. I just added 2 more sections to the report footer and added the subreports there. New problem tho, i cannot export as a pdf, i can export as a excell or word doc, its telling me "Error detected by export DLL". ...Show All

  • .NET Development saving objects to application throwing null reference error

    I am having a problem and I don't know why. I am trying to save a datatable to application state and I cant seem to be able to acheive this. Here is what i'm doing: Sub Application_Start( ByVal sender As Object , ByVal e As EventArgs) Dim sqlConn As New SqlConnection(PubVars.connString) Dim sqlCmd As New SqlCommand("SELECT * from tbl1", sqlConn) Dim allMembersDset As New DataSet Dim allMembersDA As New SqlDataAdapter(sqlCmd) allMembersDA.Fill(allMembersDset, "tbl1") sqlConn.Close() Application("allMembers") = allMembersDset.Tables("tbl1") End Sub When I try to retrieve this table from another page like this: Dim dt As New ...Show All

  • Windows Forms DataGridView binding self joined nested table for tree view

    I tried many things to bind the following table to show a tree view id int parent id text But I was never able to display the values of this table in the grid as tree view - only in a linear way. I added a relation id <->>parentid I bound the datagridview to a binding source which contained the dataset as datasource and the relation as member. No success. Is this possible, are there examples TIA Hi, If it is ok for you to use third-party controls, maybe you should try Hierarchical DataGridView control which is developed especially to address similar problems. You can find more information on http://www.applicationaspect.com/SiteSections/Home/Common/Home.aspx Reg ...Show All

  • Visual Basic Incorrect DLL Version being used for build

    Hello all, I'm have a problem using VS 2005 when I build the solution I get a error that says: System.IO.FileNotFoundException was unhandled by user code Message="Could not load file or assembly 'INBLK$NamedDataSets_SYSTEM, Version=1.0.2405.25931, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified." Source="INBLK$SystemClasses" StackTrace: at INBLK_SystemClasses.GetData.FormatDSP() at INBLK_SystemClasses.GetData.Fill() in F:\Development\Traffic Management Environment (TME)\InfoBlock Objects\System Objects\INBLK$SystemClasses\clsDataTransporter.vb:line 78 at System.Runtime.Remoting.Messaging.StackBuilderSink._PrivateProcessMessage(IntPtr md, Object ...Show All

  • SQL Server Merge Join vs. Lookup vs. Custom Script - which is fastest?

    Very often we have 50'000+ rows which you need to pull values from different source (e.g. CityNames from citycode in Excel file). Currently we are using Lookup - but the questions is which of those 3 options is best in performance wise If you do test the three methods, please post the results here. I am using custom script for lookups (small reference lists but millions of source rows in pipeline) but I would like to know how large reference lists perform. ...Show All

  • .NET Development single key, multiple values - any data structure / class ?

    Hi friends, Happy New Year to all ! I have a file (similar to an INI file) wherein I have some configuration data stored in the following format: [Section 1] line 1 line 2 [Section 2] line 1 line 2 I need to be able to read this file into a data structure at application startup and subsequently be able to match some other data against the contents of this file. This is like a "single key-multiple values" structure. I've looked around for various collections classes, dictionaries, data structures but can't seem to find an appropriate one for my purpose. Can anyone suggest me what class/data structure can I use Or maybe some other way of achieving what I want to. Thanks n Regards, Kunal ...Show All

  • Visual Studio Team System Check-out not getting latest (RTM)

    Hi all We have this occasional problem whereby checking out a file doesn't get the latest, subsequently resulting in us having to merge our changes due to the file being different on TFS. Any ideas This sounds like it could be a bug to me Thanks Kev (dunno how this got posted to the wrong thread) Get Latest on Checkout is unlikely to be in SP1. Here are the workarounds I know of: - use the MSSCCI provider: http://www.microsoft.com/downloads/details.aspx FamilyId=87E1FFBD-A484-4 C3A-8776-D560AB1E6198&displaylang=en - add a new Solution Explorer menu item: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=332541&SiteID=1 - us ...Show All

  • Visual Studio key schemes and output window nagivation

    In VS2003 using the default key binding scheme, F8 is mapped to Edit.GotoNextLocation. Edit.GotoNextLocation works in the Find Results windows. Edit.GoToOutputWindowNextLocation is used for navigating the Output Window and in the default key binding scheme, nothing shows up as bound to that command. However, in practice it appears to be bound to F8 (as if it is sharing the Edit.GotoNextLocation command binding). And F8 works whether or not the output window has focus (unless an SEID_ResultsList element has been brought forward). In VC++6, by default, F4 and shift+F4 are used to navigate both the output window and the find results window depending on which is in front. But in the vs2003 vc6 key binding scheme, F4 is only bound to Edit.GoT ...Show All

  • Visual Studio 2008 (Pre-release) plug in model

    Its documented that Wpf doesnt support the plugin architecture. So is there an alternative. our team is currently planning to develop a prod which would involve third party plug ins. We would appreciate if some code is provided to see how feasible it is to our requirements. hi Don, I am pretty interested in which kinda plugin architecture your team is planning to implement, since there are many kinda plugin systems, and which kinda features and functionality your team plans to incorporate. Sheva ...Show All

  • Visual C++ Finding the windows directory?

    I have tried googling, and searching these forums for what I thought would be a simple answer, but I can't find it. I am looking for a way to find the location of the windows directory on any given computer. How would I go about doing that I am sure it's a win32 call but beyond that I am stuck. Thanks, Matt mattdawg wrote: I have tried googling, and searching these forums for what I thought would be a simple answer, but I can't find it. I am looking for a way to find the location of the windows directory on any given computer. How would I go about doing that I am sure it's a win32 call but beyond that I am stuck. Thanks, Matt It is a shell API called SHGetSpecialFolderPath(). ...Show All

©2008 Software Development Network