VladAll's Q&A profile
Visual Basic Compile VB to one EXE
Hi, I made a Visual Basic program, using Visual Basic Express Edition 2005. It contains several files, after it is published. Is it possible to compile these into one exe file that the user can run yes, it does form one exe, but it also forms a .application file, as well as a folder with the application's name with it... Is there any way to compress these three items into an installer similar to freeware programs thanks, scottg ...Show All
Windows Forms stretch form to full screen c#
Is it possible to strech my form to the resolution of my screen [coded in C# net2.0] I need to install my application to computers that have a lower screen resolution. 1280x1024 to 1024x768 for example. Thanks for your helps Mark Hi, would a simple form maximizing work for you [set form's WindowState property to Maximized...] The controls on the form would have to have their Dock and Anchor properties set appropriately.. Andrej ...Show All
Windows Forms Permission problems after enabling ClickOnce
Hi, After enabling Clickince in my app which uses Composite Application Block (CAB), I have run into some problems. When I got Clickonce to deploy my app and I got it installed, I tried some different settings as it crashed on startup. Now, my app which worked flawlessly in VS before, won't start when launching from VS. I get the following error when loading assemblies. I tried adding new references and recompiling everything etc. Nothing seems to work. I can start the program by running it from the bin folder using explorer. "Could not load file or assembly 'Microsoft.ApplicationBlocks.CompositeUI, Version=1.0.50630.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. Failed to grant minimum permission requests. (Exc ...Show All
SQL Server Generate and save a report from reporting service ( remote processing)
If I have an asp page with a button, what are the means or methods to trigger the event to process a report, save into a report and store in a file server or any directory All these is done backend without the need to display to the browser. Using RS Web services or Delivery extension programming things like that Regards Alu Hi Alu, I can't help directly with programming ASP buttons but . Have you considered using reporting subscription service, go to report manager , view a report , subscription tag. You will then have the choice of process a report, specify the report file type you want , saved in a directory you specify on a schedule you want . If you have specified reporting services e-mail setting you will h ...Show All
Visual Studio Express Editions Save
How do I Save a file with out calling the dialog box, at the moment I can SaveAs the file(with dialog box) but what I'm after is when you click just save it just saves the file that is opened in its original format with any alterations that have been made. The program is a cut down version of a text editor. You just have to declare it outside of any procedure, usually at the top. If you declare it with Dim, which is essentially the same as Private, then it will only be accessible to other code in the same module. If you want to access it from elsewhere then you need to declare it as Friend or Public. For example if you declare it as Friend in Form1 then you can access it from Form2 using Form1.cu ...Show All
Smart Device Development Who has a PPC-6700 Sprint AudioVox Mobile 5 (Can I use GPS?)
I have the Sprint AudioVox PPC-6700 and I know that it has the built in GPS chipset but everywhere that I search I can not find out how to actually access the API. There are a few of the GPS API references throughout msdn & msdn2 but none have an actual walk through. It is very easy to access the phone API's and contact lists/appointments and whatnot but the GPS is not to be found. As far as the GPS is conserned one could argue that it isn't ment to be programmed or something but the fact is that in all documentation it says that e911 can use the gps and also applications that need your location (such as movie times or resteraunts in your location). I really need to find out how to manage this out even with just a simple quord ...Show All
Windows Forms closing application
on desktop taskbar when user select any application and make a right click on mouse, it displays pop menu. Is is possible to catch event for c# application when use select "close" or "close group" menu item under this pop menu also it there anyway to disable this "close" or "close group" menu items You'll get a Closing event on your Form when the user selects "Close" or "Close Group" from that popup. There is no documented way to intercept the Close Group menu item (it's owned by the Shell, not by the application(s)), so you can't disable it. You can only abort a close requested by clicking them, on an application-by-application basis. ...Show All
Visual C# Arraylist
Would you add a list of information like.. ArrayList arrl = new ArrayList(); arrl.Add(1); arrl.Add(2); arrl.Add(3); for( int x = 0; x < arrl.Count; x++ ) { Console.WriteLine( arrl[x] ); } or like System.Collections.Generic.List<string> list = new List<string>(); string input; while ((input = Console.ReadLine()).Length > 0) { list.Add(input); } string[] array = list.ToArray(); it could be strings or integras... also what is the actual difference.. someone has explained it to me before.. but I'm still abit confused. Both are possible. However, the second is better, for several reasons: -The code is easier to read (since you know you have a list of strings, instead of only a list of obje ...Show All
Visual Studio very important
hi for all please answer to me very fat . why i cant install visual studio 2005 in my computer. the error is : Suite Integration Toolkit Executable has encountered a problem and needs to close. We are sorry for the inconvenience. please help me. is this for the express editions or the full version of VS2005 take a look at this: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=135290&SiteID=1 ...Show All
Game Technologies: DirectX, XNA, XACT, etc. A problem with Product.cab
Hello people. I have a answer. I was trying to install the XNAGSE, but there is a problem The Error: "Product.cab is corrupt" Can anyone help me I cannot try for today re-take the installer of XNA, thre is another solution Thanks. Marcelo Chaves Goncalves wrote: Hello people. I have a answer. then why ask haha just kidding, probably a translation but you should just download the installer again ...Show All
SQL Server Insert or Update SSIS for Composite Primary Key
Hi , We have scenario like this .the source table have composite primary key columns c1,c2,c3,c4.c5,c6 .when we move the records to destination .we have to check columns (c1+ c2 + c3 + c4 + c5 + c6) combination exist in the destination. if the combination exist then we should do a update else we need to do a Insert . how to achive this .we have tryed useing conditional split which is working only for a single Primary key . can any one help us . Jegan.T Jeagant I assume that your warehouse has all 5 keys as the business keys in your warehouse. You should then have a surrogate key in the warehouse which is what you would like to lookup. Create a Lookup joining all the source keys to business keys r ...Show All
Windows Forms trouble saving textbox.txt
Have a details view of "invoices" on my form with the fields InvoiceID (is identity) as combobox CustomerID as combobox Date as month calendar InvoiceTotal as textbox Invoiceid is autoincrement, customerid is selected from drop downlist, date(obviously just pick the day), InvoiceTotal is filled on a button click from dt.compute("sum(Total)","") My tableadapter insert, select and update all select all fields except InvoiceID. When I try to update It is not "seeing" the value in the textbox and says, "cannot insert null value "invoicetotal"" Databindings are set to invoicebindingsource, invoicetotal. Have changed Textbox datasourceupdatemode to onproperty ...Show All
SQL Server Merge Replication Mysteriously Deleting Rows
I am running a simple merge replication in SQL Server 2000. I have one database that is the publisher, and a second database that is the subscriber. When I add a new row to the subscriber it will replicate to the publisher as expected. However, the new row at the subscriber will then be deleted without explanation. The row will remain at the publisher though. Does anyone know why it is doing this I am using horizontal filtering on two tables. It's a simple "where bit = 1" filter. For example if a special flag is true then the publisher will replicate it to the subscriber. Of course, for the subscriber this value will always be true. Like I said, I am not doing anything really complex. ...Show All
Visual C++ C3200 Compile Error in VC++ 2005 - Compiles Ok in VC++ 2003
Any ideas why this fails to compile with 2005 but compiles Ok in 2003 /* * Microsoft Visual C++ 2005 Version 8.0.50727-4200 * Fails to compile with error C3200 (see below) * * Microsoft Development Environment 2003 Version 7.1.3088 * Compiles Ok. * * Both have 1 C4355 warning */ namespace C3200 { namespace A { template<class _Derivate> class Z { public: Z(_Derivate& _d) {} ~Z() {} }; template<class _Derivate,class _B> class Y : public _B { public: Y(_Derivate& _d) : _B(_d) {} ~Y() {} }; template<class _Derivate, template<class _Derivate> class _B > class X { public: typedef Y<_Derivate,Z<_Derivate> > Type; }; template< ...Show All
Smart Device Development Using registry in CETK
Hi All, I am not sure that I'm posting in the right place, please correct me if I'm wrong. We have a Wireless LAN driver + HW which we hooked to WinMobile. I was wondering if the latest CETK tool which is testing Wireless LAN devices is using the registry as an input to the driver to set parameters or is there a set of specific OID that need to be supported Thanks ========= Benzy Gabay Texas Instruments I am sorry this forum is dedicated to Device Emulator only. You would like to post this question to microsoft.public.windowsce.platbuilder newgroup. -Thanks, Mohit ...Show All
