Search:

Type: Posts; User: ucanbizon

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Re: Missing jdbc connector in netbeans 12.2?

    I have found the solution. The driver I have downloaded from (https://downloads.mysql.com/archives/installer/) was wrong. I should have downloaded the "Platform Independent" version instead of...
  2. [RESOLVED] Missing jdbc connector in netbeans 12.2?

    Hi,
    I am at the very beginning of java and its enviroment (like netbeans and MySql)

    I have written a very simple app just to connect to an existing database at localhost.

    I am using NetBeans...
  3. Drag&Drop front end (web site) builder with back end support.

    Hello,

    Hope this is the right place for requesting information as below.. If not please move this to a proper topic.

    I am developing many web APIs with .net Core (C#). These are for...
  4. Re: ASP NET Core on Apache Servers

    Thank you. I will do that....
  5. [RESOLVED] ASP NET Core on Apache Servers

    Hello,

    I am using Visual Studio 2019 and developing a few WEP APIs and WEB SERVICES using ASP.NET CORE with c#.

    I have used ASP .NET CORE because Microsoft is saying that it produces cross...
  6. Database at domain hosting vs database servers....

    Hi,

    I have a domain name (www.xxxx.com). This domain is being hosted by a hosting company and there is a simple static web site at this domain to show my products...

    I am now trying to upgrade...
  7. Re: Privacy advices needed about remote database connection via VB .net...

    Thank you very much for your answers indeed. That's what I am doing for a while. Each of your sentence gives me a hint to catch the keywords for googling.
  8. Re: Privacy advices needed about remote database connection via VB .net...

    Many thanks for your answer. I'm trying to understand what you mean but it is heavy load for me at the moment as I am very new about these issues.

    If you forgive me I need to ask one more...
  9. Re: Privacy advices needed about remote database connection via VB .net...

    Thank you for you answer.

    Either connecting to a database directly or connecting via a web service have the same problem. Because, connecting a web service need a connection string to pass values...
  10. Privacy advices needed about remote database connection via VB .net...

    I am developing an application in which I need to connect a remote database.

    There is no problem about the connection and app is working well. It connects to the database, insert new records or...
  11. Re: How to add text from textbox 2 in the middle of text of textbox 1?

    To the OP, Yeap, never say it... never think it... never :)
  12. Re: How to convert date&time information from date/time server into my local time?

    The data I receive is "59171 20-11-18 11:24:13 00 0 0 696.3 UTC(NIST) * ".

    Can you please show me how to do it?

    Thanks,
  13. How to convert date&time information from date/time server into my local time?

    Hi,

    I am getting date/time info from a generic date/time server "time-a.nist.gov". I am using winsock control.

    The problem is that, the time information is the time of server's local time. It...
  14. How is the behaviour of VB6 compiler while comparing two string?

    Hi,

    I need some knowledge about 'how does vb6 compiled exe behave while comparing to strings with same length.

    Say String1="ABCDEF" and String2="ABCxEF"

    As you see, the difference is at 4th...
  15. Re: How to add text from textbox 2 in the middle of text of textbox 1?

    put this single line into Command1_Click section

    text1.text=left(text1.text,5) & " " & text2.text & " " & right(text1.text,5)

    Explanation:
    left(text1.text,5) --> gets first 5 caharacter from...
  16. Re: Moving existing VB6 projects from Windows 98 into Windows 10?

    I have moved my VB6 projects from Windows 7 to Windows 10 last year. Just copied them all simply. All worked well without any fixing. I don't think you will have problems unless you did not use...
  17. Re: GetInternetDate via WMI hangs in line .POST?

    Thank you for your comments. I gave up to use this code and I decided to use winsock control. I will also put my code with winsock control here soon.



    I just wanted to say I am not familiar...
  18. Re: GetInternetDate via WMI hangs in line .POST?

    I have no idea what do each line does in the code I use and what the VMI is and so on. I just needed to get date&time info somehow. I just found this code in this forum and edited it with some minor...
  19. Re: GetInternetDate via WMI hangs in line .POST?

    Dear westconn1 and optionbase1

    Thank you for your priceless comments.

    First let me tell you about the error message atachment which you could not open.

    Run-time error '-2147467259...
  20. Re: GetInternetDate via WMI hangs in line .POST?

    By the way, as an edition above my post, I am sending you the error code screenshot at line xpost.send

    179237
  21. Re: GetInternetDate via WMI hangs in line .POST?

    Don't forget to call the function with parameter ServerNo=2




    Public Function GetInternetDate_Noktalıggaayyyy(ServerNo As Byte) As String
    '//Get current time from internet time server
    ...
  22. Re: GetInternetDate via WMI hangs in line .POST?

    Thank you for you answer.

    The problamatic line is "xpost.send". It fires (sometimes) an error while executing that line and never pass the next line. So, the loop checking readystate flag after...
  23. GetInternetDate via WMI hangs in line .POST?

    Hi,

    I needed to get current date&time information from a time server and found a code thanks to this forum.

    The code is below.

    It works well many times but sometimes (and not so seldom) the...
  24. different behaviour source code vs compiled exe

    Hi,

    I am writing a simple VB6 code and getting different results between running source code (f5) and compiled exe.

    The code is very simple. I am putting random chars in a "random mode file"...
  25. Re: Passing 2 dimensional array as one dimensional to a function/sub?

    Hi XavSnap,

    Thank you for the information.

    The way you offer is passing whole array to the sub and making calculations according to the index parameters.

    I want to learn if there is a way...
  26. Passing 2 dimensional array as one dimensional to a function/sub?

    Hi

    Say, I have an 2 dimensional array Array(5,40) as single

    And say, I have a procedure working with one dimensional array as follows

    Public sub Calculate (NewArray() as single)
    ...
  27. Replies
    5
    Views
    1,177

    Re: Forcing a form not to close?

    Thanks, thanks and thanks all of you.

    It works perfectly. My code is at below

    Private Sub Form_Unload(Cancel As Integer)
    Dim Answer As String
    If std = nmn Then
    ...
  28. Replies
    5
    Views
    1,177

    [RESOLVED] Forcing a form not to close?

    Hi,

    I want to ask a confirmation question (say "Are you sure?") when the user clicks upper-right corner (X) to close the form.

    When the user answers "No" then form close will not happen.

    Of...
  29. Re: [RESOLVED] Create new frame control with all contents at run time?

    Thank you Eduardo. Your code is more clever than mine.

    I just get an error at line [ctl2.Move ctl.Left, ctl.Top, ctl.Width, ctl.Height ]. I have removed that line and it still works perfectly.
  30. Re: Create new frame control with all contents at run time?

    Thank you very much.

    I have also found a topic

    http://www.vbforums.com/showthread.php?487240-RESOLVED-How-to-obtain-child-controls-from-a-container-in-VB6

    I have combined both Al42's hint...
  31. Re: Create new frame control with all contents at run time?

    Thank you for your answer.

    Reinvent? Oh no, not now. :)

    Let me ask simpler question to overcome the issue I have on this post.

    "Load Command1(2)" creates a command button control on the...
  32. [RESOLVED] Create new frame control with all contents at run time?

    Hi,

    I have a frame control with index=0 value on a form and it has buttons, labels, textbox etc.

    I want to create a new duplicate frame at runtime so I use Load frame1(1). that's ok.

    But...
  33. If the item with a known key is in treeview?

    Hi,

    I have a key value (string) of an item in my hand but I am not sure if this item is already added in treeview.

    So, how can I check if it is already added.

    I don't want to make loop to...
  34. Re: Getting index value of an item's key in treeeview

    I have found the solution. Here it is.

    TreeView1.Nodes("key of the item").EnsureVisible works well. But you should put the item's key in quotes as shown. Obviously this is not possible during...
  35. [RESOLVED] Getting index value of an item's key in treeeview

    Hi

    I have a treeview on a form and I can add items hierarchically in it without any problem. I can add child nodes, remove any of them successfully. I also can use ensurevisible property to make...
  36. Re: Remote MySql and IP block in spite of % declaration?

    Hi guys,

    I have set up XAMPP in my PC and created a test mysql database in it and wrote some codes in PHP and got some primitive responses when I invoke them via my browser.

    Thanks for your...
  37. Re: Remote MySql and IP block in spite of % declaration?

    Ohhhh dear indeed. :)
  38. Re: Remote MySql and IP block in spite of % declaration?

    OK. Then please advise me PHP IDE.

    I have found this: https://windows.php.net/download/

    I have downloaded the latest version. There are many files in the zip but could not find any IDE to...
  39. Re: Remote MySql and IP block in spite of % declaration?

    Thank you.

    regarding the underlined part of my hosting provider's sentence
    My hosting provider says that:
    We offer PHP and MySQL databases. If this will work with your app
    we can do this, if...
  40. Re: Remote MySql and IP block in spite of % declaration?

    Hi,

    I need to clarify a point, if you don't mind.

    My hosting provider says that:
    We offer PHP and MySQL databases. If this will work with your app
    we can do this, if not you will need a...
Results 1 to 40 of 113
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width