Dmitry Lysenko's Q&A profile
Visual Studio Express Editions how can I create .exe file in VBS 2005 EE?
Can some1 plz help me with this noobish question I can't make an executable file from my project,I can only save project as .vb ,text or any file(but if I type .exe as an extension it just doesn't work) I don't have option to make it an .exe file,so what's the way to compile it as an executable I'm using Visual Basic Studio 2005 Express Edition. Thx in advance for any help. hi, you can go to this link and watch the last vedio number 16 it talk about deploying your project and the ways to do that in vb express edition http://msdn.microsoft.com/vstudio/express/vb/learning/ best regards ...Show All
Visual Basic NT Windows Authorization
I have a vb.net 2003 application that runs on client computers and talks to a database over the network. I would like for my client application to capture the Windows Authorization of the machine on which it is running. Can I see a code snippet. Fred H It does until after the proxy server. 1.)Are you saying that A wants assurances of protection from your software accessing any of their software Furthermore Are you saying that they want you to verify that they are protected from you I understand what is troubling to me here. It's the lack of specificity. I would think that there would be a burden on B to specifiy ...Show All
Windows Forms add customized combo box in datagridview
i have my customized combo box found in the other site. i need this to add in dfatagrid view the combox box have multiple columns which i find it suitable for me.for now, the problem is aading it in datagridview heres the my code public class mycombo inherits datagridviewcomboboxcolumn public withevents columncombobox as mtgccombobox ---this mtgccombobox is mycombobox found on the other site ........ end class then in datagrid when form loads dim col as new mycombo datagridview1.columns.add(col) --- the combox box shows but the data inside combo box does not show any missing code in my c ...Show All
Software Development for Windows Vista Getting Return Data from a sub Workflow
Hello. I am calling a sub workflow from a work flow via the "invokeWorkflow" shape. Here is my problem. The sub workflow returns a value that is displayed via a web service. How can I retrieve that value from the sub workflow in the main workflow The master web service passes a value into the main workflow, and that value is in turn passed in the sub workflow so that it can perform its work. Now I need to get the return value back. Any help would be appreciated. Thanks. Hi Greg, The InvokeWorkflow activity executes the target Workflow asynchronously, and there is no provision in the I ...Show All
SQL Server DB Files
I have my Production database running in SQL Server2000. Some of the data is processed in Non-Production environment which has the same name as that of the Production database. The Non-Production environment has some additional tables with large volume of data . I want move these additional tables only to my production environment without overwriting the existing ones in production environment. Is there any way to move my dbFiles and attach there without overwriting the existing ones in production environment. No. You cannot use database files from one database in another. SQL Server doesn't provide ...Show All
Visual J# a Bug error !
hellow to all .. i have microsoft j++ on my pc and the .net ... i am trying to run a program that is made from a java applet , when i run it it open's exploer , and then i recive the microsoft colse message from the internet exploer ! any one have anyidea what is the reason and how can i solve it thxx Just to understand your problem, - What error message do you see on the internet explorer. - Could you post some small code snippet which reproduces your problem. Thanks, ...Show All
Visual Studio Failed to create wizard.
Follow the steps in the Walkthrough: Creating a Wizard http://msdn2.microsoft.com/7k3w6w59.aspx use c#. After step 6, I got two warnings Warning 1 "I:\test\MyNewWizard\bin\Debug\MyNewWizard.dll" does not contain any types that can be unregistered for COM Interop. MyNewWizard Warning 2 "I:\test\MyNewWizard\bin\Debug\MyNewWizard.dll" does not contain any types that can be registered for COM Interop. MyNewWizard After step 12, I got a messagebox "Invalid at top level of the document". What's wrong Solved by set the ComVisible attribute to true in AssemblyI ...Show All
Visual Studio Express Editions NC messages oddity UPDATE
I'm using VC++ Express to create a DLL for a global hook system I'm writing. The unusual thing is that as I'm trying to catch the non-client messages I can't seem to get the to trigger properly. For example I'm trying to catch the WM_NCRBUTTONUP message anywhere on the non-client area and it doesn't trigger unless I click the tiny little border around the non-client buttons. If I click directly on the minimize button ... nothing happens except for the system menu popup, but if I click on the tiny little border around the minimize button, the callback triggers. Could anyone possibly explain this behavior to me or tell me what in the world I'm ...Show All
Windows Forms Can't Install Terrarium
I would like to try this out but having difficulties installing. It gives me an error saying that I need DirectX 7.0 installed. I have DirectX 9.0b. Anybody know why or how to get past this error I have the same problem with a different program, the program requires the file DX7VB.DLL to be registered the only problem is I don't have the file but I have Direct X 9, so how do you get the file Nvm i foun ...Show All
.NET Development C++/CLI linked with win32 dll's in C# (msvs2005)
Hi! I'm making a GUI for an engine I'm working on. The engine is separated into two win32 dll's and the GUI is supposed to be written in C#. I've decided to make the interface between C# and the engine using C++/CLI since that seems like the cleanest and best solution. So what I have is the following: EngineA.dll - the two engine dll's in win32 code EngineB.dll - * SVCore.dll - The C++/CLI interface class. Exposes functionality from the engines SceneViewer.exe - The gui Now the problem arises when I'm trying to include a reference to SVCore into the SceneViewer project (etiher a reference to the project or to the target dll). The class com ...Show All
Visual Studio Team System Code Analysis check-in policy and Unit test projects
We have enabled "Code Analysis" as a check-in policy for our Team Project. We have also created Unit tests. When we are about the check-in the Unit test projects the Team Foundation Server prompts us to run Code Analysis on the projects, so we enabled the Code Analysis on the Unit test projects. We get a few warnings on the generated Unit test projects. Such as: Warning 85 CA1304 : Microsoft.Globalization : Compilator_DD_LogOn_FChangePasswordAccessor.InitializeComponent():Void makes a call to Microsoft.VisualStudio.TestTools.UnitTesting.PrivateObject.Invoke(System.String,System.Type[],System.Object[]) that does not explicitly provide a Cultu ...Show All
Game Technologies: DirectX, XNA, XACT, etc. drawing circles
hi guys, could u tell me how to draw a circle around a perticular object in the world sorry guys , again iam asking same question because iam a 4 months buddy to directx iam drawing a circle in the world around a perticular object. which should be scaled or rotated dynamically. e.g the circle is around the object , if i drag or rotate the circle with mouse the object should rotate of scale or move int the world. some of answers posted here are ...Show All
Visual C# copy data from an pointer
Hi i have a hook dll created in c++ that send messages to my c# application.. the WPARAM its a pointer to a struct that has some informations C++ Struct typedef struct INFO{ LPARAM lParam; // an original LPARAM UINT code; // a code HHOOK hhook; // handle to the hook }; ok now i have the pointer 2 this struct .. but how do i obtains the values from in in c # First you need to build a struct in C# which matches the C++ struct (variables sizes and sequence). Then use the Marshal class: Marshal.PtrToStructure and Marshal.StructureToPtr ...Show All
Windows Forms Clickonce not updating all clients
I have a fairly simple application that is being used by about 50 users which I deployed using ClickOnce. The internal users clicked on the "publish" page to install the application and are now starting it by clicking on the icon under Start, All Programs. I have been regularly publishing updates to this application using VS 2005. I wanted to "force" every update on the users (make them mandatory), so I have been incremeting both the Publish Version and the Minimum Required Version. This seems to work well for 95% of my users - every time the application is run, it checks for a new update, downloads if necessary, and r ...Show All
Windows Forms Help with WndProc override
I have inherited from ...::UserControl and have a need to capture private window messages. I have been all over the Internet and tried everything and have found no means to override virtual WndProc. My latest definition looks like ... protected : System::Void WndProc(System::Windows::Forms::Message m) { __super ::WndProc(m); } ... where from the debugger I am sitting on __super ::WndProc(m); to see if the break point catches. Breakpoints elsewhere in the code catch just fine, but no definition of WndProc seems to allow for an override. Any suggestions bxs122 wrote: I have ...Show All
