Search results for query: *

  1. C

    Question File is being used by another process?

    Thanks again... You helped me a lot.. :)
  2. 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...
  3. C

    Question Textbox is not displaying value

    How did I not notice this.. Thank you!
  4. 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...
  5. C

    Question Webcam Capture | Select Video Source Dialog Box Appearing

    Thank you for your reply. I've noticed something here. Whenever I spam the button which triggered the OpenPreviewWindow() at least 3 times fast click, it will activate the webcam. I just don't understand why it's like that.
  6. 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...
  7. C

    Question Controlling Windows Based App from Web Based App

    Haha.. Thank you for that jmcilhinney. Wish me luck :D
  8. C

    Question Controlling Windows Based App from Web Based App

    Thank you for replying... Can I get some advice? I'm about to develop an app in VB.NET. It's just like an Anti-Theft app. User will have the ability to trigger the event (Windows Based) from website (ASP.NET). How can I start this? Can I use WCF? In other words, the Windows Based App and Web...
  9. 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...
  10. 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 = ""
  11. 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...
  12. C

    Resolved Need help about Conversion error

    Yes.. that's my mistake. Just noticed it..Hehe.. Thank you jmchilhinney. You helped me a lot in this forum.. Sometimes I cannot trace where the mistake is.. SO sad..
  13. C

    Resolved Need help about Conversion error

    Thank you for replying..Erm.. what do you mean by empty string? It occurs in this line objListItem = New ListPekerja(drSQL.Item("employeename").ToString(), _ CStr(drSQL.Item("emel"))) :D
  14. 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...
  15. C

    Answered Question about application deployment..

    Now I do understand. Perfect answer.. Thank you very much :)
  16. C

    Answered Question about application deployment..

    So, you means if I want to install the application in a single computer (no network), the computer must have SQL Server installed?
  17. 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?
  18. C

    How can I lock the desktop screen?

    Thank you for replying.. Is lockworkstation different with windows log off function?
  19. C

    How can I lock the desktop screen?

    Another question.. How can I lock the desktop screen? Using LockWorkstation?
  20. 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...
Back
Top