Search results for query: *

  1. S

    Range Validator MinValue and MaxValue date

    Thanx for reply JohnH, i think the problem is like what you said : culture-neutral format, is there another way to fix this problem without changing the culture format ? i can't set the format into "yyyy/MM/dd" because i have to use this format "dd / MMM / yyyy" Thanx verry much JohnH :) sorry...
  2. S

    Range Validator MinValue and MaxValue date

    Hello guys, i need some help for range validator. i have textbox with value like 23 / Jul / 2012 and i want to validate if the value is value can't be outside the range day +1 and day -1, so if we entry 25 / Jul / 2012 or 21 / Jul / 2012 it's will be said invalid date selection. here's my code...
  3. S

    Always start with the third character in the textbox?

    try this : this code will make ur cursor at the first index in TxtValue... :) so if u have value .00 in ur textboxt then when u type new value such as : 300, it will be 300.00
  4. S

    Question Creating Command Button ans assigning click event through code?????

    u can use this : Dim Button As New Button() 'declaring the button, Button1 Button.Name = "Name" 'setting name of button' Button.Text = "Text" 'setting the text to be displayed on the Button Button.Location = New Point(100 + 30 , 50 + 30) 'setting the location for the Button where it should...
  5. S

    How to pass value from one form to another?

    wokey compguru910 thanks a lot... i will send my email... :p but about the problem... i got this problem if load the form1 dynamically... and if i loaded form1 not dynamically i can get the value on form2.... T_T i'm verry - verry confuse... thanks... :D
  6. S

    How to pass value from one form to another?

    i was try like what u said... but i still can't get the value from form2.... >.< can u give some examples how to obtain value from form B and sent to form A where A is loaded dynamically ? either in C# or VB .net is fine... :) thank's compguru910... :D sorry for my bad english... :D
  7. S

    How to pass value from one form to another?

    thank's compguru... no, us not like u say i must load or gathering data and populated textboxes and labels in the form from sql when my form loaded... the problem is when i load the form1 which i generate dynamically using reflection... i must call the form2 which i call the form2 from form1...
  8. S

    How to pass value from one form to another?

    thank's trialer... like u said... i want to load several mdi child forms from mdi parent... but i use toolstrip menu to add the menu and sub menu... here is my code : Public Sub LoadMenuList() Try 'Isi Data View Header Try strSql =...
  9. S

    How to pass value from one form to another?

    yupz... hehehe... i want to load my form dynamically from database... so i use reflection... to get my form name and load the form... in my databse i juzt set the form name... there is another way to load form dynamically without using reflection???
  10. S

    How to pass value from one form to another?

    thank's compguru910... :D hmmm... i was try it but still i can't get or set the value from form2 into form1... i think it because i was load the form using system.reflection if i load the form using system.reflection i think my form1 it's not like the form1 that i build in my solution... is...
  11. S

    How to pass value from one form to another?

    thank's to trialer... :D i was try it but i still can't get the value from form2... i don't know why.. but i think the problem because i was load the form1 using system.reflection.assembly... there's another way to get the value from form2 ? thank's a lot... :D
  12. S

    How to pass value from one form to another?

    hello guys.... i'm ricky and i'm newbie in vb .net... i want ask how to pass value from one form into another form...??? for example if i have 1 mdiform and 2 form (form1, and form2) for load form1 i'm using system.reflection.assembly here is the code for load form1 : Imports...
Back
Top