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

Software Development Network >> Pat 34847's Q&A profile

Pat 34847

Member List

wjousts
Barry Dyson
Eadd
EdwinLam
Z Z
mausau
marta
Marilyn Beaudreau
Captain Nimmo
Robert Vabo
Mike81
Hannes Alp.
Stampc
jodz
elsonidoq
wpf michelle
Bhaskar Sarma
Shifted
deval bhavsar
Joseph Ollero
Only Title

Pat 34847's Q&A profile

  • Visual C# typedef in C#: Visible in separate projects

    I saw that you could get around the absens of the C++ typedef feature by using: namespace NameSpaceCS {   using Handle = System. Int64 ; or using Handle = System. Int64 ;   namespace NameSpace CS {   But this is only visible in one file. How do you make it visible in other projects. I have added the reference and the  using NameSpace CS ; in my other project but it still seems to ...Show All

  • Visual FoxPro VFP 9.0 SQL worthless under a non client server network?

    Hello everyone; I have posted this problem here and also on UT and no solution yet. I have a small network with a 2003 server, and XP pros. I am running vfp 9 select * from products where status = "S0000" takes apx 10 seconds when run over the network. When running this locally, it takes only a fraction of a second. The product table contains 100,000 records, and the result of the SQL command is just a few hundred rec ...Show All

  • .NET Development DataGridView + DataAdapter Edit Weirdness

    Hello, I originally posted this thread in another forum but someone suggested I repost it here: I have a DataGridView setup with a DataAdapter.  There are a few fields on a couple of rows that I update programatically which causes the DataAdapter to want to update the data in the database every time I run the DataAdapter's Update method.  Is there anyway to set the status of the row to NOT update the database (at least until a user e ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Books on XBox 360 and XBox Live Development for eLearning?

    Hello, I'm sorry to be such a noob, but if you have children, please consider offering me some assistance. I'm studying what it would take to put a SCORM compliant Learning Management System like Moodle ( http://moodle.org ) on XBox Live with the goal of offering downloadable eLearning that would lead to "Achievements" in things like basic math, geography, and other academic topics, in an entertaining manner. Before I get sta ...Show All

  • Visual Basic Is Full Trust broken in BETA 2?

    I set my click once to full trust, but none of my programs will run off a network share UNLESS i run .net 2 configuration from administration tools on it. So i tried a different route, setup to run only onlne (no start menu item) from web, first time it may run fine, but 2nd or 3rd time it complains about "Unknown Publisher" Is Full Trust broken in BETA 2 I cant be running to 100 machines installing .net 2 configurator and then having to do run ...Show All

  • Smart Device Development building a mobile application on a PDA

    hi all, im building my 1st mobile application and i was wondering if any 1 knew any decent websites that i can use to help me design my interface. i want to build a personal timetable application. thanks bhavesh I also have some simple step-by-step Compact Framework tutorials here . ...Show All

  • Software Development for Windows Vista How to call a common function after every EventDriven

    Hey guys, I'm working on a statemachine project. I'm trying to record some information when every EventDriven Activity has finished its job. Is it possible to achieve this without putting a StateFinalizationActivity on every StateActivity Is there any event that I can subscribe to call a common function Darren You could write a recursive function like this: static void setEventHandlers(CompositeAc ...Show All

  • Windows Forms TreeNode LabelEdit and Ctrl-C shortcut

    My form has a main menu that contains a Copy menuItem with an associated Ctrl-C shortcut. This copies the selected TreeNode. I've also implemented in-place rename of TreeNodes using LabelEdit. Once TreeNode.BeginEdit() has been called and the node label is being edited, how do I direct a Ctrl-C keystroke to copy the text within the label to the clipboard and not fire the OnMenuCopyClick event handler Thanks ...Show All

  • Smart Device Development embedded visual basic .net

    i had to hard reset my hp4150 ipaq losing all unsaved proramming and with it i lost something pertaining to embedded visual basic .net having lost that i'm unable to play tomb raider on my ipaq, and i can't find the necessarry update to fix this error. thanx This forum is intended to deal with issues directly related to the .NET Compact Framework. It appears that this question can better be answered by ...Show All

  • Visual C# When Using a "C" style comment /**/ how do I disable the automatic * on every line?

    How do I disable or stop the IDE from adding a new * on every line after hitting the enter key when I am creating a "C" style comment /*  * I don't want this line to start with *  * I don't want this line to start with *   **/ Like This: /* My comment is now easier to read. Because, there is no * in front of every line */   First of all I must say that I sofar like the VS2005 environment ...Show All

  • SQL Server MDF file to full SQL Server 2005 DB?

    I've developed an ASP.NET site based on using SSE, specifically using an MDF file.  What is the process for upgrading to full SQL Server   Is there an easy way a hosting company can easily suck the MDF file into a SQL Server 2005 DB I think upgrading from a minor version to a full version will not cause any problems i.e. if you have a database developed in Express and you want it to run on an Ente ...Show All

  • Visual Studio Failing to open CrystalReports

    Hi,      I have installed Crystal Reports 8.5 Developer edition successfully on my machine. But when I am trying to add a report in my web or windows application in ASP or ASP.NET, I cannot locate the icon for CrystalReports in "Add new Items" dialog box. Also when I am tring to open a report which was build on other machine under the same version of Crystal Reports, it gives me an error saying " Failed to open document " ...Show All

  • .NET Development PublisherIdentityPermissionAttribute

    I don't understand. . . . ok. . .first I created a certificate using this command line: makecert -sv fubar.pvk fubar.cer and it is in ".\cert" relative to the current solution. I then created a class library (ObjTec.Proprietary.dll) with the following code: using System; using System.Security.Permissions; [assembly:PublisherIdentityPermission(    SecurityAction.RequestMinimum,    CertFile = @".\cert\fubar ...Show All

  • Windows Forms datagridview dispose

    Hello I've a form with a datagridview connected to a bindingsource on a table. I open it with Showdialog. On the CellMouseDoubleClick event I want to select and close the form so I write this .DialogResult = DialogResult .OK; But I've an error in the DataGridView.Dispose method : "Object reference not set to an instance of an object." on the : base .Dispose(disposing); because my datagridview is based on a DataGridView If ...Show All

  • Software Development for Windows Vista Workflow from XAML with Custom Activity

    Hi people! I'm trying to run the ideas/examples exposed in the article: Simplify Development With The Declarative Model Of Windows Workflow Foundation http://msdn.microsoft.com/msdnmag/issues/06/01/WindowsWorkflowFoundation/toc.asp In the article, the authors load the workflow dinamically from a xaml file. In the xaml file is a reference to an custom activity in the same assembly. I can't found the source code of the article.... Has anyone a ...Show All

©2008 Software Development Network

powered by phorum