Oranso's Q&A profile
.NET Development i did not see this(floppy)
hi i created a vb.net Pr . now i go to bin directory to run .exe it is correct but when i copy only exe into a floppy !! my Pr was changed before,two weeks ago, i change myconfiguration of Pr into Release then it was correct but know i have this problem again(release does not response) Hi, Do you mean, "Is there any way " on copying your exe into a diskette and redistribute it Yes, as I said you can copy your exe into a diskette but the computer that will execute your exe must have a .net framework installed... cheers, Paul June A. Domag ...Show All
.NET Development My Application works in Debug mode only
Hi all, My .NET application works in debug mode only. If I build my application without the "Generate Debugging Information" equal true, the application start properly, looks like everything is just fine, I can use several commands of the same type, but it stops working, I mean it goes in a loop or something. If I run the same application with debug option equal true and I do the same test everything work just fine. This is a problem because a cannot debug the issue using VS. About the application: Language is C# IDE is Visual Studio .NET 2003 Type is a Windows Forms graphical application to draw vectorial persistent ...Show All
Visual Studio Express Editions Visual C# Express, Help disappeared
After installing SQL Express, Visual C# Express 2005 doesn't show any local help. Showing 'Exception from HRESULT: 0x800403BC' in a Dialog. What can I do, to fix this problem I've already reinstalled all this SW. Hello, Do you get the same result regardless of whether Help is set to Integrated Help Viewer or External Help Viewer You can set this option in Tools | Options | Environment | Help. By default it will be set to External. Thanks, Jeremy Jones ...Show All
Smart Device Development Binding Image path from XML document to Imagebox -- Not working....
Hello, I was sent from the XML forum here. Here's the post I posted in another forum. I've been having problems showing the images in my xml file. I can show the first image (kopf_ap.jpg) no prob, but it doesn't change when the other labels are bound/shown in their appropriate label. I have tried to bind the name of the file (burl) to a text label, and it worked. It's just not working for the image. Thanks for any help! I've been stuck for a while on this one... :S I am programming a pocket pc program (C#) and I'm getting everything except the advancement of the image. I would also like to say that I'm an extreme newbie when it come ...Show All
Visual Studio Express Editions Combo Box Help (beginner)
I added Items to the combo box. How do I define these items Combo Box has a value of 1' = 100' (This is what you see in the drop down list), but I would like to convert this to 1/1200. Can I do this Define {1' = 100'} = {1/1200}. If so, how By the way I would like the 1/1200 to be an Integer(I Think) so it returns a value of .0008333 repeating. Thanks, Mike hi, combobox have a valuemember and displaymember you can use the displaymember as " 100" and value member "1/1200" but first you have to have a table contian this data also .0008333 is double not integer hope this he ...Show All
Windows Forms Refresh Problem?
I have the follow problem: The first time i draw the image I get a blank screen( The image stay only a half second) but the next time the image is good drawn. I have looked for a refresh method but i didn´t find it. Any help By the way, i have to decide where i want the image to be drawn with the X and Y parameter&nb ...Show All
Software Development for Windows Vista The workflow failed validation
Does anyone know why the below would occur if I simpily moved it to a different assembly Thanks in advance, Mardo -- Server Error in '/Mimi' Application. Put a try catch block around the call to CreateWorkflow, catch WorkflowValidationFailedException and look at the Errors property. Like below: WorkflowInstance instance = null ; try { instance = workflowRuntime.CreateWorkflow(Type,Dictionary<string,object>); } catch ( WorkflowValidationFailedException exp) { StringBuilder errors = new StringBuilder (); foreach ( ValidationError error in exp.Errors) { errors.App ...Show All
Visual C++ Accidentally exposing namespaces to other assemblies by declaring unmanaged code.
I have a question about namespaces and how they are exposed outside of an assembly--and in particular, how this happens in a C++ .NET project using Managed Extensions for C++. I am using Visual Studio .NET 2003 for this solution. STEP 1: A namespace detecting module I created a simple C# project using the Console Application wizard. At the top of the default Class1.cs file that was created, I added the following code. using Foo=System.Collections; This creates an alias to the System.Collections namespace called 'Foo'. But I'm using it for a different reason. I'm using it to detect whether the namespace 'Foo' ...Show All
Windows Forms How to deploy a dotnet win application WITHOUT DotNetFramework 2.0
Hello, i am new to dotnet 2005. I created a setup and deployment project for my windows application and deployed in another machine which doesn't have the framework 2.0 and it is asking for download of framwork. I tried to include the prerequisites along with my application but it is costing heavy memory nearly 22 mb where my application is about 6 mb. Can you tell me is there any way to create a setup application including neccessary files only from framework. ...Show All
Visual C++ noob question
Iam using Visual C++ 2005 expresss editon beta. My problem is that when i build my program where does it save the exe to i've already looked into my project folder but it is not there Is there a certain button or something, your help would be greatly appreciated. Check the properties of you solution, under C\C++--> Linker you should see where the output file goes. Also, you can just search for the name of your executable on your machine from the windows explorer or just the command prompt and do dir /s <name of executable> to find the location. Thanks, Ayman Shoukry VC++ Team ...Show All
Visual Studio Team System Adding CC list to work item/bug?
Hello, I would like to be able to add a list of persons which receive a CC (per email) each time a Work Item (or Bug) has changed. How could I do that Best regards, Martin Is this that difficult In my opinion, this looks like a very basic feature I find a bug, I may or may not assign it to someone, and I specify a list of people which I know are affected by either the bug itself or by they way it is fixed ...Show All
Visual C# invalid cast
This piece of code works fine and needs no explicit cast in vb.net. itemId = arrCart(cartId, i) When I converted it to C#, however, it complained that it cannot do the implicit conversion. So I tried: itemId = (int)arrCart[cartId, i]; But I get an exception error read: Specified cast is not valid. itemId is an integer and arrCart is a two dimensional array object: int itemtId; object[,] arrCart; Can anyone tell me how to correct this What is in the array when you get the exception It could be anything (it could be a customer object) that can't possibly be converted to an integer. if you add a ...Show All
Windows Forms Dynamic loading of UI controls
Are there any good articles out there on packaging up UI into control library and dynamically loading them into a main shell. With the main windows being a .NET executable and the UI library a dll. Thanks Pat JCasa - It will probably be more work to do the merging yourself - as I believe you'll have to add/remove items, but it hopef ...Show All
Visual C# XmlInclude works but now my objects dont serialize
Hey all I have an object that contains a strongly typed array of sub-objects. I have marked all of the objects as serializable. However initially it wouldnt serialize. So I found online that if I use the XmlInclude attribute that will fix the problem, which it sort of did. It serializes now and the basic object comes across the wire (with web services) just fine. The collection is there and has objects however all the objects are null. Any ideas on what could be wrong Thanks Kenzie Hi Kenzie, Could you post your code Thanks Poppyto ...Show All
Visual C# Using a Timer
Hello, Here's my problem, i'll write it in text code: now time = 18.00 turn on alarm = 20:00 start_program(); check_time() if (now time = time to turn on alarm) --> turn on alarm else if(now time = 30min to turn on alarm) --> make a sound else if(now time = 15min to turn on alarm) --> make a sound else if(now time = 5 min to turn on alarm) --> make a sound So I kind of want a timer that know what time it is, so when its 30 min left until the alarm shall be switch on, it'll make a sound. Is this possible ANd one other thing, how can I say that a timer shall count down from 30 to 0, and when it reaches ...Show All
