Search results for query: *

  1. M

    Binding picture box?

    I am binding a picture box. I have format the picture box to ensure it's not bind to an empty path or invalid path or invalid file. But problem raise, after formating the binding picture, the form doesn't load correctly. After <B> form1.Show() </B> executed, it doesn't call form1_load. But if i...
  2. M

    RegularExpressionValidation problems?

    I have used RegularExpressionValidation. How to validate a textbox must be at least 5 characters and including wildcard character can be input to the textbox? This /d{5} will only accept 5 characters and wildcard chars is not included. How to set it?
  3. M

    Problems in VB.net?

    Helo, this is some problems occurs. Anyone can help? 1. How to get the current directory of the application.exe when I installed the application? 2. For "shell" command, if i am calling app.exe, do i need to specify the path? 3. How to make the close button to be hide button. I mean the close...
  4. M

    Windows Service Problem?

    Timers in the windows service I am using the timer from the System.Timers namespace. But when i start the service, the service will stop directly since it has nothing to do according to the message displayed. I actually have the timer1_elapsed event in the code. I think it should check every...
  5. M

    Windows Service Problem?

    Currently i am building a windows service. 1. How to make a windows service that its icon display on the task bar? 2. How to show a form when we click the icon? 3. I have problem when starting the windows service, if the service have a windows component such as notifyicon, timers etc. If i am...
  6. M

    System Date and Time

    How to make a form displaying the time according to our system date and time? How to check whether the date has changed or not? Or how to check whether the time is on specified time, e.g. check whether the time is 10:00 a.m or not? Thanks for yout time....
  7. M

    Check internet connection???

    How to check whether the internet connection is connected or not? I want to send email from my application, but it will raise problem if it's not connected.
  8. M

    Binding picture box problem?

    Thanks for friends that reply my post before.... I am binding a picture box to a path... It works fine if the path is valid. Problem comes when tha path is invalid or empty... The code that is red highlighted is where the error come out.. Private Sub BindFields() Try Dim...
  9. M

    Error send email?

    Helo, I have a problem when sending email from VB.Net application, the error message is "The server rejected one or more recipient addresses. The server response was: 550 5.7.1 Unable to relay for destinationemail@address.com". What is actually is the problem? How can i get out from...
  10. M

    Sending email automatically?

    Helo, how to automate sending email? I want to automatically send email to some addresses every day? How can i do that? I build that one for my final project at my college. Please help me. Thanks in advance. I am using this code.... try Dim objEmailMessage As System.Web.Mail.MailMessage...
  11. M

    Setting SMTP server?

    hi, how to set the SMTP server on my computer? I am using IIS from Windows... Thanks a lot... I just wanna try to set the SMTP server for sending email from VB. Net app. Due the server problem, coz my home comp doesn't have any SMTP server. The error is "Can't connect to the server"
  12. M

    Problem in Binding Data to a Control?

    Thanks... I have tried it out... I get an error here.......... Invalid cast from System.String to System.Drawing.Image How could i get it works? Please help me....
  13. M

    Problem in Binding Data to a Control?

    Problem converting path to a picture I have tried it out, but i still having problem convert the path to a picture. How can i solve this problem? Please provide the code example. Special Thanks to Toni...
  14. M

    Problem in Binding Data to a Control?

    I still get confused with the Binding.Parse means? Would you mind to help me about this problem? Is Binding.Parse able to parse an URL of the picture? Thanks a bunch...
  15. M

    Customize a report in run time?

    Helo, guys 1. How can I produce a report that based on the user? For example, if the user want to display a column, that it can make a report of it. 2. How can I select data from a table that its database is chosen based on the user? e.g. "SELECT * FROM databasename..TABLE" I wanna the report...
  16. M

    Problem in Binding Data to a Control?

    1. How to bind a picture box to a column in a database that contains the image's path (url)? 2. How to manipulate the format of the string? How to manipulate the format of the string before it is display in the text box. The text box is using data binding. I think if we don't use binding data...
  17. M

    Check MdiChild is open or not?

    Thanks.... Thanks a lot.... Then I will try it soon... Thanks for your helping....
  18. M

    Sending email automatically?

    Thanks for your reply. I have some question that come to my mind when i read your reply... 1. What do you mean by highly active web site? Is it available for 24 hours or is always accessed by the user? In this case, where is session start located? 2. How can I have a service on the server? What...
  19. M

    Sending email automatically?

    Helo, guys, how to send email automatically every day to user? I already know how to send email, but i can't automate it... How can I send an automate email? Please help....
  20. M

    Check MdiChild is open or not?

    Hi, guys, i have an VB.NET app, the problem is every time i click on the sub menubar, it will create a new mdichild form. What i want is if it's already created, then just active it. Otherwise, just create a new one. How to solve this problem? Please provide the code. My currently code is: Dim...
Back
Top