XVID's Q&A profile
Visual Basic receiving email with .NET VisualBasic
How can a .NET VisualBasic application or web app receive email you may try 1. your VB application connect to a Exchange Server using Post Office Protocol 3 (POP3) and Internet Message Access Protocol 4 (IMAP4) protocols as well as support for Simple Mail Transfer Protocol (SMTP) http://www.microsoft.com/exchange/evaluation/whatis.mspx 2. create your own SMTP server http://www.c-sharpcorner.com/Code/2003/Sept/SMTPPOP3MailServer.asp ...Show All
Visual C# need help about user control
Hi all, I make a user control that need validation. So before one control is validated another control cannot focus. but when iam trying to check/uncheck checkbox and radiobutton, click button with different usercontrol, these controls can be focused and executed. it makes me very confuse. Need help from all of you guys, how to solve this problem. I have uploaded my simple program at this link below http://rapidshare.de/files/13003561/WindowsApplication2.rar.html try to click control in yellow area, compare with control colour area. Thanks i ...Show All
Game Technologies: DirectX, XNA, XACT, etc. loading mesh like mesh viewer
is there a way and if so how can one load mesh files like the mesh viewer loads them, I took just for kicks the tiger sample and loaded a mesh that a friend made and it dident load right, rotates right off the screen, I dont really understand VC++ much to find my way through the mesh viwer code I am using C#, and help would be great. I did both of those and maybe its not my lights, let me explain whats happening. when I load a mesh the texture color changes, it should be a rust color but shows up as a gray color what could be causing this ...Show All
Visual Studio cannot run help integration wizard
I'm using Visual Studio 2005. I'm trying to use the Help Integration Wizard but failing, it will not run: "The operation could not be completed". I've installed VS2005 SDK and afterwards installed the Help Integration Wizard, both installers downloaded today. I also rebooted. I'm following the "Help Integration Overview Instructions", a simple new project of type Help Integration Wizard. It fails as soon as I select OK on the new Project dialog. Anyone Check this thread http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=303025&SiteID=1 (unfortunately no solution, but same problem) ...Show All
Visual Studio Team System Newbie, need help on import existing projects
Hi All, I've done installed TFS. Could anybody tell me how to import an existing VS2k3.Net solution projects that I get from pvcs (serena dimension), about 50 projects I would like to have exactly folder structure. P.S: where do I could get TFS and other users guide Best Regards, Hi All, I found the solution. It kind of painful task but it works. The SCC was written in the visual studio project file. Just deleted them, then the conversion will not ask for plug-in. Best Regards, ...Show All
Visual C# Getting process count?
Does anyone know how to obtain the process count from a process control Hi, The using directive is something you add at the top of the source code file before the class and namespace declaration in order to import a namespace. You could also place it within the namespace. If you create a new Windows Form application and open the Form1.cs file which was created and scroll to the top, you will see the using directives placed there for some of the Namespaces. In this particular case, you can simply add the line: using System.Diagnostics; as the first line in your source code file. Also read: http://msdn.microsoft.com/librar ...Show All
Visual C++ Error C2228;
I am trying to concatenate a first name and last name which are entered seperately. I have had luck with using integers, but not names :(. I want to enter first name, then last name (seperately) then output the names with a space between them (output the whole name). Here is what I have #include "stdafx.h" #using <mscorlib.dll> using namespace System; int _tmain() { String *firstName, *lastName; & ...Show All
Visual C++ msvcr80.dll Problem
Hi there, can someone possibly tell me why Noton WinDoctor is telling me that 10 executables in the .NET Framework 2.0 cannot access the necessary dll file msvcr80.dll I see that the dll exists in the WinSxS directory and I'm running XP pro. I didn't have this problem until I downloaded the 2.0 framework at windows update. Any advice appreciated. Thanks. Naolin I am having the same problem... I even uninstalled it.. and it didnt show a problem then I reinstalled the update and it showed up as a problem in the Windoctor again... any ideas as to what is wrong with this update Im sure its a simpl ...Show All
Windows Forms Picturebox control
I'm making a 2d Game and I have run into an annoying problem I can't fix... Well this is my code for making the bitmap in the picturebox transparent, but its only transparent to the form's color and not when its overlapping another picturebox. The color of the form is silver, and there is just a big grey box around my creature that overlaps the other pictureboxes when i set the order to "bring to front", im too lazy to use anything else than pictureboxes. Could Someone help me fix this problem Dim g As New System.Drawing.Bitmap(PictureBox1.Image) g.MakeTransparent(System.Drawing.Color.Magenta) PictureBox1.Image = g Hi, i've ...Show All
Visual Studio Express Editions Create a thumbnail browser
Hi All, First post having discovered the express version a couple of days ago. For a few years I have been coding inside Access to build database apps but have felt the need to expand my horizons a little further. My current personal project is to create a personal photograph album application linked to a database that will store the information I want and present in a way that is useful to me. I have reasearched and got a basic plan for the vast majority of the features I wish to include and ideas to start working through them. The one exception is (unfortunately) the biggest part of the entire application - a windows explorer type ...Show All
Software Development for Windows Vista How to generate parameters in Custom Designer of workflow
I am newer. Pls help. If i use customer designer to create new workflow, how to generate parameters in this. I means , i have a web application throw a form package(FormInfo) after requestor submit the form. back-end, how to create a workflow by designer to receive this package and how to use it (i.e. ifeslebranch, rulecondiction). Hello, It depends on what you want the workflow to do. Can you give an example Charles ...Show All
Visual Studio Express Editions Simple, yet complicated questions...
Hello, I am new to programming, and would like to jump right into making some quality applications. I have been in a C++ programming class since August, and have really become familiar with the basics. At first, I practiced with the simple stuff, and made some very cool console applications. After creating these applications, I made a release build, and sent them to some friends to get their opinions. Then, I began to step into Windows Form Applications. I created a quick little Form Application, and it worked perfectly. Then, I created a release build, but sadly, when I sent this to my friends, it did not work. I began to do a lot ...Show All
Visual C# DLL Files
You can create an DLL so that you can easy deploy this with more projects. There are no performance penalties, when a DLL is needed it will be loaded and it stays loaded untill the application ends. For your development it can be handy to have multiple projects (DLL's) and for the update process it can be usefull to. The user doesn't have to download a very large .EXE file when you only updated one class for example. You can sepperate them by namespace, just as the .NET Framework does. MyApp.Data < MyApp.Data.dll > MyApp.Data.Gateway MyApp.Data.Gateway.Mssql MyApp.Data.Gateway.Access MyApp.Data.Gateway.Webservice MyApp.Net ...Show All
Windows Forms set Datagrid color of each 4 rows
Hi, I have a datagrid and I want first 4 rows to appear in one color, next four in another color and so on. Basically the data in the datagrid is in group of 4 i-e each item is described in 4 rows and next item in next 4 rows and so on. I want to display them in a way that makes it easier for the user to see  ...Show All
Microsoft ISV Community Center Forums Source Object as a query
Hi i have a form that contains 2 text box's and a subform what i really want to do is to run a query and not have an input box popup i would like the dates entered into the 2 text box's to be used in the query of the subform and display a table that shows all records that are between date 1 and date 2. SQL code: PARAMETERS [First] Text ( 255 ), [Second] Text ( 255 ); SELECT Equipment.* FROM Equipment WHERE (((Equipment.[Date Installed])>[First] Or (Equipment.[Date Installed])<[Second])); i want to beable to call this query from a form or to write this query using the values in the text boxs to generate what records should be displayed. ...Show All
