Search results for query: *

  1. E

    determine the range of a alphanumeric string separated by hyphen?

    ok so i have a string value like this fac00029170-75A what i need to do is to determine the range separated by hyphen(-) in the example fac00029170-75A what i need is like this fac00029170, fac00029171, fac00029172, fac00029173, fac00029174, fac00029175 any suggestions? i already search...
  2. E

    how to update the dataset of the parent form from child form

    good day friends :D., i have a parent form with datagridview filled with datas from my dataset., and a child form namely add_data... now whenever i want to add a new data to my parent form(datagridview) i use the child form(add data form), i entered datas accordingly and it saves perfectly...
  3. E

    How to decrease loading time of table adapters using WAN

    ok i have a Windows Forms program that loads 4000+ records each time i login to it...and it takes about 10 secs to show my main form...with those data's.... is there a way to decrease its loading time?5 seconds will be ok... by the way im using Wide Area Network for the deployment of this...
  4. E

    Question how to set a new bindingsource to a datagridview?

    OK, I have 2 bounded datagridviews in my form naming beneficiarydatagridview and beneficiarydatagridview1 which is bound to the same bindingsource... now heres the thing in my beneficiarydatagridview i have a search engine using textbox and a button, using the .FILTER feature of...
  5. E

    crystal report ToWords

    i have a small problem here about crystal report ToWord function. let say i have a data of 50,000.00 and when i use ToWord function it will generate FIFTY THOUSAND AND XX/100, now what my client want is to change the "XX" to 00, like this FIFTY THOUSAND AND 00/100, how can i do this? help pls
  6. E

    make a system logs or system history?

    how to make a something like system logs or system history, i want to track whats happening on my system whenever my user add,update,delete a data., i already done this using manual coding declaring all i need and so on but now i want use bindingsource and yes i dont know to start., i need your...
  7. E

    textbox amount to amount in words

    i have a textbox with integer value, of lets say "40000" i want it be converted to amount in words like "FORTY THOUSAND" and to be displayed in another textbox. can someone give me a link on how to do this?please? thanks alot :D
  8. E

    Question crystal report cheque format

    how can i print a report with a bank cheque format?, i have a sample application here but you need to export your report to word then use a macro to get the cheque format and yes, that not what i need, i want it to be formatted in my crystal report, no exportations, but how? i need some sample...
  9. E

    Question Pure code Vs. BindingSource

    i was just wondering if which is better? when it comes to style on developing a winform application... i always used pure codes, i dont use binding sources with a drag and drop features with auto-generated codes...i really dont... for me it sucks, it makes me feel that im not a programmer...
  10. E

    Question listview datas to database using background worker

    im trying to make a query that insert all listview datas into database with background worker here the problem For Each SAIitem As ListViewItem In ListViewRIS_ITEMS.Items cmd = New SqlClient.SqlCommand("INSERT INTO SAI_ITEMS(SAI_NO, STOCK_NO, STOCK_CATEGORY...
  11. E

    How to generate a crystal report using sql query?

    just wondering, on how to generate a crystal report using a sql query? can someone please give me some idea? thanks
  12. E

    listview updating a subitem value

    i just want to put that quantity(11) and remarks(remakrs) to listview.subitem(5) and subitem(6) when i click add button, thnks :D
  13. E

    Question primary key, how to generate custom value

    hi there, i have a SQL SERVER 2008 table with 3 columns(P_ID(Primary key), PRODUCT_NAME, DESCRIPTION), now, how can i generate a custom and unique(ofcourse) value for my primary key, for example: sc00001 in the 1st row, and when i enter another data it will generate sc00002 something like that...
  14. E

    Question How to access my database even if im in another location

    hi, im currently developing a win. form apps. system using vb.net and SQL server 2005 as back end database, in our workplace, we have a computer domain(server) with group policy applied(all computers are joined to this domain including mine)., and were SQL server software is...
  15. E

    Question How to change the Forecolor of a Listview subitem

    i have a listview with 5 columns or should i say subitems, now what im trying to achieve is.... to change the fore color of column 1(subitems) where i try the ff. codes ListViewUSER_LOAD_SAI_DATA.Items.Subitems(0).Forecolor = Color.Red but it change the forecolor of...
  16. E

    bound datagridview into crystal report

    i have a bound datagridview populated with data and 1 button(named - preview), now my goal is , whenever the user click the preview button, all the data in the datagridview will be displayed in the crystal report,(with the same format)., thanks in advance
  17. E

    2 Datagridview full row select

    i have 2 datagridviews, what i want to achieve is whenever the user clicks a row(selectionmode = fullrowselect) in dgv1 the same row will also be selected in dgv2(selectionmode = fullrowselect) , the same goes when the user clicks on dgv2., thanks in advance :D
  18. E

    datagridview how to validate cell value

    i have 2 datagridview, now i want to perform a input validation in each cell to know if the dgv2 value is greater than the dgv1 value i used the ff code., and ofcourse it didnt work XD Private Sub DataGridViewMC1_RIS_ISSUANCE_CellLeave(ByVal sender As System.Object, ByVal e As...
  19. E

    Question how to insert a query in each datagridview row value

    ok here's the problem, i have 2 datagridview in my form, namely datagridview1 and datagridview2 what im trying to accomplish is to execute a query in each row(datagridview1), and the result will be displayed also in each row of datagridview2(with column name BALANCE_QTY AND CONSUME)...
Back
Top