Search results for query: *

  • Users: crystaluz
  • Content: Threads
  • Order by date
  1. C

    Question File is being used by another process?

    Hello there... I have this function to compress a folder : Sub compressFolder() Dim folderToCompress As String Dim newDirectory As String = "Compressed" Dim compressedLocation As String compressedLocation = My.Settings.compressedLocation + "\" + "The...
  2. C

    Question Textbox is not displaying value

    Hello there... I use these codes to print out the location of the device. The problem is, the value is not appearing in the textbox (txtLatitude) when the form is loaded. But when I replace the textbox with MsgBox(Latitude) it works perfectly. I just don't understand why the value is not...
  3. C

    Question Webcam Capture | Select Video Source Dialog Box Appearing

    Hello there.. I'm using this code to capture an image from built-in webcam. It worked. But when I run the code for second time, the Select Video Source dialog box started appearing. But when the laptop is rebooted, the code will work fine. This is the code when button is clicked in order to...
  4. C

    Question Controlling Windows Based App from Web Based App

    Hello there... I'm wondering if we can control Windows Based App from Web Based App? For example, a user wants to activate alarms system in the laptop remotely by only accessing the web based app. Is it possible? If it is, what techniques/methods can be used? Thank you...
  5. C

    Question Reset Command Not Working

    Hello there... I'm using required field validator in my form. The problem is, my reset button is not working when the validator is executed. below is the code for reset button : Textbox1.text = "" Textbox2.text = ""
  6. C

    Question Image not display

    Hello there.. I have a problem here.. I am trying to design form in VS 2008.. I have inserted an image using the image control. The image display correctly in runtime and in the VS 2008 design view. But when I try to open the webform using Adobe Dreamweaver CS4, the image did not display...
  7. C

    Resolved Need help about Conversion error

    Hello there.. I have a problem with "Conversion from string "" to type integer is not valid". I put this code into form load. All datatype in my database is Varchar(100). Private Sub PopulatePekerjaList() Dim cnSQL As SqlConnection Dim cmSQL As SqlCommand Dim drSQL...
  8. C

    Answered Question about application deployment..

    Hello there... I have developed an application with MS SQL Server as its backend. If I deploy the application, can I install it at other workstation which doesn't have MS SQL Server installed?
  9. C

    How can I lock the desktop screen?

    Another question.. How can I lock the desktop screen? Using LockWorkstation?
  10. C

    Question Question about Form.Topmost

    Hello there... I have a question about Form.Topmost. I only managed make the form always on top. But what I want is when the form is on top, user cannot access the other application in the windows. For example : Some messagebox won't let users access the other application until the users hit...
  11. C

    Question Media Player Stop And Pause

    Helllo there.. I have a problem with media player playback control.. When I click stop button, it stopped, but when I click play, it will continue playing at the same point (like Pause function). I use this behind stop button : AxmediaPlayer1.Stop() I want if the stop button is clicked, it...
  12. C

    Resolved About changing the image while media file is playing

    Hello there.. I've created a media player by using Media Player Component. Let's say that I have a picture box that controls the player. I want to try if the media player is playing a file, the picture box will disappear. I've tried to put these code into Form Load but nothing change. If...
  13. C

    Question Need Help About Tab Control

    Hello there.. I have two tab controls, TabControl1 and Tabcontrol2. In TabControl1, there is a button "btnPayment". When a user click the "btnPayment", how can I redirect them to TabControl2? Thank you ...
  14. C

    Question Combobox Question

    Hello there.. I have a question.. I have a Combobox1 and Label1 in a form. There are items in ComboBox1 which is integer from 1 to 9. I want the user select the number in the combobox, and the selected number will be * 2. The answer will be shown at Label1.Text without any Click Button...
  15. C

    Question Tab Control (Tabpage Selected)?

    Hello there... How can I make an event for a tabcontrol which has Tabpage1, Tabpage2, Tabpage3, and so on.. For example... There's a label outside the tabcontrol (Label1). If tabpage1 is selected, how can I make the label1's text changed? Thank you :D
  16. C

    Resolved How to control other form from a main form?

    Hello.. How to control other form from a main form? For example : I want to change background color in Form2 after a button in Form1 is clicked. Thank you..
  17. C

    Question Network Controlling

    Hello.. I am about to learn about a system like a Cyber Cafe Billing System which can monitor the client computers.. I want to know what component that will be needed in order to develop this system in vb.net? Thank you.. :D
  18. C

    Question Progress Bar Color

    Hello... I am new to VS 2008.. It is possible to change the progress bar loading color (green) to other color? How to change it? Thank you..
  19. C

    Question Query About this Access statement

    I used coding below to insert two data into two tables. But, the data only succesfully inserted into table "pelanggan". Please help me. Below is the code : Private Sub btnsetuju_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnsetuju.Click Dim dbcomm As...
  20. C

    Question How to play audio files (WAV) when form loads?

    How to play an audio file automatically when form loads? Please help me..
Back
Top