Software Development Network Logo
  • SQL Server
  • .NET Development
  • Game Technologies
  • Visual Basic
  • Windows Vista
  • Architecture
  • Visual FoxPro
  • VS Team System
  • Visual C++
  • VS Express Editions
  • Visual C#
  • Windows Forms
  • Smart Device
  • Windows Live
  • Visual Studio

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

Hr_Ind

Member List

Erik Abels
grasi
Manny33
sunbar07
Brian B
Catalin Stavaru
naaz911
Tom_Miller
M. Franz
Vinod R Kumar
SFrench
Rahul Shankar
energium
idjones
Bruno Nogueira
pxcosis
Mónika
crazycretan
Suresh.R
benbino
Only Title

Hr_Ind's Q&A profile

  • Microsoft ISV Community Center Forums VBA for Powerpoint

    Hi, I have been asked to modify a powerpoint presentation so that from a series of jpg files, one appears on the screen and then after a specific time period disappears and is replaced by another; this being a continuous loop on one slide only - like a photo tour. I have the following code, but need to get it up and running. Any suggestions: Sub ImportABunch() Dim strTemp As String Dim strFileSpec As String Dim oSld As Slide Dim oPic As Shape strFileSpec = C:\PFS Pictures\beach party *.PNG 'Ex. on a PC: C:\My Pictures\Flowers\*.PNG strTemp = Dir(strFileSpec) Do While strTemp <> Set oSld = ActivePresentation.Slides. Add ppLayout ...Show All

  • Visual Studio Express Editions Missing Feature

    Hi, I have recently installed the VB 2005 and VC# Express editions. Everything seems to be working fine except that I realise that, different from Visual Studio .NET 2003 which I already have, the buttons menu do not have a drop-down menu whereby you could select Debug/Release/ConfigMgr (The Standard toolbar is already activated). I am not too sure if this is an inherent feature in these Express editions, or that I have gone wrong with the installation somewhere. I wonder if someone could advice me on this. Thank You. Brian Hi, Im currently using VC++ Express and the drop-down menu of "Debug/Releas ...Show All

  • Visual C++ This is stupid

    Okay, I've downloaded the Microsoft Visual C++ 2005 Express Edition. I cannot, no matter what I do, find the f***ing input window where I actually INPUT the code to actually WORK and practice my C++ coding. Why is this program so retarded that it doesn't OPEN THE INPUT WINDOW WHEN YOU OPEN A NEW PROJECT Old versions of Microsoft Visual C++ did that, why the hell doesn't this retarded program do it What you need to do is to Right click on your project, select Add --> New Item and then choose code on the left hand side. On the right hand side you can choose C++ File (.cpp) for just a source file. If yo ...Show All

  • Smart Device Development how can i play a sound file ?

    hello . how can i let my program on my pocket pc play any sound file wav , mp3 , wma i tried every thing , searching in msdn ... the system.media is not found . also microsoft.devices.audio and my.computer.devices.audio is not found .. so , what's the solution .. regards ,, You can use MP object model via COM interop in NETCF V2 (or CFCOM in NETCF V1). http://www.businessanyplace.net/ p=cfcommedia ...Show All

  • Visual Studio Tools for Office How to do ignore spelling error using VSTO

    I am inserting some text in a word document using VSTO. Is there a way to turn off the spell checking or ignore spelling errors for inserted text Thanks, Yuhan.g Spell check in Word is language-specific. Controlling with which language text is formatted is done in Tools/Language/Set language. Also in this dialog box is an option to "Do not check spelling or grammar". This is what you want to use when inserting text. The object model equivalent is the NoProofing property of the selection or range object. Example: Word.Range rng = doc.Content; rng.Text = "my new text"; rng.NoProof ...Show All

  • SQL Server What is the ADO DataType for nVarchAR(max)

    I can't seem to get nvarchar(max) to work with ADO 2.8 using sql native client. I am creating a stored procedure and every time i attempt to add a parameter to the command object of type nVarChar(max) I receive the error "Parameter object is improperly defined" here is the code to add the parameter cmd.Parameters.Append cmd.createparameter(@piComments,adLongVarWChar,adparaminput,,me.comments) adLongVarWChar is the ado data type i am using to map to the new nVarChar(max) but it does not appear to be working. Is this supported in ADO I am using the sql native client connection to connect to the database as foll ...Show All

  • Visual Studio Team System Why do we need to return a ProblemCollection and Add the problem to the Problem

    Hi all, I am wondering why a problems collection needs to be returned, from the Check methods as you also already Add the problem to the Problems collection of the base class public override ProblemCollection Check( TypeNode type) { // Analysis if (!succes) { Problems.Add( new Problem (GetResolution( RuleUtilities .Format(type)))); } return Problems; } Hi Paul, The various check methods are defined on the IIntrospectionRule interface. Their contract is that you have to return a ProblemCollection object. There is no restriction on what ProblemCollection object is returned. ...Show All

  • Visual C# Summary of C# Classes

    Anyone know if there is a URL, similar to the Java Docs Class summary, that gives a summary of all C# classes, fields, methods, interfaces, inheritance etc where you can click on a specific NameSpace and it will give you all the Classes in that NameSpace, and if you click on a specific Class, it will give you more information about it, such as its methods, or fields (Similar to the Java docs Class summary, where it lists the packages and Classes in a particular package in the left Navigation bar, then information about a selected Class in the content pane.) Appreciate anyone's help. Thanks C# itself d ...Show All

  • Visual C++ Writing to an open document!

    Hallo, It may sound a silly and stupid question. Still please answer my question.I starts an application A written in vc++. This program opens a file F and then it calls another application B. Application B now try to write into this file F which has been opened by A. This is the scenario. Is it possible to realize this Thanks n Regards Swingme swingme wrote: Hallo, It may sound a silly and stupid question. Still please answer my question.I starts an application A written in vc++. This program opens a file F and then it calls another application B. Application B now try to write into this file F whi ...Show All

  • Windows Forms How can set font of a Control, programmatically ?

    i would like to know why i cannot specify Text Properties when coding by hand, compared to doing it via IDE When coding, properties are always Read-Only, any ideas Thank you Anything that can be edited through IDE , it can also be editied through Coding. Can you let me know about any specific case ...Show All

  • Visual Studio 2008 (Pre-release) Poor performance caused by Frame

    Hi, I'm trying to develop a prototype of a business application. The major task is to show data from a database (e.g. a list of customers). Therefor I use asynchronous databinding like Andrew Whiddett ( http://blogs.msdn.com/karstenj/archive/2006/01/27/518499.aspx ). DispatcherPriority is 'Background'. I also added a Frame to display webpages in the application. Loading a huge amount of records from the db is guite good. But since I clicked in the toolbar on the button to show the Frame, the performance of the following operations (like to load data from the db for a listview) is getting worser. Maybe the frame does something in the backgro ...Show All

  • Visual C++ including dshow.h compiles not with /clr but with /clr:oldSyntax

    Hello, can somebody tell why I get 103 errors with /clr and none with /clr:oldSyntax when I include the dshow header file. I would like to use the new syntax. Win32 console app generated by VC Express with line added to include dshow.h #include "stdafx.h" #include <dshow.h> int _tmain(int argc, _TCHAR* argv[]) {     return 0; } Regards, stax You have nailed down the problem: the new C++/CLI syntax is (as its name indicates) just now being released with Visual Studio 2005. Thus, the code inside the SDK from VS 2003 is written using the old syntax and cannot be compiled without t ...Show All

  • Visual Studio 2008 (Pre-release) Jan CTP, ObjectDataProvider

    Hi, I am trying to use the ObjectDataProvider and I am at wits end, I keep getting this error. Error at element 'ObjectDataProvider' in markup file 'Window1.xaml' : The string 'x:Type logic:Search' could not be set on the 'ObjectType' property. Did you mean to use a TypeExtension for 'x:Type logic:Search' XAML < Mapping ClrNamespace="test" XmlNamespace="logic" > < Window x:Class = " WindowsApplication1.Window1 " xmlns = " http://schemas.microsoft.com/winfx/avalon/2005 " xmlns:x = " http://schemas.microsoft.com/winfx/xaml/2005 " Title = " Windo ...Show All

  • Windows Forms Filtering the data in Dataset

    i'm working with VB .Net i'm creating a crystal report using dataset have used OledbDaAdapter, and have to filter the records between two date. which i cant give while giving query. as with OleDbDaAdapter we give query with mark for ex: SELECT SpecialChoice.Menu, SpecialChoice.Kcode, SpecialChoice.Veg, SpecialChoice.Description, F_Detail.fDate, F_Detail.paxG, F_Detail.paxE, F_Detail.LType, F_Detail.Venue, F_Detail.FPCode FROM F_Detail INNER JOIN SpecialChoice ON F_Detail.Mcode = SpecialChoice.MCode WHERE (F_Detail.fDate = ) but i have to select between two dates. dataset created from this adapter i used in Crystal Report. i wan ...Show All

  • Windows Forms Showing HTMLpage in Winform?

    Hi, I am using VB.Net for prototyping, and to save me even more time with this prototyping I want to be able to implement some parts of my application with HTML. Do you know of a good .Net control that shows HTML pages in WinForm user controls Thanks, Morten You can use the Microsoft Web Browser control to render HTML.  You can  ...Show All

©2008 Software Development Network