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

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

Nimble

Member List

Jeff Putz
ykgreene
cmwith
MechEng85
Eduardo D
eduar_hte
Dave Midgley
Matt Tolhurst
vb2005
Dracosveen
Alex Stevens
Jamie Thomson
konstantinos_1000
RCS300
nithinraj
DEQ_Rene
Hilton Goldstein
jamesIEDOTNET
Braunschweiger
hazz
Only Title

Nimble's Q&A profile

  • .NET Development SAPI - missing?

    First off, sorry if this is somewhere else in the forum but I canot find it and at my wits end. First off, I have been beta testing Vista since Beta1, now have RC1 and have the Voice Recogition working. I am now trying to get my new Mac Pro with XP sp2 so that the Voice Recognition is working and having issues. I have a vs2005 project that has VR and TTS and works in Vista RC1, yet I have installed the .net 3.0 framework and all 4 items. So the issue is that my Vista project when copied to XP SP2 cannot find the file Interop.Speechlib.dll AND I think that I do not have SAPI installed but I have read that SAPI is part of the Windows SDK Does anyone have this issue How can I get the VR Control panel as in Vista Thanks ahead of time Brad ...Show All

  • SQL Server A WTF moment with SSRS....

    ...no, 'WTF' does not stand for 'Windows Transaction Framework,' LOL. I am writing to complain about what I believe is the annoying behavior of SSRS 2005 SP1. Specifically, I am trying to invoke a very simple MS SQL Server 2005 stored procedure as the data source of a report. This stored proc has an input parameter of type bit . The corresponding report parameter is type Boolean . When prompted for an input value when running the report, I enter a 0 or a 1. Much to my dismay, the SSRS IDE raises an error along the lines of '...error encountered when converting string value to Boolean.' For sake of argument, let's say that my stored proc's parameter were of the int type. I would then be prompted for a whole number parameter value, which I w ...Show All

  • Visual Studio Duplicate items are not supported by the "Resources" parameter error when building project

    Hello, While building our current project using Visual studio 2005 we stumbled on this error, === Error 16 The item "xxx" was specified more than once in the "Resources" parameter. Duplicate items are not supported by the "Resources" parameter === we traced the issue down to resource file naming convention differences between Windows Vista and Windows XP ie, for a given form, if we include chinese traditional and chinese simplified resources, On Vista the resx files must be named with zh-HANS / zh-HANT , using zh-CHS/zh-CHT VS2005 will choke On XP the resx files must be named with zh-CHS/zh-CHT, using zh-HANS/zh-HANT VS2005 will choke This is really causing trouble, as we develop both in XP and ...Show All

  • .NET Development Inserting a record using a DatSet and Table adapter

    I'm trying to find a way to insert a record to the applicable table using the table adapter I'm currently using to view the data on other forms. I've created a query for the table adapter to insert values and called it "InsertNew" Here is how i've coded this: private void UpdateDatabase() { TKDataTableAdapters. TkSiteIDTableAdapter adapterSiteID = new TKDataTableAdapters. TkSiteIDTableAdapter( ); TKData . TkSiteIDDataTable tblSite = adapterSiteID.InsertNew(); // this is where I need to identify the fields in the TKSiteIDTableAdapter to insert the values for. } Hi When u First thing is When u create an Adapter it will create 4 commands in that u will have ...Show All

  • Visual Studio Verifing local MSDN documentation from Visual Studio 2005

    I have 'help' set to 'local only' in Visual Studio 2005. how may I verify the help content source and version that I am viewing in VS 2005 I had expected to see the MSDN source vintage listed in the 'Combined Help Collection Manager' (perhaps as selected & grayed out, yet displaying versioning information). Did I miss it somewhere Thanks for any advice!:-) Hi Mark, This is the first time we're seeing your reply. Well done on getting back to a working state, and I'm glad you didn't have to go through the time-consuming process of Repair/Maintenance! Unfortunately, I don't have the info necessary to point you in the right direction, but I'm sure one of the MSFT Team will be able to help with this issue. In prepar ...Show All

  • Visual Studio 2008 (Pre-release) Programmatic Mex Binding

    Is it possible to expose a Mex binding programmatically In order to enable Mex the only way I can see is to use Config file settings and while this works in most siutations I have an Interop Scenario where using Config files is quite a bit of a pain. Is there a way to have a host expose these endpoints I can't seem to find the Binding class to use. Also, in this same interop app I can't seem to get Mex to work even with the .Config file. < xml version = " 1.0 " encoding = " utf-8 " > < configuration > < system.serviceModel > < services > < service behaviorConfiguration = " WcfFoxServiceBehaviors " name = " WcfFoxServ ...Show All

  • SQL Server Visibility based on a result of a comparrison

    Hello, Is it possible to display a value, based on a result of a comparrison For example: If the compression is true then I want to see value '1', if the compression is false, I want to see value '2'. Thx for help It sure is. Put something like this in the expression of your textbox: =IIf(Fields!Compression.Value = "True" , 1, 2) Hope this helps. Jarret ...Show All

  • SQL Server alter table - change time evaluation

    Hi, I have a table with 70 million records. I want to change the datatype of one of the columns from int to decimal(18,3). What is the best way of doing it and how can I evaluate the time change before I start and make the change thank you, Tomer ..assuming you want to know how long the operation would take....this varies massively by table definition + indexes + hardware + load you could use SELECT INTO to create a table of one million records and add indexes identical to those on the production table. Then drop the index on the int column on that table, execute an ALTER TABLE ALTER COLUMN to change the datatype and rebuild the index. Then multiply the result by 70 though that's o ...Show All

  • SQL Server Semiadditive

    Hi, I'm attempting to set up a measure with semiadditive property of LastNotEmpty. This works fine along the time dimension - except it is also using LastNotEmpty along the other (non time) dimensions. Is this working the way it is intended - or do I need to set up dimensions / measures a different way Hi Mosha, Thanks for the note - yes you are correct - I had not set up the time dimension correctly, I've fixed that & now it is aggregating correctly. regards ...Show All

  • SQL Server Easiest and performance effective way to store blob into varchar column

    Hi, My package dumps the errors into a table. The problem is, it couldnt dump Error Output column to a varchar field. I have added an script component in between to transform to string but no success. I tried ErrorOutput.GetBlobData(0, ErrorOutput.Length) but when I query the database, it says "System.Byte[]' I will appreciate the responses to this post. Thankyou, Fahad Okay, so you redirect error rows out of a Flat File Source. The columns that get output have the same data type as defined in the flat file source. I don't understand where the talk of BLOB and BYTE comes in. ...Show All

  • Visual Studio Express Editions Norton like Taskbar icon

    Hi. I was wondering if it is possible to make an icon like Norton has on the taskbar (Not the tray icon), the yellow one on it's left. It is directly a button on the task bar. Is there an API function (win32) for it Or maybe even a .NET function Thanks. Running programs shown in the taskbar are shown on buttons. These buttons have an icon and the program name. I'm assuming your talking about this icon in particular. This is simply the icon for the application. Go to solution Explorer -> My Project -> Application Tab and set the icon to point to a valid icon file (.ico) extension. If you dont have a valid icon, you can create one and there are loads of free tools that enable you to create valid icon files to use - ...Show All

  • Visual Basic use vbsrccopy function of VB in VB.Net

    I want to use the vbsrccopy function of vb in my vb.net application so anyone can help me in finding the alternate function of vbsrccopy in Vb.Net or how can i use that library function VBSrccopy is the library function of vbrun.rasteropconstant class in visual basic. If you're calling BitBlt from the GDI library, then SRCCOPY is what you'd pass in C++, and in both cases, it's just a number. Work out what all those ROP codes boil down to, and just pass the number. But why are you using BitBlt to make a straight copy of an image ' ...Show All

  • Visual Studio 2008 (Pre-release) Can't Display XML file in Frame

    I have a frame control. I execute: FrameControl.Navigate(new Uri(@" http://www.microsoft.com ")); *it works!* FrameControl.Navigate(new Uri(@" c:\temp\myfile.htm" )); *it works!* FrameControl.Navigate(new Uri(@"c:\temp\myfile.xml")); *EXCEPTION* "Failed to convert resource into object." ....now it gets stranger....the Frame control is on a form we'll call TheModalForm. This form is being displayed by a form we'll call ParentForm. Parentform contains the following... TheModalForm tmf=new TheModalForm(); try{ tmf.ShowDialog(); }catch(....){ } so, ParentForm creates an instance of TheModalForm and calls ShowDialog. The other form shows up. The user happily interacts with different ...Show All

  • Visual Basic Insert Or Append Missing Data

    Have a question on if something is possible or not. I will do my best too explain what I am trying too accomplish. Here goes we have 2 text files text1 and text2 text1 Quote: this is some sample text1 data text2 Quote: this is some sample text2 data. Hello how are you doing So what I want too accomplih is take the data from text2 and compare it with text1. If there is mismatch in the data then it would get transferred too the excact same location in the text1 file, in this case it would be, "Hello how are you doing" text1 could have data thats not in text2 and reverse. The data could go before or after a ...Show All

  • Windows Live Developer Forums SP1 TO SP2

    I BOUGHT A GENUINE WINDOWS XP HOME EDITION IN 2003 WITH SP1. NOW I UNDERSTAND THAT MAJOR ORIGINAL WINDOWS DOWNLOADS ARE ONLY POSSIBLE WITH SP2 CAN ANUONE GUIDE ME HOW CAN I DOWNLOAD SP2 OR IN OTHER WORDS CONVERT MY SP1 TO SP2 ITS REALLY URGENT I appreciate that this forum is not for support, but I can't find where to go for help with this question: My PC is running XP Pro, SP2. It started as SP1 but I manually upgraded it using Win Update. Now I'm trying to equip the PC for remote access - web-based. The procedure (add Windows component Remote Deskoip Web Connection) requires me to insert "the XP Pro SP2 CD." I don't have an SP2 CD, and it doesn't work with my SP1 CD, and so I'm stuck. Who can tell me h ...Show All

©2008 Software Development Network