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

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

PennyP

Member List

GregE
GabrieleN
Gordon Hogenson - MSFT
Michael Hewitt
Shawn Payne
RMarceloJR
GCF_Pick2
Seraphic Raven
SunSet_SunRise
Ed Dudenhoefer
apocalips
Yuval Gatenio
BarKey
Dougie321
Tommi Pitkälä
Naren Datha - MSFT
k m
Philsky
Raghavendra Prabhu MSFT
AndersW
Only Title

PennyP's Q&A profile

  • Microsoft ISV Community Center Forums What version of Team System do EmpowerISV members get?

    Current MSDN Universal subscribers get a free upgrade to their choice of one of the Team editions of Visual Studio 2005 when its released.  What about current EmpowerISV members   And what will future members get   I'm planning on joining the program, but I want to be sure I know what my team will be  getting long-term, especially as it relates to Visual Studio Team System. Hi Tim Do you reme ...Show All

  • Visual C# How can i get the holidays from my outlook calendar???

    I there any provider in C# that can communicate with the outlook calendar file I haven't used it much (so I don't know about the holidays), but you can use the Outlook COM objects to work with Outlook. In your project, click Add Reference, select the COM tab, and find the Microsoft Outlook x.0 Object Library. 9.0 is for Outlook 2000, 10.0 is 2002, and 11.0 is Outlook 2003. ...Show All

  • .NET Development Can I open an Access database from vb .net if the mdb file is opened.

    if I try to use the following connectstring "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\\cse1\src\test.mdb;Mode=Share Deny None;User Id=admin;Password=;" I get the following error "The Microsoft Jet database engine cannot open the file 'test.mdb'. It is already opened exclusively by another user, or you need permission to view its data." I was assuming that mode-Share Deny None would open the database in read-only mode, since I have to ju ...Show All

  • SQL Server Data Transfer reported as succesfull BUT only one row is ever transfered!!

    Hi, I have SQL Server 2005 Developer Edition installed on my laptop. At this time, our servers here are currently running SQL Server 2000 Enterprise edition. When I try to use the DTS import/export wizard to transfer records between two SQL Server 2000 databases, SQL 2005 always reports the transfer as successful! Although when you check the destination table there is only ever 1 record transfered This has happened every I have attempted, on an ...Show All

  • Visual Studio Overriding PublishUrl in publish target doesn't work without clean

    I have a clickonce application I want to deploy to multiple sites. My build script compiles the application once and then it calls the publish target once for each deploy site setting the PublishUrl accordingly. Unfortunatly msbuild seems to think that since no modifications have been made since the compile was done it doesn't need to rebuild the manifest file. So, I cannot compile once and publish multiple times, instead I have to recompil ...Show All

  • Windows Forms Locking down the desktop

    I am writing a custom web browser that will only allow users to view a particular website while taking an online test. While the user is taking the test, I would like to limit their desktop funcationality (ie. prevent them from running other ap ...Show All

  • Visual C++ using ATL macro to change LPSTR to LPCWSTR

    Hello, I'm making a 3D game and realized I would have to face many problems and maybe trying to "reinvent the wheel" on my own, if I wanted to implement SETTINGS -(for graphics mode) in my game. So I am going for DXUT framework or engine by Dx team or what it is called to simplify my life. But I am facing some problems, because it is using UNICODE and I need to change LPSTR to LPCWSTR so I use macro A2W(lpstr) and inc ...Show All

  • Visual Studio Tools for Office Columns into generated ListObject's column

    Hi, I am in between with a serious problem. Actually I have to generate columns depending upon some types.  i.e. I want  to generate columns into column, Lets see the structure: Suppose I have three columns generated in Listobject as "Col1", "Col2" and "Col3". Now "Col1" also has some more columns into it as "Col1a", "Col1b", "Col1c" etc and I need to show them into excelsheet. Is it possible in VSTO Please ass ...Show All

  • .NET Development Very urgent -i want to know how to create dynamic control in XML scripting

    Hi sir, I created one user control using XML Scripting In that i have one option as ad another button so whenever i am clicking that button it want to produce dynamic page with that user control without refreshing.May I know the code how to produce the page .Please its very urgent . Thanks, Gomathi Please, don't send duplicate posts to the forum. What is XML Scripting It is not part of XML s ...Show All

  • Visual C++ cliext::map in stl.net

    wrote in message news:88b90d39-670f-4567-aab7-cec032c66ae0@discussions.microsoft.com... Why do I get C2385 with this code hdp. #include "stdafx.h" #include using namespace System; int main(array ^args) { cliext::map m; //m[0] = 10; //m[5] = 50; return 0; } Because the stl stuff in this beta is not finished, you better stay away from it. Willy wrote in mess ...Show All

  • Visual Basic show tablenames in combobox

    I want to list the tablenames of a MySql DB in a combobox, but i do not have any idea how. please help me! thanks a lot for the really fast answer! My problem is that I do not know how to fill the result in the combobox. Here is the code I am using: Private Sub cmd_tables_Click( ByVal eventSender As System.Object, ByVal eventArgs As System.EventArgs) Handles cmd_tables.Click Dim sqlqry ...Show All

  • SQL Server Also for Sql server 2000

    i get this error when i wanna install sql server 2000 http://img287.imageshack.us/my.php image=error4pt.png There is no image located at the URL you posted, perhaps you post the install log and the image again.   Jens Suessmeyer. ...Show All

  • Windows Forms windows form stops responding during non-infinite loop

    Hi,I have a windows form that sends out a monthly opt in newsletter email to all of our community members. The problem is that the list is large, and every time I run the program it sits there appearing to be frozen. I have to watch the program under task manager and watch its resources to see if its running, and checking the queue mail folder for emails. This obviously is not a great way to run the program.In my code I loop thru a sqldatareader ...Show All

  • Windows Forms Type '<typename>' is not defined?

    Greetings all, I was working on a windows application and I guess i need to understand the basics first.  I created an inherited user control as well as several composite controls.  I added them to my windows form, built project with no er ...Show All

  • Visual Basic C# style documentation in VB

    is it possible to do c# style documentation in vb ie: ///<summary> ///This is a class ///</summary> public class . . . as far as I know, you can't do it in vb as it comes out of the box. there are some third party add-ins, i believe - don't ask me where they are.Another thing you don't have in VB is on the fly refactoring. but don't worry, under the hood, they're all the same thing. . .you just have ...Show All

©2008 Software Development Network

powered by phorum