Search:

Type: Posts; User: earvinnill

Page 1 of 8 1 2 3 4

Search: Search took 0.03 seconds.

  1. Crystal Report not working in Production PC

    Question of link is here: https://stackoverflow.com/questions/55073723/crystal-report-not-working-in-production-pc

    It keeps me irritated that I can't fix this issue. Can anyone help me regarding...
  2. An error has occurred writing to the hard disk.

    Someone gave me a copy of the project and I tried deleting other merged
    project in it but I accidentally removed the 2nd project that is used for reference.
    So I tried to add it back and make it as...
  3. Re: How to add top empty value in combobox if it is datasourced?

    Problem solved by combobox.selecteditem = nothing. Thank you and thank you for correcting my bad coding. Hoping for future correction!
  4. Re: How to add top empty value in combobox if it is datasourced?

    2. I figured it. Thank you for this.

    3. understood on this one.

    4. Actually, I really don't know how byref works, I just came up that byval is normal variable transfer then byref would be
    for...
  5. Re: How to add top empty value in combobox if it is datasourced?

    --> typo error.
  6. [RESOLVED] How to add top empty value in combobox if it is datasourced?

    I have ff code snippet that uses combobox datasource, now I wanted to have an empty blank value due to change function.

    CODE BELOW FOR REFERENCE:

    Public Function getRank(ByRef rank As...
  7. Re: InnoDB: Assertion failure in thread 3608 in file btr0pcur.c line 440

    it seems that bug post is still open due to the status is still no feedback up to now.
  8. Re: InnoDB: Assertion failure in thread 3608 in file btr0pcur.c line 440

    Tried also inno_db_recovery, the mysqld.exe stops working after i execute a dump
  9. InnoDB: Assertion failure in thread 3608 in file btr0pcur.c line 440

    Hi. I'm having trouble with the existing database server in our company. It is built with a pc server only and it has millions of data.

    Problem:
    Cannot use any CRUD / Backup / Duplicate Table....
  10. How to get remote pc info & installed programs using wmi?

    I'm reading about the wmi connection in msdn.

    but when i try these codes:


    Dim objwmiservice = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & ipname & "\root\cimv2")
    Dim...
  11. How can I adjust control and form size in difference screen resolution?

    I'm working with 19inch monitor and the app will be deployed to 50inch screen. I also tried anchoring it. The problem is when I deployed it to 50inc, the controls are not in the original location. I...
  12. Replies
    5
    Views
    2,190

    Re: Alternative Way to Import SQL to MYSQL

    what should i use to create script like that to implement in task scheduler
  13. Replies
    5
    Views
    2,190

    Alternative Way to Import SQL to MYSQL

    Before, I asked a question in here how to linked the SQL to MYSQL. It was a success and I can also query from it. The problem is upon searching why "I can't find SQL SERVER AGENT" in SQL SERVER...
  14. Replies
    8
    Views
    4,133

    Re: Cannot Insert,Update in OPENQUERY.

    and yes i followed what you second in the #2 post. I changed it to ROW and now it is working. Thank you very much.
  15. Replies
    8
    Views
    4,133

    Re: Cannot Insert,Update in OPENQUERY.

    my binlog format is MIXED. they said it needs to be row for sql to mysql. but the mixed definition means if it is needed to be row the mixed format will changed to row, when needed to be a statment,...
  16. Replies
    8
    Views
    4,133

    Re: Cannot Insert,Update in OPENQUERY.

    'GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' '' : says in mysql server
  17. Replies
    8
    Views
    4,133

    Re: Cannot Insert,Update in OPENQUERY.

    even though i am using root?
  18. Replies
    8
    Views
    4,133

    Re: Cannot Insert,Update in OPENQUERY.

    I've searched and it says the binlog format is better in MIXED, but when I checked, it is already in mixed. I don't wnat to messed up the server because there are some data on it.
  19. Replies
    8
    Views
    4,133

    Cannot Insert,Update in OPENQUERY.

    I have a linked server (mysql) named MYSQL. I can select data from it but can't insert.

    The error is:

    OLE DB provider "MSDASQL" for linked server "MYSQL" returned message "[MySQL][ODBC 5.1...
  20. Re: How to transfer data from sql to mysql?

    Sir, good day.

    I just got logged in again from vbforums. Thank you for these suggestion. I will try your solution today.
  21. Re: How to transfer data from sql to mysql?

    ohh okaay. thank you. will check the documentation for it. As per transferring of sql to mysql db using sql linked server or sql scheduler, is it possible? i know how to do a mysql scheduler but my...
  22. Re: How to transfer data from sql to mysql?

    Hi jmc,
    i tried importing systems.sql and i receive no error but when i created an instance of sqlconnection, it does not work.
  23. How to transfer data from sql to mysql?

    there is this biometrics and it is built in sql server and out timekeeping db is in mysql. i searched for it and the result is through linked server from sql mngmnt studio. but i can't connect it due...
  24. How to transfer data from sql to mysql?

    there is this biometrics and it is built in sql server and out timekeeping db is in mysql. i searched for it and the result is through linked server from sql mngmnt studio. but i can't connect it due...
  25. Replies
    3
    Views
    1,797

    Constant Expression Required Error

    Dim con As String = "DRIVER=MySQL ODBC 5.1 Driver;SERVER=" & dbserver & ";UID=root;PWD=;DATABASE=SPC_LATHE20152;PORT=3306"
    Const ConnectionString = con

    I'm achieving to have a dynamic choice...
  26. How to close the report.load when it is called inside the form load

    I wanted to close the report using the form closing because I've encountered many times of Crystal Report Load Failed due to "The maximum report processing jobs limit configured by your system...
  27. Picture in Crystal Report does not refresh when overwrites the picture.

    I'm using Visual Studio 2010 and Crytal Report 8. What I did is load the image path in Crystal Report and in my .net program, I overwrite the 2d barcode image whenever there is changes so I am...
  28. Ways of transferring 2d barcode to crystal report.

    Hi. I have created 2d barcode using zxing library and I wanted to transfer it to my crystal report but I've encountered error which it says:
    "Value does not fall within the expected range." in this...
  29. Re: Is it possible to manually fire event inside an event?

    Example:

    Private Sub Button3_Click(...) Handles Button3.click
    MessageBox.Show("This is the 'Save' button!")
    SaveTheFile()
    End Sub

    and I will put these functions: ...
  30. Re: Is it possible to manually fire event inside an event?

    Thank you for your answer Sitten, That is what I am currently doing. I'm just asking if my question is possible to be able not to write the same code twice.
  31. Re: Is it possible to manually fire event inside an event?

    yes. yes.

    no.no. reason is the question for the answer of my two yes
  32. Re: Is it possible to manually fire event inside an event?

    How can I do that?
  33. Is it possible to manually fire event inside an event?

    Planning to use the keydown event to fire the dgv click event. Is it possible?
  34. Is it possible to create multiple chart type in 1 mschart?

    Already searched in google and doesn't find any example of combination of bar and line chart.

    Wanted to do a combination of bar and line.
  35. Re: Need the serial port command in these ff instrument!!!

    I think this is for USB Data Cable, I'm using the RS232 Cable which the manual suggests that the request for measuring value is "? CR"
  36. Re: Need the serial port command in these ff instrument!!!

    found the manual but does not work the command https://eshop.mahr.com/eshop/productInfo/Millimess--2000--3755014--BA--DE-EN--2014-08-01.pdf
  37. Re: Need the serial port command in these ff instrument!!!

    Yes, I think I need to contact the vendor.
  38. Need the serial port command in these ff instrument!!!

    Hi I need to connect Mahr Micrometer Extramess 2000 and Nikon DIGIMICRO MFC - 101. Already checked the manual that I've downloaded on the internet but I find none. If anyone know the command to...
  39. Need your ideas in creating a small thermal label.

    Hi I will be using VS2010 and Crystal Report 8. I wanted to know is it possible to create a 74x210mm (will be converted to inch) label in crystal report? or any ideas that can fasten my development....
  40. How can I trigger the event scheduler to specific database in mysql

    Hi.

    There is an existing program that has event scheduler, I need to make a duplicate db on it and I just found out it has event in mysql. I copied that syntax of the event but how would I know...
Results 1 to 40 of 286
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width