Software Development Network Logo
  • Visual C#
  • Visual C++
  • Smart Devicet
  • IE Development
  • Game Technologies
  • VS Team System
  • Visual Basic
  • Visual Studio
  • Windows Forms
  • SharePoint Products
  • Microsoft ISV
  • SQL Server
  • Visual FoxPro
  • Windows Vista
  • Audio and Video

Software Development Network >> Daniel Gonzalez Gasull's Q&A profile

Daniel Gonzalez Gasull

Member List

Janetjyothi
JN5943
nedium
Revenicus
Wilfried Mestdagh
thenxtgoldberg
dorvo
Mystret
R.Tutus
gauls
mspinder
Martin Kristensen
arsonist
MarkBosley
brajeshkumar69
Cbe
Robin Davies
Ghoort
jayaraja
stlinarus
Only Title

Daniel Gonzalez Gasull's Q&A profile

  • Visual Studio Can I empty the Temp Folder of VSS?

    The size of the temp folder of my VSS database has grown upto 2 GB. Can we delete all the files and folders in the temp folder Sainath Hi Sainath, You can open Microsoft Visual SourceSafe Administrator, and click "Clean up the temp folder" under Tools menu. Thanks, -Huizhong ...Show All

  • Visual Studio Tools for Office Outlook 2007 Form Regions and User Properties

    Hello fellow coders, I've developed an outlook 2007 addin that makes use of a few form regions and some custom user properties to extend outlook's standard items and I seem to have a problem with my formregions getting 'infected' with properties. From what i can tell, if you drop a field onto a formregion in design mode, the formregion tries to ensure that property is always available by saving it internally and then injecting it into the userproperties collection of an item when it is created and displayed. The problem is it doubles up on properties that already exist in the item, standard or custom properties. For eg. I have an employee item (IPM.Contact.Employee) which contains one userproperty 'ParentEntry' which sits in the publishe ...Show All

  • Visual Studio Team System TSD1030

    I'm getting: Error TSD1030: [Unknown] .: The name of the object could not be determined It's referrring to a couple of keys that I deleted from my project. I've tried deleting references to these from the vbproj file but to no effect. How can I prevent this error A TSD1xxx error is raised during phase 1 parsing & interpretation. What is in the file that is causing the error (the errorlist should open it up when you double click on the error), also what is the exact and full file name of the file causing the problem. Thanks, -GertD ...Show All

  • Software Development for Windows Vista Unable to call "CoInitializeSecurity"

    Hi Everyone. I'm in trouble about DCOM server & client system in Vista. When the Client try to call a procedure in a remote DCOM server, CoInitializeSecurity(client side) is failed by "RPC_E_TOO_LATE". By MSDN document it occurs when CoInitializeSecurity() has been already called. But in this case it had never been called in a same process. I have this problem only in Vista OS. It worked correctly in XP and 2003ServerR2. If anybody have a good suggestion, please tell me. Kohei. Dear Mr.Lundt I really appreciate your quick reply. >CoInitializedSecuirty can be called on the client, the server, >or both and should be OK. Just curious are you calling ...Show All

  • Visual Studio Tools for Office Copy Data From One Excel Sheet to Another

    Copy Data From One Excel Sheet to Another using Usedrange . i.e i dont want to run a for loop for row and column and iterate it cell by cell and paste it .... what i want is to use something like clipboard.SetDataObject ..... so that entire sheet data gets pasted into another specified sheet .... i am using VSTO 2005 , .NET version 2.0 ,c # regards Hi You can try doing something like this: this .Range[ "A2" , "G6" ].Copy(missing); //Copies data to clipboard OR Globals .Sheet1.Range[ "A2" , "G6" ].Copy( Globals .Sheet2.Range[ "A15" , "G19" ]); //Copies data to another range Hope this helps! Thanks, Nikhil ...Show All

  • SQL Server Security problem with Report Builder

    Here is my problem. We have a web application used by different companies. For each companies we have a different database. Each compagny can create custom reports using ReportBuilder. Here comes my problem. Says that i have 2 compagnies A and B. When a user from the company A start reportbuilder, if he click on File>Open (in ReportBuilder) the user can see all reports from his company (A) and also from the company B. So the user can open a custom report from the company B and run it so he could see data from another company. I've read about ReportServer security but will this fix this problem What i want is to hide the report of company B so user from A could not see them. How can i solve this The cl ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Edit soundwave frequencies?

    Where can i read an article about how to edit wave frequenciesm so that i can cut off the sound frequencies also where can i find the source code to adjust the volume of the music played.. im also using c# thanks alot. Hey,     I think that you can't do that via the DirectX SDK Directly, this is similar to mp3 or other lossy formats. I mean DirectX provides you capability on how you will be able to play sounds and record sounds in WAV format. You need to get an external API in order to do such modifications and then pass them as resources in directX to be processed and when needed played. I think you might be able to do a real time Frequency adjustment during post-process via xACT but for that I am not sure. Check ...Show All

  • Windows Forms C# How to make a form click-thru-able (hard to explain in one line!)

    Hi, I was considering making a cursor replacement application in C#. To do this i made a form with a PictureBox and a Timer. The Timer would synchronize the form's position to the cursor coordinates. The form was using a TransparencyKey and was TopMost. However, when I click anywhere, the form handles the mouse event, meaning that I can't do anything with the computer other than click on the cursor (not really that useful!!).... how can I make it so that clicks "go through" the form OR! Is there some way in C# of drawing images, etc. beyond the form's surface Thanks in advance! - Javawag Try using  a ListView for drawing a grid of images.  As for clicking the form.  Just add a ...Show All

  • SQL Server Problems by upgrading MS SQL 2005 with SP 1

    Hi, I have 3 servers running MS SQL 2005. The other 2 servers upgradet fine, but the last one failed on the databasepart. I am running the upgrade as administrator. And I am able to start the databases after the failed upgrade, but the maintanance plans and so on doesn't work. This is a production server, and I would be happy to get feedback saying it is OK to keep running producton on this machine The error thas was provided was: 02/04/2007 22:15:18.750 ================================================================================ 02/04/2007 22:15:18.750 Hotfix package launched 02/04/2007 22:15:19.468 Product discovery successfully completed during the install process for MSSQLSERVER 02/04/2007 22:15:19.484 SP Level check successfully ...Show All

  • Visual Studio Running .NET 1.1 apps w/ Crystal Reports in ASP.NET 2.0

    I have been having some issues attempting to run .NET 1.1 compiled applications that use Crystal Reports IX when they are referenced in an ASP.NET 2.0 application. My 2.0 application references a number of DLLs that were compiled in .NET 1.1 and uses CR for the bulk of its work, but whenever I call the code that loads the reports, I get an exception "Load report failed". It does not seem to matter whether I load the reports from a server location or from a location on my machine and it does not appear to be an access-related issue since I am able to read from the directory where the reports are located using simple System.IO commands. This is happening both on my local machine and on the server that will be hosting the website. ...Show All

  • Visual C# Create Derived instance of Base instance

    Hello,   I was wondering if it is possible to have a base class and create a new reference to it which is a derived class. Here is a little example of what i mean: class Program { static void Main( string [] args) { BaseClass b = new BaseClass (); b.num = 5; DerivedClass d = new DerivedClass (b,true); Console .WriteLine( "derived :" + d.num); //The output is: derived: 5 b.num = 6; Console .WriteLine( "derived :" + d.num); //The output should be: derived: 6 Console .ReadLine(); } } class BaseClass { public int num = 0; } class DerivedClass : BaseClass { public DerivedClass( BaseClass bClass, bool access) { if (access == true) { ...Show All

  • Windows Forms Problem creating master/detail form w/customer/orders

    It's a pretty simple question: I have a few tables: customers, orders, orderdetails, products etc. I have created relations between these tables. The problem is that i want to create a form with ORDERS as the "master". When showing an order, i want to see details about the customer who ordered it, and details about the products that was ordered. How would i do this Note: I do NOT want to have customers as master, and display orders based on which customer selected - i want the opposite, and that's the problem... Sorry for not reading the things properly. Whay you need is the opposite. But, in fact, this is symetrical just replace Order by Client in the above. In fact, make a Cl ...Show All

  • Visual Studio crystal report with stored procedure

    hi all, i am using vb.net and inbuilt crystal report. iam using stored procedure for getting two table fields with date field comparision with todays date.S.procedure is working fine in analyser. how to create crystal report for this. whether to include ado.net dataset or simply two tables. if ado.net dataset how to create for both the tables. then pls give me the codings for this. It sounds like you need to adjust your datasource filters. Right click on your database connection and select options. Be sure ' Stored Procedures' is checked. ...Show All

  • Windows Live Developer Forums RTC issue

    Hi all, I am having problem sending a message from Office Communicator to another account (call it A). A is connected through an application in which i disabled media with RTCIF_DISABLE_MEDIA. SO i assumed I nedd to use pSession->AnswerWithSessionDescription(type, description) when I get a session in incoming state (RTCSS_INCOMING) and the session type is RTCST_APPLICATION. But it didn't work that way either. Any clues Thank you ...Show All

  • Visual Studio How to Create Documentation from a web service

    Hi I have created a VS2005 web service that I would like to document using Sandcastle. I have three cs files that are in the directory called APP_Code. After building the web service there are no dll files created. How can I generate a DLL from the web service so that Sandcaslte can generate the documentation I have tried using the CSC.exe program but with no luck ,. Regards and thanks for any help ...Show All

©2008 Software Development Network