Search:

Type: Posts; User: hopia

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    8
    Views
    2,872

    Re: Display all the class name / objects

    Thanks for all the replies and inputs. I will just create an instance of each class.

    Stay safe everyone.
  2. Replies
    8
    Views
    2,872

    Re: Display all the class name / objects

    Process, I created a function that will process all those classes.


    Call Extract(input table name, var1, var2, var3)

    I was thinking like using something like this but it seems not possible. ...
  3. Replies
    8
    Views
    2,872

    Display all the class name / objects

    Hola,

    I have this project where I created a lots of class and I need to process all the class/objects from this specific folder in my project named "Tables"

    181817

    I already created the...
  4. Replies
    0
    Views
    3,213

    WinForms and Web Service (.NET 4.6.2)

    Hi, I just want to ask your expert opinion regarding this weird scenario I am experiencing right now. For an overview of my app, basically I just created an app that calls a web service. The...
  5. Re: Retrieve value of all properties from an object

    Hi @jmcilhinney! Yup, i was referring to 'IIf'.

    Thank you for the corrections/suggestions you've made, I will recode my program now and apply the learnings from you. Cheers!
  6. [RESOLVED] Retrieve value of all properties from an object

    Hi, I'm wondering if there is another way of doing what I wanted to happen. I have an object which have 4 properties. I assigned value on those properties.

    Object Name: objEmployee
    Property:...
  7. Re: Retrieve all the property name of an object

    I will look into this one. I'm gonna use those property name as column header of a report file.

    Thank you again.
  8. Re: Retrieve all the property name of an object

    Error on Select and (i). Thanks anyway for your time.
  9. Re: Retrieve all the property name of an object

    Noted on your remarks. I will always try to apply that in all my codes. Anyway, i got it!

    prop.Name

    Thank you! :thumb:
  10. [RESOLVED] Retrieve all the property name of an object

    Hi, I'm wondering if there is another way of doing what I wanted to happen. I have an object which have 5 properties. For some reason, I only need to get the first 4 property name.

    Object Name:...
  11. Re: Delete Unchecked / Count checked Listview Records

    Yes, user initiated via clicking a button.



    This is perfect! I will just check if for each will make this code better. Thanks a lot! Cheers!



    Yes, I knew that GoTo is not efficient that...
  12. Re: Delete Unchecked / Count checked Listview Records

    How do I do that without selecting/highlighting the item?
  13. [RESOLVED] Delete Unchecked / Count checked Listview Records

    Hi guys, i'm working on a project right now that requires deletion of unchecked items in Listview. I already have a working code but I guess this is not efficient if the number of items is 10,000+ or...
  14. Replies
    6
    Views
    4,131

    Re: Popupmenu Scroll bar

    I was actually considering grouping them but I will still have more than 50+ groups afterwards (which i guess is still long for a popupmenu)




    You are correct. I also realized that long popup...
  15. Replies
    6
    Views
    4,131

    [RESOLVED] Popupmenu Scroll bar

    Hi, i'm using the code below. It works well, however the data displayed on that menu is more than 300 (data is coming from database). Is there anyway to put vertical scroll bar on the popupmenu?...
  16. Replies
    4
    Views
    3,131

    Re: Webservice (HTTPS)

    Not yet, where I can find that settings?



    Yes, I can locally locate the files. I can also see the files when I access the web service using URL via web browser.




    Yes, it works fine with...
  17. Replies
    4
    Views
    3,131

    Re: Webservice (HTTPS)

    Hi, what i'm trying to say is that I was able to consume the web service using my vb.net program. I was also able to view the functions of my web service when I enter the URL on web browser.
  18. Replies
    4
    Views
    3,131

    Webservice (HTTPS)

    Hi, i'm new to web services and IIS. My web service is running well using HTTP (binding type, which I guess is the default). I can access it on my program and via web browser. Just now, I shift from...
  19. Re: SQLITE datatime to VB.NET datagridview

    My mistake, i saw it while comparing the codes of dynamic datagridview i posted here and the codes on my solution. Lol :bigyello:

    I'm assigning different database field on the DataPropertyName of...
  20. Re: SQLITE datatime to VB.NET datagridview

    Yes, it was design that way because it is a generic function that is used by the entire solution.
  21. Re: SQLITE datatime to VB.NET datagridview

    It contains my select statement.


    select studentID, studentName, regDate, lastUpdateDate frm tblStudents

    I added a new datagridview on my form and set my generic function as datasource and it...
  22. Re: SQLITE datatime to VB.NET datagridview

    Did you use SQLITE database? I have no problem displaying dates too using other databases.

    Anyway, here is my generic code.



    Dim dt As New DataTable
    Dim da As SQLiteDataAdapter = New...
  23. [RESOLVED] SQLITE datatime to VB.NET datagridview

    Hi, i'm trying to display records from the table on my SQLITE database to datagridview. Everything works well except for the dates. Any solution to this? Should I read each record via...
  24. Replies
    19
    Views
    4,705

    Re: DLL copy local issue

    Thank you for all the replies, this will serve as reference for me in my other projects.

    Anyway, i will just deploy my program and DLL on their own application folder.
  25. Replies
    19
    Views
    4,705

    Re: DLL copy local issue

    What if we are talking the same DLL that have the same version? I mean dbConnectionDLL, let say application1, application2, application3 uses that DLL for DB connection. Is it recommended to store...
  26. Replies
    19
    Views
    4,705

    Re: DLL copy local issue

    Thanks your for replies. I read GAC on MSDN and I decided not to implement it. However, i still want to maintain my DLL in 1 folder to avoid DLL HELL so i came up with this idea. My workaround is i...
  27. Replies
    19
    Views
    4,705

    Re: DLL copy local issue

    Thanks tg. do you have any references or related tutorial?
  28. Replies
    19
    Views
    4,705

    Re: DLL copy local issue

    --> Yes, it will not create copy of the DLL on the debug folder.



    --> Exactly.



    --> I'm referencing the DLL, however, i don't want my DLL to be with my EXE file. I want my DLL to reside...
  29. Replies
    19
    Views
    4,705

    [RESOLVED] DLL copy local issue

    Hello, I need help on DLL that is set Copy Local = false. Upon running the program, i receive this error message.

    An error occurred creating the form. See Exception.InnerException for details. ...
  30. Replies
    0
    Views
    1,330

    Program Files via Batch File

    Hello,

    I'm trying to run a program from a batch file. Basically, the program will read the batch file and put the values in an array. The delimiter of the program in reading the batch file is "...
  31. Re: Returning error message from Web Service to Winforms

    Hahaha. I read my question again and your answer and i find my question stupid. Lol. Anyway, its working now. thanks for the help tg. :thumb: :check:

    Edit:

    Dim myResult As New objWS.editAccount
  32. Re: Returning error message from Web Service to Winforms

    Hi tg, i'm trying to solve my issue using your approach. I have some few questions regarding your method.



    Dim objWS As New wsTest

    If Not objWS.editAccount(myObject, "123").Status Then
    ...
  33. Re: Returning error message from Web Service to Winforms

    I ended up changing the type of my function editAccount from Boolean to String. Then from the inner codes, passing the exception to a variable that eventually, will return by my function editAccount....
  34. Re: Returning error message from Web Service to Winforms

    Thanks tg. I will try to do your suggestion. Thanks again.
  35. Re: Returning error message from Web Service to Winforms

    Thanks for the reply tg. Actually, i have that code. The method i posted is the code on my ASMX file but i also have another code inside it that calls another object and process the real transaction....
  36. [RESOLVED] Returning error message from Web Service to Winforms

    Hello, i'm new to web services. I'm trying to display the error message from the Web Service to the textbox in my Form1.


    Script on my button that calls the web service. (I have no issues on...
  37. Replies
    6
    Views
    3,832

    Re: Sorting Amount By Currency

    Hello jggtz, it only sorted the currency. Thanks jggtz. Btw, what i wanted to happen is like this.

    Currency AMOUNT

    IDR 100.00

    PHP ...
  38. Replies
    6
    Views
    3,832

    Re: Sorting Amount By Currency

    This is crystal reports for Visual Studio 2008.

    I do not have codes that calls the report. Its purely crystal reports.

    98733

    Thanks.
  39. Replies
    6
    Views
    3,832

    Sorting Amount By Currency

    I wanted to sort all amounts by their respective currency.

    Below is the output that i wanted.
    AUD: xxx.xx
    JPY: xxx.xx
    SGD: xxx.xx
    EUR: xxx.xx


    I'm trying this code but it is not working....
  40. Replies
    5
    Views
    3,807

    Re: Foxpro table to VB.NET

    Thank you Mattp. But the code is in C#, it would be great if the code will be in VB.NET.
Results 1 to 40 of 55
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width