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

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

Big5824

Member List

VDBA
ennisb
U_T_A
bminard
mareczek84
Jeff-B
fieldhouse
cbpd86
Mirko Messori
Bodylojohn
TA123
Timo79
PLess
YeeBoon
Rohit Tela
dimitrod
tattoo
Juergen Lorenz
MarcHoeppnerNeoGeo
JohnJDB
Only Title

Big5824's Q&A profile

  • Microsoft ISV Community Center Forums Validation with List drop down?

    Hi I want to add some simple validation to my Excel sheet but can not for the life of me remember how to do it! Basically i have a drop down list as in the image below and want so that when 'No' is selected, the user is forced to enter the reason in the next cell http://i102.photobucket.com/albums/m82/sc0ttb_2006/excel_list.jpg I can remember doing this before and used some VBA code but can not remember how i did it :( Please put me out of my misery! Thanks... I'm not sure if you get what i'm trying to do... I want it so that if 'No' is selected from the list the user is forced to input text into the column 'D'. Does this macro do this ...Show All

  • Visual C++ Error when going to wizard mode from tabbed mode

    Hi friends, Unhandled Exception in TabbedDialobBox.ex (MFC42D.DLL):0xC0000005: Access Violation I am getting the above error when i am inserting the code line "SetWizardMode()" in my code, But when i am running it in the tabbed mode it's working perfectly, When i tried to debug i got that some where assertion is being done due to the abscense of the window handle, but it is working in tabbed mode.With out a handle how can it work in tabbed mode.That's why i am unable to solve. Please send me the solution for the problem. With regards Suman#SS185 I doubt you're going to get "a solution to this problem" based on the information given.  You should use the debugger and diagnose this problem ...Show All

  • .NET Development How to use PGP Public Keys to encrypt .Net

    Hello all, I could not find anything in the forum about using PGP generated public keys to encrypt files/data using .Net Framework Cryptography (.Net 2.0 and VS2005); therefore, how would an application created using VS2005 read/store/use a public key created using PGP Corporation's PGP Desktop or one of their other products We have several business clients who use their products and we need to accommodate them with our system. Thanks for any help that you can offer. Kelly. ...Show All

  • Visual Studio 2008 (Pre-release) How to change default xml namespace of DataContractSerializer?

    I would like to change the default xml namespace " http://schemas.datacontract.org/2004/07 " of the data contract serializer. The MSDN article Data Contract Names explains how to override the standard namespace mapping for all contracts: // This overrides the standard namespace mapping for all contracts in MyCorp.CRM. [assembly:ContractNamespace(ClrNamespace = "MyCorp.CRM", Namespace= "http: //schemas.example.com/crm")] namespace MyCorp.CRM { // The namespace is overridden to become: // http://schemas.example.com/crm. // But the name is the default "Customer". [DataContract] public class Customer { // Code not shown. } } This works fine. But my classes doesn' ...Show All

  • Windows Forms Spring.net

    Does anyone try to use spring.net can this framework apply into windows form application (actually what does spring.net do i read it, still not really clear) thx Yes,you can apply this framework into windows form application, This Project may helpful for you, and to get more and better responses about the Spring.NET, I recommend you post related question on this forum: Spring Framework .NET Support Forums ...Show All

  • .NET Development Connection String for oracle in asp.net

    Hi, I have an asp.net application. I want to use the back end as oracle. Can anyone help in establishing a connection string using Oracleclient. Is it necessary to reside oracle database in the development computer or not. Its not necessary that the oracle server have to reside your development pc. It can be install in your pc or any other pc in your network. A typical connection string of oracleclient is: OracleConnection con = new OracleConnection("Data Source=Oracle8i;Integrated Security=yes"); I am listing some valid property of the connectionstring Name Default Description Data Source -or- Server The name or network address of the i ...Show All

  • Visual Studio Express Editions .exe file

    I can run a project by clicking on the project's .exe file located in the debug/bin directory created by VB Express. However, if I move that file to a different directory I get an error when I try to run it. How can I run a project's .exe file when it is loacated in a different directory Thanks, Antonio Does your project/exe reference any other assemblies or libraries (.dll's) that may be in the same build dir If so, you'll need to copy those over to the exe's destination in order for it to run properly. ...Show All

  • SQL Server Drillthrough results conditioning

    Hi, I would like to be able to set a condition to define the results of my drillthrough in AS 2005. Let's use an example to explain what I am trying to do : We got a Cube with 2 dimensions ( Time, Products ) and a measure ( Sales Amount). In our cube we have stored detailed informations about our vendors, customers and stores. The following statement should return all rows from the columns Customers, Vendors and Stores names. DRILLTHROUGH SELECT {[Time].[Time hierachy].} on Columns, {[Products].[Product.hierarchy]} on Rows FROM My_Cube WHERE ([Measures].[Sales Amount] RETURN [Fact].[Sales Amount] ,[$Vendor].[Vendors name] ,[$Customer].[Customers name] ,[$Stores].[Stores name] I wonder if it is possible to set a conditi ...Show All

  • .NET Development Determine if a path is a file or a directory

    Hi all! What is the more efficient way to determine if a given path represents a file or a directory in the file system For example: C:\Test.txt -> The function must return a value indicating the path is a file. C:\Windows -> -> The function must return a value indicating the path is a directory. Thanks in advance, Marco. The Path.HasExtension method is probably as close as you'll come without checking that the target resource exists. However, if the target resource does exist, merely checking for the presence or absence of an extension is not sufficient since it's possible for a file name to lack an extension. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DT_CALCRECT in .NET

    I've been trying to make a function to measure text for a long time now, I simply keep giving up and saying I'll come back to it later. It just dawned on me why I was having trouble. There is no DT_CALCRECT equivalent in DrawTextFormat. Is this an oversight or purposeful exclusion If the latter, what is the replacement Edit: I should also mention that DrawText doesn't quite do what I want. If I specify the text string "The quick brown fox jumps over the lazy dog" and a Rectangle of (0, 0, 100, 0) using 8pt Verdana, DrawText reports I need a height of 12. So I give it 12, and it reports 24. So I give it 24 and it reports 36, so I give it 36, then it finally says 36 (still). Sure I can use this method to calc ...Show All

  • Visual C# Trouble with WinNT provider on remote OS with other language.

    I'm using this code: DirectoryEntry O = new DirectoryEntry("WinNT://" + ServerName + "/" + UserName); O.Rename(NewName); it works fine only on OS where language equals my OS language. E.g. it works when remote system is Windows XP SP2 RUS. But when remote OS is Windows 2000 SP4 RUS or Windows XP SP2 ENG it throws an exception. Why this so I don't cleary know how it sounds in english. But in my translation from russian it sounds like: {"The Active Directory object, at path WinNT://DOMAIN/WORKSTATION, is not in container."} I am a domain Administrator and can do this operation by hand (rename remote user) through MMC. I've put some vars in debug. It look ...Show All

  • SQL Server can we control how transaction send from principal to mirror ?

    Hi, can we control how transaction send from principal to mirror If application inserting 10000000 rows in one transaction to principal database how infomation will be transfered once it is commited and where it will be stored before it is replayed on mirror database 1. Is it going to be 1 big data packet 2.is it going to be split on many packets (of what size ) Thanks Alex Hi Sanjay , thank for you help can you post link where I can read about "log block boundary" in db mirroring you wrote > The log records are stored on the log files on the mirror and are are applied on the mirror database continuously Do you you mean they written to .ldf fi ...Show All

  • SQL Server Multiple records returned.

    The following statement gives the error that multiple records are returned. I am attempting to pick one weight out of a group of three, the three have the same ResidentID and different dates in the table variable @WeightReportRaw. If I hard code the ResidentID, ResidentID = 6, it works fine. The variable @intMonth3 passes in a month number ans dosen't seem to be a problem. What am I missing, Thanks in advance for any help. update tblResidentWeightsTemp set FirstWeight = ( select RWeight from @WeightReportRaw as W where ResidentID = W.ResidentID and month (W.RWeightDate) = @intMonth3) I am not quite sure about the background of the calculation but in common you should use the setbased approach (and in addition tr ...Show All

  • Windows Live Developer Forums How to make custom text for pushpin (pulling from xml element)

    I am looking to create a custom pushpin, where instead of the default pushpin appearing, you see a rectangle with the name/title of the location. The trick is I want to pull that title from the same geo-coded xml file which is used to display the layer when you hover over.   Okay so below is the code I am working with currently. I have seen the custom pushpins used - but Im at a loss as to how to make those custom pushpins be titled based on the title from the xml file. Here is the code to make custom pushpins - but how do I can't get the title to show up as a variable from the xml file. (" <title>  ")   <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html>  <hea ...Show All

  • Visual Studio Team System Getting error "TF10201: Source control could not start the manual merge tool"

    Hi I'm receiving the error " TF10201: Source control could not start the manual merge tool. " when I'm trying to resolve a conflict during checkin. The scenario is as follows: I have 1 file $/TeamProject/Dev/MyFile.h that has been branched to $/TeamProject/Branch/MyFile.h I have made changes to both the "Dev" and the "Branch" file, and then done a merge from "Dev" to "Branch", this creates a pending merge on "Branch" (as expected). Now I try to checkin the pending change and receive a conflict (also as expected), I click "Resolve" and select "merge changes in merge tool" and then I get the above error message. If I try to resolve this from the co ...Show All

©2008 Software Development Network