Search results for query: *

  1. black zero

    Question Need help about Paramaterized query...

    ah... just realized it after I read your post I forgot this sqlExecute.ExecuteNonQuery() Now it's working :D Thanks jmc!!! YAYYYY my first!
  2. black zero

    Question Need help about Paramaterized query...

    ok I've tried for weeks, but still can't get it right... So, I created this sub And used this to fill the values When I debugged it, the values were inserted to the saveLog sub, and passed to the respective addwithvalue. However, the values weren't saved to the database. Any pointer? I'm...
  3. black zero

    Question Why do I always get an error when VS 2005 and VB 6 are installed in one machine?

    Oh sorry this error There was a failure while initializing the Microsoft Visual SourceSafe source control provider. You cannot use this provider to perform source control operations. Ok and cancel button at that error msgbox. Clicking OK loads the project, and I can work as usual. but the...
  4. black zero

    Question Why do I always get an error when VS 2005 and VB 6 are installed in one machine?

    Seems to me they don't agree with each others. Although I can just ignore the error notification, yet it's annoying. The error is saying something about Visual source safe whatever.... It doesn't show up when I have one uninstalled (be it 2005 or 6). What can I do to rectify the problem? Is...
  5. black zero

    Question What's wrong with this formula?

    Solved >.< The database just needs to be 'refreshed' from the connection window on the left. The appropriate report object has to be reinserted...
  6. black zero

    Question Need help about Paramaterized query...

    Sorry >.< I am having problem about post placement. Will do better in the future. And thanks for the answer, I'll read carefully your post, and will post again once I encounter a problem.
  7. black zero

    Question Need help about Paramaterized query...

    Like.. I recently started to learn about it, having been using archaic sql syntax for a long time. Apologize too if this sub forum isn't the most appropriate place for this thread, kindly move it if it is. Firstly, I've reread this topic...
  8. black zero

    Question What's wrong with this formula?

    CrystalReportViewer1.SelectionFormula = "{solardata.transaction_date} >= CDateTime('" & Tgl_awal.Text & "') And {solardata.transaction_date} <= CDateTime('" & Tgl_akhir.Text & "')" Any pointer? EDIT: The error is as follow, sorry for pasting the wrong code... 'A Date time is required here...
  9. black zero

    Question How do I check for a string length?

    ^precisely!!! D: You read my mind perfectly. Anyway, let me try that 2nd poster's solution first. I'll let you know if bad thing happens again.
  10. black zero

    Question How do I check for a string length?

    Here's my code: Private Sub CmbLabour1_KeyPress(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyPressEventArgs) Handles CmbLabour1.KeyPress If Char.IsDigit(e.KeyChar) = False And Char.IsControl(e.KeyChar) = False Then e.Handled = True End If...
  11. black zero

    Question How to print data listed on datagrid?

    http://www.vbdotnetforums.com/vb-net-general-discussion/31837-how-do-i-select-range-date-datagrid.html That link above contains my previous question, that's related to this one. Basically, after I finish selecting data on Datagrid, I want it to be printed, ALL data on a already processed...
  12. black zero

    Question Text box question... grrrrr~

    I'l do my homework for this now. Thank you for your comment and help, jm and haxaro and pic. I'll try to make that three boxes working, then starting to add one by one until I get all 20 or so boxes working~ In the meantime, thank you again for your help. I'll post here again when I encounter...
  13. black zero

    Question Text box question... grrrrr~

    T.T You got me.... I don't know how to use those codes you provided. I tried to insert it on my code, but.... none's working?
  14. black zero

    Question Text box question... grrrrr~

    Sadly, I have no idea about what you said... :(
  15. black zero

    Not able to install IIS

    Was there any error message when you tried to install IIS. I installed it on several OS with different service packs and there was no installation problem at all.
  16. black zero

    Question Text box question... grrrrr~

    I have a 3 textboxes. If I write anything (example: char '1') on the first box, the char would appear on the third box. Then if I add char '2' on second textbox, the first char would appear at the first line on the third box, and char '2' would appear on the second line, below that '1'. I am...
  17. black zero

    Question Visual Studio 2005 installation error

    Do you have other version of Visual Studion installed on that PC?
  18. black zero

    Question CR select range of date?

    :) Lol so nice. Thanks alot.
  19. black zero

    Question How to find INTEGER type column on a datagrid?

    No no no, I checked my database and I am sure there's only one transaction with id '1'. I forgot to tell you all: I have this code, and is loaded on form load event. So this code loads all transaction and bind it to datagrid. However, I also use bindingsource to bind the table to the very...
  20. black zero

    Question How to find INTEGER type column on a datagrid?

    >.< I don't understand what you guys are talking about :confused:, so here goes... I use this, and sure it works great. However, please see screenshot for funny thing: How come that there's two exact same result on my datagrid??????
Back
Top