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

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

gabo_uy

Member List

Marshall Moorman
Danidiner
Angela Bodnar
kok_cz
windypoint
de3a10
Joel40096
Vania B
prashant_victory
cmazur
umberto21
Michael Koster
mrtn
Dan S
Mike McGavin
pallavi19321
Fozya
andersb79
DmitriyKot
Nelson Drueding
Only Title

gabo_uy's Q&A profile

  • Windows Forms How to Northwind Databind to Customers and Orders row at once

    Hello, When i start with a simple Northwind Database I can't insert two rows at once. 1) Create Project 2) Add Northwind Dataset (Table customers, orders) 3) Add relation (Parent table orders,customerid and child table customers, customerid) 4) Drag customer detail to form and drag order details to form Testing... Update is working ... i can change fields in customer and order and save them just by calling ordersTableAdapters.Update(..) method! Insert is not working! order is saved customer is not saved.. (also setting the foreign key (order_row or customer_row) does not work!) Thanks Peter ...Show All

  • .NET Development Best Practices: Generating Serial Numbers which contain informations?

    Hello Forum Users, i am working on a Software which can be registered by people and companies for variable period like 3 months, 6 months or one year and so on. For example, we receive the order from company X, purchasing the software license for 6 Months. Now we would like to use our own Serial number generator and pass in the name of the company and the period and generate a serial number, which will be delivered to the customer by e-mail, phone, fax, letter etc. We would like to be able to show the information on the customers screen (so that he hardly would like to use someone else key), and be able to disa ...Show All

  • Visual Studio Tools for Office VSTO install balks at VS 2005 beta

    Sorry for the cross-post; I posted this in the VS forum as well. A few months ago, like everyone else, I installed the release version of VS 2005 Professional after having gone through the uninstall of the beta version. I recently downloaded the VSTO install, but it seems to think I still have betas for VS 2005 and VSS 2005 installed. I get the following message when I run setup.exe: Thanks you for particiapting in the beta program. You must uninstall pre-release products in a specific order before you can continue with setup. For detailed information ....blah, blah. - Microsoft Visual Studio 2005 Professional Edition - ENU - ...Show All

  • Smart Device Development Do any communication libraries exsist in the CF?

    Does any of the .NET TCP/IP classes exsist in the .NET Compact Framework (1 or 2) I want to mess around with some NNTP stuff (Where I was using a regular C# class for reference) and it uses these. Are there any networking protocals in the CF Thanks! Easiest is to add a reference to all the netcf assemblies and then let intellisense be your guide. I would not trust the documentation at this beta stage but it will have good clues (msdn library at msdn2). Also look at the Object Browser which in VS2005 has additional filtering. Cheers Daniel ...Show All

  • .NET Development Error adding web service reference

    The wsdl file is legitimate. I verified it on Mozilla, but not on IIS6.0. When I try to create a client, I try the utility to get the web reference. At this point, I get this message. I go and look at the specified folder. I see TempWebDirectory. It does have this directory with the long code(file name), but I do not see the rest of it. Every time I try to use the utility, I get another directory with a code but always empty. Is interoperabiliyt far away Message form VS IDE follows: Could not find a part of the path "C:\Documents and Settings\computer user\Application Data\Microsoft\Visual Studio\7.1\TempWebDiscovery\ 4c008bf ...Show All

  • Visual Basic AnalogTVTuningSpace and MSVidCtl

    I´m trying to develop a decent tv tuner/capture application (since there are no such apps, nowhere, I say) in Visual Basic 6.0. I´m using the MSVidCtl component together with the AnalogTVTuningSpace and IChannelTuneRequest object to achieve this, as described here:  http://msdn.microsoft.com/library/default.asp url=/library/en-us/directx9_c/directX/htm/hostingthevideocontrolinavisualbasicform.asp  and here:  http://msdn.micro ...Show All

  • Visual Basic Good coding practice -> Multiple platforms project

    Hi, Being new to VS 2005 I face a project which targets PC, PPC and SmartPhones. Basically all the code is the same, just a few changes due to CF for Smart Devices. Only the forms are different due to the difference on the screens. Right now I have three different projects, one for each platform, so if I make some change in the code I need to copy and paste in the others. I suppose this is a bad practice and should be a better way to do this. Any help will be very welcome. TIA, Jose Adell Put common code into a Single class Library which can be called from 3 projects which deal with UI etc ...Show All

  • Visual Studio Team System Code Coverage not worknig properly during a team build

    Hello I have a problem with the team builds. In my proj file I have specified to build my solution, to run tests without specifying any test list. All my tests run correctly. I have a web site referencing four other DLLs. As I want to enable code coverage for my DLLs, I have edited the testrunconfig file to enable code coverage. So I select my four DLLs (in release mode) in the CodeCoverage tab of the editor. When I launch my builds, I see results only for two DLLs out of the 4. (Note that one of the 4 DLLs is empty so I can understant not to receive any result for it, but one missing has some code in it and some tests using it ...Show All

  • Visual C++ LNK1107: invalid or corrupt file: cannot read at 0x300

    Hi, I'm using VC++ 2005 to build a dll. This dll I have tested using a Win32 console project, it worked fine. When I use this DLL in WTL project, I have a link error as following: LNK1107: invalid or corrupt file: cannot read at 0x300. Can anyone help me to over come this problem Thanks Aaron My mistake to put the dll instead of lib. Thank you very much, Martin. ...Show All

  • Windows Forms Form Count

    Is it possible to get a total count of all of the forms which are part of a VC# solution along with their respective object names. I dont think there is standard functionality in Visual Studio to do this. Can you be a bit more specific Do you want it at design time or at runtime ...Show All

  • Smart Device Development DllExport

    Hello guys, i have a C++ dll which functions are called by a C# dll using DllImport but i get the 'can't find entry point "function name" in "dll name" dll', i've declared the C++ dll's functions as DllExport but i still can't get the functions. i have tried to read the Dll with PE Explorer but it doesn't find the functions. Anyone has an idea how to use the C++ functions Thanks Hi Pierre Make sure you declared the C++ function as followed: extern "C" __declspec(dllexport) void Foo (int bar); Michael ...Show All

  • .NET Development RSACryptoServiceProvider to encrypt/decrypt with non-XML keys

    Hi The following has an example on how RSACryptoSeriviceProvider can read XML keys to do do encryption/decryption. How do we do this when keys are binary or in text form. http://msdn.microsoft.com/library/default.asp url=/library/en-us/cpref/html/frlrfsystemsecuritycryptographyrsacryptoserviceproviderclasstopic.asp Thanks so much, DotNet_bz Hello, If you can, you should store the private keys in a key store, rather that just leaving them hanging around in text or binary form.  Key stores are a lot more secure and MUCH easier to work with.     Stephen ...Show All

  • .NET Development problem deallocated memory in .NET

    I use some objects and dispose it and assign null it. I invoke GC.collect after, but the memory increases always. The sum of my processes allocated is much less memory than memory recognised by TaskManager. Do I have memory leak Is .NET framework bug that don't deallocate memory How I can solve this problem Are you using any unmanaged resources Calling into native DLLs or something like that If your managed resource is referenced from any callable code it will not be able to free/collect it. MyObject obj = new MyObject(); MyObject objref = objref; obj.Dispose(); obj = null; GC.Collect(); Since objref stil ...Show All

  • Smart Device Development NotSupported Exception when calling third party dll

    Hi all, I am using VB.NET and VS 2003 for PocketPC application development. I am trying to use third party dll from my application. I am using P-invoke to call function but I am getting "NotSupported" Exception. I have checked signature properly. That should not be the problem. I don't have source code of this dll and also don't know which platform was used to build it. Also I have copied third party dll in both current folder and windows folder of the device but still getting this error. Please help me. Thanks, Viral NETCF V1 does not support marshaling of some types to n ...Show All

  • Visual Studio Serious Build Engine Error in August CTP - BUG?

    Using Aug. CTP/Visual Basic: I get - not reproducable, but somtimes - the following Build-Error. It seems that the Error occures when I use the Import-Statement for System.Runtime.Serialization.Formatters.Binary. Removing this line of code all works fine. Is this a known bug/issue in Aug CTP Does anyone know what the error message means Thx for Feedback redfox === Error 2 The "ResolveAssemblyReference" task failed unexpectedly. System.Runtime.InteropServices.COMException (0x8000000A): The data necessary to complete this operation is not yet available. (Exception from HRESULT: 0x8000000A)    at EnvDTE.OutputGroup.get_File ...Show All

©2008 Software Development Network