Answer Questions
Youngmin park Compiler for visual basic to complie project from 32 bit to 64 bit
Hello I have developed an visual basic 6.0 application that execute on 32 bit window .This application doesnot support 64 bit .Now i want to compile it to 64 bit so that it can be executed on 64 bit window. Is there any compiler for this or is there any alternative to achieve this. Wating for positive reply. Thanks in advance! Rakesh T hese forums are for VB.NET and there are better places ...Show All
billqu Child form???
Excuse me guys. Could someone please tell me how to create what I’m assuming is called a child form (a form that when open takes priority over the main form so I can't access the main form until I’ve closed the child form). Thanks in advance!!! Dim newForm as new <YourForm>() newForm.ShowDialog() Thanks, that really helps a lot. I used a combination of both and there’s one more thing I need to m ...Show All
Christopher Payne Syntax Question
Hello, I never understood this kind of syntax; how does if ((value and value) = value) work Something like this: If Not ((objType.Attributes And TypeAttributes.Abstract) = _ TypeAttributes.Abstract) Then Thanks. That code depends on a few things - TypeAttributes is probably an enum where each value is define ...Show All
mkb137 Reference Required to Assembly
Error 1 Reference required to assembly 'System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=969db8053d3322ac, Retargetable=Yes' containing the type 'System.Net.Sockets.Socket'. Add one to your project. C:\Documents and Settings\@myg@l\My Documents\Visual Studio 2005\Projects\Merchant\Merchant\Form2.vb 11 21 Merchant Wat does this mean How to solve regards amygal Sounds like your project doesn't kno ...Show All
Otto Martinez Proxy setting
I have to configure proxy for Internet Explorer only setting the flag "Automatically detect setting". Is it possible to do in Visual Basic I am very confused about ProxyElement, WebProxy and WebRequest classes Thanks, ...Show All
EricHurl Help.
How do I create a grid of pictureboxes (25 x 25) on Visual Basic 2005 and auto-name them pbx(row)_(column) for the picture boxes It is to slow and hard to manually rename all 625 of them. Ok question answered, thanks. New question: OK, I ran into another problem. I want it be so that if I click the picture box with the person in it, you can move him by clicking on another tile. How do I do this (I tried (got from Dustin_H 's sample code) : ...Show All
Sunil Nahar Getting the connection string for a project
I'd like to set a string variable to the connection string for a project. I've seen the build connection string module/function and tried to use it but it's hopelessly complex for what I want. I just want the string. Is there an easier way Well a connection string is an easy thing. What I'm trying to ascertain and I don't think you're providing is where exactly you are hoping to get his value from Fr ...Show All
Adam Robinson Monitoring system messages?
Is there a way in vbExpress to monitor the system messages going between the tcpip input from the net to the displayed windows form I get the data I need now by reading the screen, but it would be much easier and faster if I could instead capture the input to the form before it went to the display. I would very much appreciate any suggestions. Thanks Dick R. Hi ReneeC, The form contains about 36 a ...Show All
homerc44 Non-working keys in VB 2005 Express editor
My previously working 2005 Beta version expired so I uninstalled it and reinstalled VB 2005 Express Edition per the instructions. Now the backspace, arrows, Enter and some other keys don't work in the editor (same result whether a new project is created, or an old one loaded). Any help would be appreciated. Thanks, but resetting keyboard mappings doesn't help. There are some additional symptoms besides n ...Show All
Maximilian Raditya WIAAut from PictureBox to JPGfile directly?
ok WIAAut is nice. My problem is I am capturing a desktop image to a PictureBox and want to save the PictureBox image directly to a JPG file. Only examples I can find show that the conversion must come from a file. Hence I must save the capture as bmp, immediately load it back in, convert it to JPG and then save it Anybody know how to do it directly ----------------------SO FAR---------------------------------------- &nb ...Show All
Adam Singer MSFT write to Active Directory
Hi, I need to write something to active directory, the structure of the Active Directory as below: DC - Account Group - xx group - Distribution Group - xx - Test - member 1 of test - member 2 of test I want to add another member to Test under Distribution Group, the code i am using as below, but it fails when executing the CommitChanges statement: Private Sub addToAD() Dim group As New DirectoryServices.DirectoryEntry ...Show All
Larry McCay The WebBrowser Control as an HTML Editor
We've seen several questions about using the DHTMLEdit control as an HTML editor. That's not needed. The WebBrowser control is quiet the good WYSIWYG HTML editor. Here's how to do it.... Public Class Form1 Protected m_EditMode As Boolean Protected Const HTMLSalutation As String = "<html><HEAD></HEAD><body>" Protected Const HTMLClose As String = "</body>" ...Show All
KKOlson ENTER key acting as TAB
I have searched the forums and I know that there are some posts about this, but I did not get a clear answer. I have a form that have three large group boxes for different data entry "zones". Each group box contains about a dozen text box controls. The data entry operators here are used to keying on an AS400 dumb terminal that uses the ENTER key to TAB to the next field. How can I duplicate that behavior on a form I have trie ...Show All
Girish K Disable Ctrl+PrintScreen
I have a Windows Form. I want to prevent the user from Pressing Ctrl+PrintScreen and then pasting the form's image into another Windows application such as Microsoft Word. Initial attempts to use events such as KeyPress, KeyUp have failed quite miserably I might add. If I could somehow disable the Ctrl key and or the PrintScreen keys in the Form's Load event, that might do the trick. Thanks in advance for any input. Co ...Show All
primevest Gonna make me sound stupid
I know this is gonna make me sound stupid, but I have to ask anyways because I have no clue. I new at creating programs in Visual Basic. And I was wondering how to complete a program so that you can run it without having to open it with Visual Studio. For instance lets say that I wrote and alarm clock program for my labtop. Now how do I make the program so that it will work as a stand alone program without the need for Visual Basic Remembe ...Show All
