Search results for query: *

  1. R

    phone dialler

    how can i create a windows application which can be used to make calls to different landline phone numbers ... eg: a telemarketing application
  2. R

    Windows Service Style Program

    to create a windows service using vb.net 2003 u can do the following.. 1.create a project of type"windows service"(u can find it at the bottom of project template window) 2.override the following events provided by the service with ur custom code..(Start,Stop,Continue) 3.ones u finished...
  3. R

    Difference between SoapFormatter and Xml Formatter?

    usually xml serializer is used with webservices...where as soap formatter /binary formatter is used in remoting.. that means xml serializer is more adequate for cross platform work...
  4. R

    data access applicationblock issue

    dear ppl im workin with enterprise library 1.1 june 2005 release application blocks..,vb.net2003 and sql server2000. but when ever i execute an application that is configured to use data acess application block..i get the following exception... An unhandled exception of type...
  5. R

    problems with checkboxes and data storing

    ok i will try it..regards
  6. R

    binding a key to a button

    thanks a lot JM ....
  7. R

    binding a key to a button

    hi JM u ROcks ..i have got it ....it wasnt coz of "keypreview property"it happened coz i wrote some "bad code"..which always kept the focus on to the datagrid i have on the child form durin form load...anyway now i would love to know one more thing ,iam designing an application for a marketing...
  8. R

    binding a key to a button

    dear JM, i tried it on an mdi application and found that it is workin on the mdi parent but not on any of the child forms..can u pls tell me why is it so..and a way to achieve it on mdi applications...regards
  9. R

    problems with checkboxes and data storing

    hi cjard the thing is in my browser our edit window is not downloading properly....(it is doing it with errors...) coz of that i wasnt able to use the quotes and all those stuff on our edit window panel...thats why i manually put some " " (that bcome &quot) on my post..
  10. R

    Using Enter Key to move to Another control in a Form

    i think u can use 'tab' key 4 moving from one control to another in vb.net(priority can b set by "tab index property")...if this nt wat ur meant pls forgive me..
  11. R

    Datagrid Delete

    if I wanted to delete a single row that I have been selecting...this will be useful to me ...... Dim rowind As Integer = Me.DataGrid1.CurrentRowIndex Me.myDataTable.Rows.RemoveAt(rowind)
  12. R

    SQL Select Statement Date Range issue

    Dim strSQL AsString = "select * from RDATE where DOB between(' 1/1/1981 12:00:00 PM ') AND(' 8/6/2004 11:49:49 AM ')"i think a command text like this will sort out ur problem...
  13. R

    binding a key to a button

    hi,thank u so much ...
  14. R

    binding a key to a button

    hi all,i would love to know how can we bind a keyboard button (eg:delete) to a button in my form,so that when i press delete button on my keyboard it should execute the code i written in click event of the button in my form...
  15. R

    problems with checkboxes and data storing

    hi,this is one of the ways u can do it .... If (Me.CheckBox1.Checked = True) Then Dim str1 As String = Me.CheckBox1.Text com.Connection = con com.CommandText = "insert into rorder values('" & str1 & "')" com.ExecuteNonQuery() End If by the way change ur table name to something else coz...
  16. R

    combo box problem

    ok guys,let me check all those stuff....by the way iam not using the datagrid to store the data ...im using it to display the content of a dataset (i have specifyed it in all of my posts.. ) one more thing is that i have already tried with the "selected item property"and with the "selected value...
  17. R

    combo box problem

    hi,jmcilhinney iam workin in the same way already as u have said above my code is like this... where "myDataRow" is a row in a datatable called "myDataTable" and "DEALERNAME" is a column name i have given to one of the columns in the datatable.after this i have added this datatable to a...
  18. R

    combo box problem

    hi,jmcilhinneythis is basically a purchase entry form where i just wanted to populate a datagrid with the selected contents(selected text) of each and every comboboxes present on the same form...during a button click event..(somethin like NEXT ITEM )thats just 4 the purpose of showing the...
  19. R

    combo box problem

    hi all ,currently iam workin with the concept of dynamic binding of comboboxes, here is my problemi have a no of comboboxes which has been filled dynamically during there GOTFOCUS event.now i have created a data table which will hold the present selcted data from each of these comboboxes and try...
  20. R

    binding multiple comboboxes at form loadtime

    hi,JMCILHINNEYthanks 4 your advise ...(i have made the necessary changes..)regards
Back
Top