Search results for query: *

  1. A

    login screen validation

    ok someone here really need the help of that prob. but my back end is sql server 2000 .... i thought about making sql statment " SELECT PASSWORD FROM VALIDATION WHERE USERNAME = @ USERNAME" AND THROW THE RESULT IN STRING .. THEN COMPARE STRINGS ... THE RESULT AND WUT THE USER ENTERED .. IS...
  2. A

    Computer watcher

    I'm new to dot net ... i'm doing an application ..this app. is for net cafe .. this program is every 5 seconds is going to fire a sub .. in this sub i'll specify a work group .. this work group has clients .. i want my app. to go to this clients randomly and take a printscreen of the clients...
  3. A

    Script sms/mms

    Try This code .... it works with me ... Imports System Imports System.Net.Mail #Region "Declarations" ' message elements Private mMailServer As String Private mTo As String Private mFrom As String Private mMsg As String Private mSubject As String #End Region #Region...
  4. A

    MDI Parent & Child

    another thing ...if u make a child from a child form ... u can set the parent to the top parent like i'm in second form : dim frm2 as new form2 frm2.mdiparent = me.mdiparent like that u create a child from a child and set its parent to the childs parent
  5. A

    Messagebox: creating a new line

    so which way will be working with windows, linux or unix whic is the best one which i write once and run every where not write once and debug every where
  6. A

    mdi child

    insteaed of the commented line put newMDIChild.activate () see wut is going on ... i guess there is nothing wrong with the code ... i'm not sure i'm a newbie too .. but i guess that it's ok .. i work with something like that and it shows ... my problem was in putting the new child in the...
  7. A

    Bind Enter key to a Button

    1- activate the form 2- go to property window 3- choose the ACCEPTBUTTON property and choose ur button So Simple ...... there is another way for the forms which is not supporting the acceptbutton property as he said that u make a sub handles keystroke if keystrok = Enter...
  8. A

    Double Click button

    wut if i just change the handle of the button like: Private Sub Button_DoubleClick(ByVal sender As Object, ByVal e As System.EventArgs) handles button.doubleclick MsgBox("double-click") End Sub won't that work ???? if not then why they added this event if it's going to conflict...
  9. A

    Use the 'X' button of the form

    it sounds very logically ... so how can i do that ..can i handle it like if Messagebox cancel button pressed Me.close = false how can i handle the event of the cancel button of the messagebox.show can u write the sample of that code plz.. sorry i'm a newbie
  10. A

    VS2003 Login Form

    thanks for ur great efforts ..n keep going .. i like ur posts
  11. A

    How to reload a form?

    in the sub of form_load (...) handle form.load ' enter ur intial sizes here End Sub then make a button for wutever u want to do to reload .. button_click (...) handles button.click Me.Load End sub this method is going to load again the form and the first method handles when the form is...
  12. A

    Use the 'X' button of the form

    why it is must to make it as function ... i don't need to return any values .. a Messagebox.show (....) can be used in Subroutine means procedure .. and it can be cancelled too as u mentioned in ur reply ...
  13. A

    Use the 'X' button of the form

    ur routine ofcourse is in a method ... handle on clicking "X" to call the routine for example i want the user when he click exit button to ask him first as confirmation so wut we will do here is Public Sub confirm() msgbox ("Are You Sure you want toexit?") End Sub Public...
  14. A

    Windows Forms FAQ

    Thank you for that very usefull links ...
Back
Top