Search:

Type: Posts; User: salsa31

Page 1 of 13 1 2 3 4

Search: Search took 0.10 seconds.

  1. Re: vs 2017 how can i compare between 2 arrays and delete if there is no match?

    tnx for the code
    but its to complicated for me.
    can you show something more simple?
    like this?



    For Each str As String In ArrWebLead
    For Each names As String In...
  2. Re: vs 2017 how can i compare between 2 arrays and delete if there is no match?

    well i changed the array but still how can i comapare between the 2 arrays?


    Dim ArrDBLeads As New List(Of String)()
    Dim ArrWebLead As New List(Of String)()
    ...
  3. Re: vs 2017 how can i compare between 2 arrays and delete if there is no match?

    yesss!!
  4. [RESOLVED] vs 2017 how can i compare between 2 arrays and delete if there is no match?

    hey
    long time since ive been here.
    im trying to compare 2 arrays and if there is no match then delete.
    this is my code



    Dim arrDBLeads As New ArrayList
    Dim...
  5. Re: VS 2017 Whats wrong with this query sum function requires 1 argument in sql

    thank you guy
    found the solution:D
  6. Re: VS 2017 Whats wrong with this query sum function requires 1 argument in sql

    well i finnaly got it but it dosnt show in the crystal report


    Dim SQL As String = "SELECT HistDate, HistDay, HistName,HistIn,HistOut,EnterWorkHistory.HistIn1,
    HistOut2, CAST( CAST((HisTotal) AS...
  7. Re: VS 2017 Whats wrong with this query sum function requires 1 argument in sql

    this is the part of the code that is not working


    Sum(EnterWorkHistory.HisTotal / 60 ,0) + ':' + right('0' EnterWorkHistory.HisTotal) mod 60,0) ,2) AS SumOfHisTotal
  8. Re: VS 2017 Whats wrong with this query sum function requires 1 argument in sql

    182860
  9. Re: VS 2017 Whats wrong with this query sum function requires 1 argument in sql

    example

    HisTotal Field has this value 254.00
    i want to convert it in the query to hours and minutes so the result will be 4:14
    this 392.00 needs to be 6:32
    and so on
  10. Re: VS 2017 Whats wrong with this query sum function requires 1 argument in sql

    im using crystal reports to display some values. when i use this syntax i get error. this is the code
    trying to sum hours and minutes and display it in the crystal report


    Dim SQL As...
  11. [RESOLVED] VS 2017 Whats wrong with this query sum function requires 1 argument in sql

    Dim SQL As String = "SELECT HistDate, HistDay, HistName,HistIn,HistOut,EnterWorkHistory.HistIn1,
    HistOut2,Sum(EnterWorkHistory.HisTotal / 60 ,0) + ':' + right('0'...
  12. Re: [RESOLVED] visual studio 2017 trying to delete rows by loop getting an error

    issue solved:cool:
  13. [RESOLVED] visual studio 2017 trying to delete rows by loop getting an error

    hey
    im trying to remove duplicate name from datagrid using loop
    but somehow im getting an error
    this is the code



    Dim i, j As Integer
    With DataGridShailta
    ...
  14. Re: trying to replace function something not working

    replace and update
  15. Re: trying to replace function something not working

    NO ERROR friend.
    it just dosnt do anything
    example
    sunsent blv 9/12
    need to be
    sunset blv 912
    table name - Customers field name - Adress
  16. Re: trying to replace function something not working

    also dosnt work


    SELECT Replace(Address,'/', ' ') As Address FROM customers
  17. Re: trying to replace function something not working

    table name - Customers field name - Adress
  18. Re: trying to replace function something not working

    not working amigo
    still i can see the the symbo'/' in the adress field
    example
    sunsent blv 9/12
    need to be
    sunset blv 912
  19. [RESOLVED] trying to replace function something not working

    hey
    im trying to remove a currenct symbol from a filed
    im missing something in my code
    need some help please
    if the address field contains this '/' then replace it with a empty string


    select...
  20. Re: how do i disable FileSystemWatcher after file is found?

    hay karen
    i dont understand
    i need to call the start and stop?
    please explain
  21. Re: the process cannot access the file because it is being used by another process

    the file has everyone full permissions



    will this fix the issue?
    the kill process is working ok
    problem with streamreader i think.

    is it realy closing the file?
  22. Re: the process cannot access the file because it is being used by another process

    sry my bad
    fixed it2
    any way why do i get this error?
  23. Re: how do i disable FileSystemWatcher after file is found?

    after the file is found
    you mean here?


    Private Sub Fsw_Changed(ByVal sender As Object, ByVal e As FileSystemEventArgs)
    fsw.EnableRaisingEvents = False
    Readfile()
    ...
  24. [RESOLVED] the process cannot access the file because it is being used by another process

    im using StreamReader to read some content from a textfile
    after im reading i want to delete it.
    but i get this error

    i know the reader needs to be closed and its self closing
    but still error...
  25. Re: how do i disable FileSystemWatcher after file is found?

    if this is the answer fsw.EnableRaisingEvents=False?
    where do i place it in the code?
  26. Re: how do i disable FileSystemWatcher after file is found?

    fsw.EnableRaisingEvents=False?
  27. [RESOLVED] how do i disable FileSystemWatcher after file is found?

    hello
    is there a way to disable FileSystemWatcher after file is found?
    beacuse it continues to loop.
    this my code.



    'in form load =====================================
    Dim watched...
  28. Re: [RESOLVED] visual studio 2017 listener instead of timer?

    btw
    if the file is found
    how do i disable the handler for not calling again and again?
    and when i want to read it i get access denied
  29. Re: visual studio 2017 listener instead of timer?

    dday9 thank you
    i fixed it :)
  30. Re: visual studio 2017 listener instead of timer?

    changed it
    still not working
    this is the whole code


    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load

    Using watcher As New...
  31. Re: visual studio 2017 listener instead of timer?

    Lambda parameter 'sender' hides a variable in an enclosing block, a previously defined range variable, or an implicitly declared variable in a query expression.
  32. Re: visual studio 2017 listener instead of timer?

    no error for created
    only this line


    sender As Object, e As FileSystemEventArgs
  33. Re: visual studio 2017 listener instead of timer?

    there is still an error sir
    182338
  34. Re: visual studio 2017 listener instead of timer?

    something is wrong
    182337
  35. Re: visual studio 2017 listener instead of timer?

    where do i put this code?
    in form load?
  36. Re: visual studio 2017 listener instead of timer?

    thank you amigo
    ill check it
  37. [RESOLVED] visual studio 2017 listener instead of timer?

    hey
    i have a timer that each 10 seconds checks a file that is comming from an api.
    question is there other method for this?
    i know there is a way called listener
    dont know how to do it.
    this is...
  38. Re: [RESOLVED] VISUAL STUDIO 2017 how can i to get specific number or name from a lon

    Everything ok;)
  39. Re: VISUAL STUDIO 2017 how can i to get specific number or name from a long string?

    tnx chris it workes now
    god bless you:cool:
  40. Re: VISUAL STUDIO 2017 how can i to get specific number or name from a long string?

    look post #6
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width