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

Software Development Network >> Kimberley Scott's Q&A profile

Kimberley Scott

Member List

Zdog
Vincent Zhao
phensahw
Mike Epprecht - SQL MVP
MedoMancer
Ashu Sharma
umuhk
sdflksdfsda sdfklsdf sdk ksdfk s
purpleendurer
John3144123
eguo
Clint67
Akin
Jose Lucas
JonJon
Suresh
BA08
JT_AnnArbor
volaru
marteens
Only Title

Kimberley Scott's Q&A profile

  • Windows Live Developer Forums Does MS support these forums? Search api question...

    Greetings, I wanted to ask something. I have 3 websites on the same IP (shared hosting), I have 1 AppID for each website but all requests are coming from the same IP for all 3 sites. Do I have 10,000 queries per day total or 10,000 for each site I tried this question on the Live Search development but nobody answered this past week. I've also mailed microsoft but no reply from there to :/ I'll very much appreciate any help. Thanks! Yes we do support these forums :) it seems the search champion missed your previous post by some accident - I was on the phone with him ...Show All

  • 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 Team System How can I simultaneously run two test projects?

    Hi all, I have two projects in one solution. One is a master, the other is a slave. I wrote a unit test case for master and start it to accept slaves. Then I can't start the slave unit test. The error message is that "Can not start more than one local run". Must I use a remote computer for simultaneous run And would anyone plz explain why there is such a restriction Thx. Hello, If you are starting local runs from within a solution, that is right, you cannot start more than one simultaneously. In order to achieve what you want, then you will need to run remotely, with one controlle ...Show All

  • Visual Basic Cycling through textboxes

    Using Microsoft Visual Basic 2005 Express Edition, I have got a row of textboxes named T1 up to T9, and I am  trying to find a way to cycle through them. So if the starting text box was T1 then the pattern would go T2, T3, T4, T5, T6, T7, T8, T9 and say if T5 was the starting textbox it would go T6, T7, T8, T9, T1, T2, T3, T4. Is this possible With your code what happens if I have lots of textboxes but just want to search nine of them called T1 up to T9. ...Show All

  • Visual C++ Basic Application template missing manifest?

    I apologize if this is an idiotic question or posed in the wrong forum. I'm brand new to Visual C++, I just downloaded the Express Edition 8.0, then followed the instructions provided for installing the Platform SDK. At the last step, where I create a Win32 Console App and attempt to run it, I get the following error: Debug Error! Program: ... R6034 An application has attempted to load the C runtime library without using a manifest. This is an unsupported way to load Visual C++ DLLS. You need to modify your application to build with a manifest. For more information see the "Visual C++ Libraries as Shared Side-by-Side Assemblies" ...Show All

  • Visual Basic Out Of Memory Error generating VB.Net Resource File

    Hello all, I am working on a project that requires me to add a large access db file (Data.mdb, Size:500 MB) to a vb.net resource file. I am getting an OutOfMemory Exception when the resource file is being generated. If the size of the database is around 100 MB everything works fine. The problem is only while tring to add databases larger than 150 Megabytes. My question is: How to prevent this from happening. I cannot ask my client to increase his machine memory due to professional reasons. The machine has 512 MB RAM. Much appreciate any help and thanks in advance.. -------------------------------- SB Can I ...Show All

  • Visual Studio Team System Team Build Server error

    Hi Can anyone tell me how to build using Team Builds No matter how I tries, my build ends with an error. Arild Attaching the error log and .proj file. Build started 13.10.2005 10:57:01. __________________________________________________ Project "c:\data\components\duplo\Duplo\Test2\BuildType\TFSBuild.proj" (EndToEndIteration target(s)): Target InitializeEndToEndIteration: Target CoreClean: Removing directory "c:\data\components\duplo\Duplo\Test2\BuildType\..\Sources". Target InitializeBuild: Creating directory "c:\data\components\duplo\Duplo\Test2\BuildType\..\Sources". Creating directory "\\192.168.3.20\data\builds\duplo\Test2_20 ...Show All

  • Visual C# Resume Next

    I've got VB6 and VB.NET code that I'm converting over to C#. In Vb there is a "resume next" statement. What is the statement in C# to convert "Resume Next" ie Try 'more vb code 'some line caused an exception End Try Catch Resume Next End Catch Thanks, /dz There is no equivalent for good reason. Resume Next is considered very bad practice. How do you know that you can recover from the error For example given the following code: Try Dim obj As BankAccount = GetBankAccount(); obj.CheckAccountBalance(1000000); obj.Wit ...Show All

  • Visual Studio Express Editions How do i get text off a window.

    How would i get text off a window that has 3 text box's that i need all 3 from and get the window title And the classname always changes ...Show All

  • SQL Server ahh fer the luvva...

    With a ForEach container, configured to loop through files in a directory, if I have a problem with a file.. can I direct the loop to skip on to the next file I'm processing structured files, first record of each is some header info, body records are in the middle, and then the last record is a trailer containg a checksum So, for each file in the directory, I split the records into three raw files, one for header rec(s) , one for body recs and one for trailer recs. (based on line numbers and using a conditional split to direct the records) Then I start by processing the header recs in a dataflow.. if all goes well ther ...Show All

  • Visual C# Counting lines of a file

    Is there a easy way to get the amount of lines a file has Without looping through every line and incrementing a variable as I am working with large files, or is that the only way I can do it Basicly, I'm looking for the quickest way to get the amount of lines a file has. Thanks. Hi Squimmy, You can do it by the following code snippet. Void CountLines() { string[] fileContents = File.ReadAllLines("d:\myfile.txt"); int linesInFile = fileContents.Length; } Hope this helps, Suma ...Show All

  • Smart Device Development COM interop in VS NET 2005

    Hi all, I'm trying to develop a com object for windows mobile 2003 se/5.0 using Visual Studio net 2005 native c++. Is it possible to make the com object act like any .Net class in the code where i'm using it(managed code c#) Exemple : Native com objet called Object 1 that expose this : method : void method1() void method2() event : event1 And in c# i would like be able to instanciate object like and register his event and method. Object1 temp = new Object1(); temp.method1(); I made some experiment and i got some problem, in VS Net 2005, designing the com object, i can't add method like in evc++, i can't get nothing to show in the class ...Show All

  • Visual Basic Inkedit Gestures

    Im trying to capture a doubletap event...i do what microsoft recommends by catching the gesture and the inkstroke...but the gesture never fires off to set which stroke belongs to the doubletap ....any suggestions h ttp://msdn.microsoft.com/library/default.asp url=/library/en-us/tpcsdk10/lonestar/microsoft.ink/Classes/inkedit/Events/gesture.asp   Thanks, Dan     Public Class Form1 Public theStrokeId As Integer   Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load AddHandler InkEdit1.Gesture, AddressOf InkEdit1_G ...Show All

  • Smart Device Development MAPI

    hello guys, i have a C++ class that uses mapi functionalities to send emails with attachment, how can i set the sender of the email i am using PPC2003 SE thanks for your help Set the following two properties on the message: PR_SENDER_NAME, PR_SENDER_EMAIL_ADDRESS, For both, using Value.lpszW as your value string. --- Lao K Visit my Blog for Windows Mobile Pocket PC Smartphone Programming Hints and Tips ...Show All

  • Windows Forms Custom DataGrid Combobox Column Style throws InvalidCastException on New Row

    Hi, I've used Kristy Saunders example of creating a combo box column style class from the abstract DataGridColumnStyle ( http://msdn.microsoft.com/msdnmag/issues/03/08/DataGrids/ ).  I've had to convert the C# to VB and have everything working except for when I click on a new row of the datatable the following error occurs: An unhandled exception of type 'System.InvalidCastException' occurred in DataBinding.exe Additional information: Operator is not valid for type 'DBNull' and type 'Integer'. The error occurs in the Edit subroutine on the first line: MyBase .Edit(source, rowNum, bounds, bReadOnly, instantText, cellIsVi ...Show All

©2008 Software Development Network