Answer Questions
a_takavci Access2003- Multiple Parameter Search in a Form
Hi Basically what I want to set up is a search for the user so that he can look for any information, and just has to tzpe it in the form. What I did until now: I have a form in Design view and make unbound textboxes. Then I create a query which looks inside of this text boxes to find me the specified information with look * & [] & *. My problem is that when I install more that one parameter search, the query doesnt show me every record ...Show All
hansgielen Shortcut problems
I created a VS 2003 deployment project and I've set it up the way I want, even with a custom installer class. At first I had shortcuts on the desktop and in the program files that were working. Now, the shortcuts will uninstall the program if you double click them. When looking at where they are pointed, they show the installation folder and not the executable. I've recreated the shorcuts and changed other things, but not ...Show All
ST1 A little difficulty with passing both ID and text fields from a combo box in a form to another form while using VB2003
I have a combo box populated by OleDbDataAdapter and data set in a form. And I need to pass to other forms both the selected displayed text in my combobox and the corresponding ID field of my table. The ID field is an integer and will be saved instead of the displayed text itself. I use a OleDbDataAdapter and oledbconnection and data set in my forms. I also use Display member property to display the right column (text in my c ...Show All
sarran Serialization question
' Sender's end. Public Structure Chat Dim fromPlayerID As Integer Dim toPlayerID As Integer Dim Message As String End Structure Sub Main Dim C as Chat C.Message = “Test” SendData(“CHAT”, C) End Sub Public Overloads Sub SendData(ByVal pHeader As String, ByVal pData As Object) Dim packet As New NetworkPacket Dim data(30) As Byte   ...Show All
DaveHot Address Of just got funkier!
I hate to continue the bashing of the addresof but here's the problem i'm facing. 'any function that takes a type as a parameter and returns the same type delegate function Funk(of TBoth)(byval param as TBoth) as TBoth 'a function that satisfies the above signature (takes and returns an integer) function AddFive(byval param as Integer) as Integer return param + 5 end function 'a function that takes a value and a function as parameter ...Show All
whitesky Mixed data type in a Mulicolumn listbox
How do I store an object and the object.text in two separate columns in the same row of a listbox I want to make one listbox column visible and one hidden. I understand what you're saying by 'program the object model only and use the controls for usage of that object model'. This makes alot of sense. Thank you for your persistence in presenting your case. ...lesson learned. The code works. its really no ...Show All
Kapop Com Interop problem with VB.Net project
I have built a variation of the Ldap Authentication function referenced in http://support.microsoft.com/default.aspx scid=kb;en-us;326340#3 The problem i am having is accessing the resultant .dll Do I need to research and develop a "strong name" for the assembly The properties are set to "Register for Com interop". Is C# a better platform for building COM objects VB.NET is a great la ...Show All
danb2005 dockable toolbar
Hi, I hope someone can help me. I would like to create a dockable desktop toolbar for my application similar to the one windows media player 10 has. I have been searching the net for a vb.net solution but have only found and read about IAccessible Interface which does not seem to be available in visual basic and also a class toolbarwindow32 that is said to be in some c++ header file can someone plz help!! Thanks alot. I've looked ...Show All
lanfong Start application as Administrator.
Hello, Is it possible to run a program as a different user, like Administrator. For example: I define the Administrators password in the program, the program starts, and then runs with Administrator priveleges. I know about the option 'Run as', but i want the program to start at startup, run as an Administrator and do his work. Thanks in advance. Hi, Probably I have messed up the code trying to ...Show All
MS ISV Buddy Team how can i gradually reduce the opacity of....
how can i gradually reduce the opacity of a panel control Use a timer control. On the tick event just adjust your opacity accordingly. ...Show All
vtcoder Simulate a mouse click in a program
I have a VB program and I need to simulate a mouse click in a webbrowser window. How would I go about simulating that click on the screen. Thanks Most often you'd use the API FindWindow(). The VS tool Microsoft Spy++ comes in mighty handy for determining the parameter values. This is, however, not one of those FindWindow() cases. If you Spy++ the button, you will find that the window is the "Intern ...Show All
Nathan Liebke Delay or Pause
Hi, I have Kiosk application which starts the browser inside the Kiosk. But due to wireless, I have to pause the start of the application so that wireless should first kicks in and then the applications starts.. My VB program conatains a browser control. Here is sample code Me .webBrowser.Focus() Me.webBroser.Navigage("LoadingPage.htm") System.Threading.Thread.Sleep(20000) Me .webBrowser.Navigate(URL) Where URL is on the s ...Show All
Kawish How to set Border color for Label control
Hi, How to set the border color for the label control in VB.NET windows application. I have used the below code in my user control for custom label. It is drawing the border color, but it is not getting refreshed. The code is given below for your reference. 'event used to paint the control, which is overridden to draw custom border color Public Overridable Sub Label_Paint( ByVal ...Show All
Caspelling Passing data from form to form in the same project
Hello, My project have multiple forms. How can I get a text entry from one form and have it display on another Is it also possible to do with Radio Buttons Thank you. In my project there are multiple forms. The first one is the main form when in run mode the user enter some data and then move to the 2nd form. After the 2nd form data is been entered, a 3rd form is generated and should have information from both forms 1 and 2. I am looking i ...Show All
Cory Nguyen VB. Net Form does not refresh
Hi, I have created a simple VB.NET application with one form and a few modules. When a user clicks on a run button of the form the application starts and goes through differet cycle, while updating the user on status bar, runs for less than four hours. The application works fine, it gives desired result. However, it is not able to refresh the user form, meaning status bar remains same after some time (it suppose to increment). Even when I ...Show All
