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

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

Dedidado

Member List

RobinW
Ishaq
Ulrik
Helios07
SkyHighRanks
ShawnReed
BobishKindaGuy
Shira
MikeWDub
DraganAxo
Spetluri
frohar
rwrench
Holden Caulfield
Pidster
GaryWH
Chris Keeble
BusyGuy
Paul Hill
wiscon
Only Title

Dedidado's Q&A profile

  • Visual Studio Express Editions Full working database sample.

    Hi, I am trying to learn to build a database in Visual Studio 2005 Expresse. Building a working apllication with only one table is no problem, but an apllication with related tables is another thing. For learning purposes I tried to find a working sample on the internet. But didn't find anything. Is there anybody out there who can tell me where to find a working sample with Vb source code to understand how it works. Many thanks in advance. Henk Is this sample on the vb-tips website what you are looking for ...Show All

  • Visual Studio Any Document to support Edit and Continue

    When unifying COBOL to Visual Studio, in order to support "Edit and Continue", isn't there any document which summarized what should be carried out --- That is, in order to support Edit and Continue, is it required CDE(custom debugging engine) --- Could you answer to my question, someone ...Show All

  • Smart Device Development Named mutex in C# - P/Invoke?

    I need a named mutex in C#.  Where can I find the documentation on how to do P/Invoke calls for this Thanks. I don't have V2... Anyone have any ideas for V1 PInvoke I need to create/open/release a mutex. Thanks. ...Show All

  • SQL Server MSDE Database Size

    Is there an actual darabase size limit to MSDE 2000 I have read that it is 2gb however i have one that is at 3.6gb and still running fine. Is it fixing to go belly up ! MSDE 2000 is limited to 2GB and 5 connections. Is your 3.6GB MSDE database for SharePoint Windows Services If so, the size limit and connection limit have been removed, but it works local only and is only meant for use by Windows components like SPS - not for 3rd party development. Here's some info: http://blogs.msdn.com/grahamtyler/archive/2004/10/19/244496.aspx ...Show All

  • Visual Studio Express Editions Stored Procedure and OUTPUT

      Hi, I have a stored procedure: Procedure GetPortSumPT @portid int , @ex varchar (10) OUTPUT , @porttotal money OUTPUT as --portfolio total set @ex = 'it works' select @porttotal = sum (total) from portsum where portid = @portid and stockid != 134 and I try to call it in code: decimal xxx; string xx = "" ; this .queriesTableAdapter1.GetPortSumPT(2, ref xx, ref xxx); but I keep getting a compile error, however, I don't see what the problem is.  It doesn't seem to like the ref decimal but xxx is a decimal type.  Any thoughts Error 2 The best overl ...Show All

  • Windows Forms View Data Grid (for xml database)

    Since upgrading to VS 2005, when I right click on an xml database document that contains the schema, I no longer get a listing of the tables and cannot view the data contained in the tables. If I open the document created with VS2005 in VS2003, the grid populates fine. Thanks in advance for any replies. The tables are created and added to the dataset like this. DataTable dt = new DataTable ( "Table1" ); DataColumn dc0 = new DataColumn ( "Field0" , Type .GetType( "System.Int64" )); dc0.AutoIncrement = true ; dc0.AutoIncrementSeed = 0; dc0.AutoIncrementStep = 1 ...Show All

  • Visual Studio Team System Profiler instrumentation of C++ classes

    Can someone point to the documentation describing. Specifically I need to explicitly include member functions of some template classes. The command line says: /INCLUDE:funcspec+ Simple functions work fine, but I can't find the way to supply template functions (e.g. map<string, double>::find) Also, it there a way to supply response file (configuration file) rather than spelling out everything on command line Thanks. Supplying individual template functions, worked for me only in response file. I also realized I can use multiple /INCLUDE switches. ...Show All

  • .NET Development Problem accessing text file within a resource

    I'm using VS 2005 Beta 2.  I added a text file ("DefaultInfo") to the Resources.resx file under the "My Project" node (in Solution Explorer). I'm trying to retrieve the text file from a class, but I've been unable to get it to work.  I tried:     Dim asm As [Assembly] = [Assembly].GetExecutingAssembly()    Dim s As IO.StreamReader = Nothing    s = New IO.StreamReader(asm.GetManifestResourceStream("DefaultInfo")) but the code isn't finding the resource.  I also tried the name "DefaultInfo.txt", and also qualifying the name (such as "MyProject.Resources.DefaultInfo" and "WindowsApplic ...Show All

  • Software Development for Windows Vista InstanceId can't delivered from passing one workflow to another workflow

    Hi, I am facing one problem while calling one workflow from another workflow through InvokeWorkflow activity. I did the following way to do it. ParentWF: In the initialization, 1. added InvokeWorkflow activity. Assigns TagetWorkflow property = Name of the childworkflow and Invoking = MethodA() MethodA(){InstanceId = invokeWorkflowActivity1.InstanceId;} 2. Added CallExternalMethod Activity. And assigns the methodName to x and set the parameter instanceId = instanceId of the MethodA(). In side the x i am raising the event y. ChildWF: Eventdriven, 1. Added HandleExternalEvent activity and assigns event name ...Show All

  • Visual Studio Express Editions Network Applications with VB2005 Express a few simple questions????

    Hi There, I know that this might sound like a foolish question but... I'm new to this programming so please bear with me  Here Goes... If I want to develop a client/Server application, like say a front end to look at a large database and deploy it out to many clients across a LAN (not an Internet solution) then can I do this with VB 2005 Express edition I know that the SQL Express edition cannot be deployed on the network server but If I were to develop the APP in VB Express could I then use SQL 2005 Standard edition or would I have to rewrite my code to connect this app up... or to put it another way,&nb ...Show All

  • Software Development for Windows Vista Microsoft Sharepoint Workflow(7 Files).zip

    Hi. While trying the installation through Microsoft.Sharepoint.Workflow.SetupWizard.exe the error message appears related with missing workflow.config file. How could that file be generated Thanks in advance. Regards, Anar Valiyev. There should be newgroup listed where you downloaded the Office "12" Beta to help you will Sharepoint issues. This forum is intended to answer questions about Windows Workflow Foundation not Sharepoint. ...Show All

  • Visual Studio How do you reference to an assembly to a project programmatically?

    I have a Project, and I want to add a reference to an assembly to the Assembly "References" folder - say "System.Xml". How do you do this The IDE seems to assume that you will be using the provided GUI (i.e.; Add Reference) dialogs to do this, but I want to do it programmatically. Any body have any ideas Thanks, Rod If the project implements VSLangProj.VSProject (VB, C#, and J# do), then you can use code like this VB Macro: ctype(DTE.Solution.Projects.Item(...).Object, VSLangProj.VSProject).References.Add("System.Xml.Dll") Craig ...Show All

  • Visual C++ setup project Installation error System.IO.FileLoadException

    Exception occured while initializing the installation: Attempt to load unverifiable executable with fixups (IAT with more than 2 sections or a TLS section) This is the error that i am recieving with my setup project with VS8. I have modified a project that i found on CodeProject. C# to C++ http://www.codeproject.com/dotnet/shortcut_installer.asp I would try resolving the issue using the hints at http://msdn2.microsoft.com/en-us/library/dbe81ttk.aspx Thanks, Ayman Shoukry VC++ Team ...Show All

  • .NET Development Simplest way to move records from one db to another db

    Hi All, I need the fetch the details from oracle db. I am doing this in my front end. Now i have to move this details fetched from other application's db(oracle) to my applications db that is SQL Server in a temp table. Can any one suggest a simplest way to do that. i have a option of moving the details to a dataset and then move the records from there. But i need an alternative. Nb: I don use any linked server or stored procedure to fetch the other db's details. Regards, satish.r Ya thanks for your help. I ll use the approach you mentioned. Regards, satish.r ...Show All

  • Visual Studio Express Editions New Express contest - $10,000 and all it takes to start is an idea...

    Just announced, a new contest for Visual Studio Express and SQL Server Express. Do you like to use technology to build cool and useful stuff Do you think you could do it with Visual Studio Express and/or SQL Server Express Would you like $10,000 cash Well then we have a contest for you! Learn more at www.MadeInExpressContest.com . Cool stuff. MJ Sounds cool. Is there like different divisions. For begginers, Intermediate, advanced etc.. Or wouldn't that just allow a a l33t programming to win everything Any idea on the allowed ages. Im only 14 ...Show All

©2008 Software Development Network