Search:

Type: Posts; User: gooden

Page 1 of 8 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    0
    Views
    456

    VS 2010 Who executed application

    Hi!! :)

    I need to know if there is a way of detect if the exe was executed by another exe or if it was the user that executed the exe...
    I think I explained right xD

    Best Regards :)
  2. Replies
    2
    Views
    1,230

    Re: How do you convert string to unicode?

    Just do something like this:

    Private Sub Encode_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Encode.Click
    'Meet me for lunch
    Dim str As String =...
  3. Replies
    3
    Views
    3,876

    Re: ROT_13 Crypter/Decrypter Module

    You forgot the decrypt


    Imports System.Text
    Module ROT_13

    Public Function Crypt(ByVal input As String) As String
    Dim bData() As Byte = Encoding.ASCII.GetBytes(input)
    Dim...
  4. Replies
    0
    Views
    405

    VS 2005 WebReference to XML

    Ok i have a webservice in .net (Asmx) that i'm using. i load the function to a tipe of variable that is called invoice.


    Is there anyway to extract the result of the webservice to xml , so i can...
  5. Replies
    5
    Views
    5,089

    Re: Way to make an EXE update itself?

    Like you Know it is impossible to replace a file while it is runing. The solution i normali use is a program that is called update that is going to get the update and at tthe end execute the app...
  6. Replies
    0
    Views
    1,350

    MSSoap SSL Problem.

    Well im trying to use MSSoap 3.0 with vb6. the problem is when i use SSL it does not work :| if i dont use ssl it works perfect. the problem is using ssl.

    my code:

    Private oSoapClient As...
  7. Re: Restrict TextBox to only certain characters, numeric or symbolic

    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
    Dim theText As String = TextBox1.Text
    Dim Letter As String...
  8. Thread: Blurtooth

    by gooden
    Replies
    0
    Views
    487

    VS 2005 Blurtooth

    I have a Laptop With Bluetooth And i need to make a application to send a file for a Cellphone.

    How can i use the bluetooth without using external Dll's like farson etc...

    Is there anyway???
  9. Replies
    162
    Views
    90,240

    Re: [RESOLVED] [2008] Can I add a TCPClient Component

    So What i'm Making at this moment is using your TCP IP class to make a private message.

    So i will send a comand Like FILESEND|USER|NAMEFILE|SIZE|ETc.... and the in the other side i willl acept the...
  10. Replies
    162
    Views
    90,240

    Re: [RESOLVED] [2008] Can I add a TCPClient Component

    Hi Atheist

    I Have a little Question. If i want to send files is better to use a diferent protocol that connects between clients instead of sending The data From Client -> Server -> Other Client
    ...
  11. Replies
    0
    Views
    492

    [2005] & [2008] SQLDMO question

    hiho guys here i am again borring with stupid questions :P


    I'm trying to get All Servers and instances With the sqlDMO


    Dim i As Integer
    Dim oNames As SQLDMO.NameList
    Dim...
  12. Replies
    4
    Views
    489

    Re: Executing Sql File...

    Resolved :D

    With User and Pass:
    EXEC master..xp_cmdshell 'osql -S localhost\sqlserver -u user -p password -i c:\file.sql'

    With Windows Autentication
    EXEC master..xp_cmdshell 'osql -S...
  13. Replies
    4
    Views
    489

    [RESOLVED] Executing Sql File...

    Hiho guys.

    Well i have a little problem..... i have a SQL File Caled xpto.sql that is at c:\

    Im trying to execute the file by the new query windows.

    EXECUTE master.dbo.xp_cmdshell...
  14. Replies
    0
    Views
    566

    [2005] CRystal Report Manualy

    Edited Close plz
  15. Replies
    1
    Views
    469

    [2008] Remote Client

    Well I'm start making a server and client program of chat and send image desktop.


    I have some questions i would like to make.

    1º What is the best way to make a connection between machines??...
  16. Replies
    2
    Views
    433

    Problem in a query

    Well i have on a server instaled a sqlexpress and in a query i have a little problem with the decimals.

    I have the query:

    select (20/100+1) AS number from documents

    the value that return is...
  17. Replies
    4
    Views
    742

    Re: [2005] Get page source Problem Character.

    how can i apply the culture info correct?
  18. Replies
    4
    Views
    742

    Re: [2005] Get page source Problem Character.

    I tryed with other codes but i cant make :\

    is there something to do about encoding?
  19. Replies
    4
    Views
    742

    [2005] Get page source Problem Character.

    Well im trying to get a source page to a string.


    Dim aa As String = Me.WebBrowser1.Document.Body.InnerHtml.ToString


    when i do Msgbox(aa) or print the source the characters like: á à...
  20. Replies
    8
    Views
    977

    Re: [2005] Regex Problem

    Dim aa As String = ":: &nbsp;aaaa</div>:: &nbsp;bbbbb</div>:: &nbsp;cccc</div>:: &nbsp;dddd</div>:: &nbsp;aaaa</div>:: &nbsp;bbbbb</div>:: &nbsp;cccc</div>:: &nbsp;dddd</div>"
    Dim strRegex...
  21. Replies
    8
    Views
    977

    Re: [2005] Regex Problem

    :: &nbsp;aaaa</div>:: &nbsp;bbbbb</div>:: &nbsp;cccc</div>:: &nbsp;dddd</div>:: &nbsp;aaaa</div>:: &nbsp;bbbbb</div>:: &nbsp;cccc</div>:: &nbsp;dddd</div>

    this should do as sample text no?
  22. Replies
    8
    Views
    977

    [RESOLVED] [2005] Regex Problem

    Well i'm trying to make a find all words that start and end with a certain Word.
    Start=":: &nbsp;"
    end="</div>"



    Dim aa As String = ":: &nbsp;aaaa</div>:: &nbsp;bbbbb</div>"
    Dim...
  23. Replies
    4
    Views
    579

    Re: [2005] Drop Down List Not working

    maybe because i want the selected index. :| But if i use the others 2 the error happen to
  24. Replies
    4
    Views
    579

    Re: [2005] Drop Down List Not working

    Ups ok wrong seccion sorry :S
    the item=1 should be 0 if i select the zero and item=3 if i select the third item.
    understand?
  25. Replies
    4
    Views
    579

    [2005] Drop Down List Not working

    Well i have a little problem in my code. i use a response.redirect and it insert the wrong data :|


    Protected Sub DropDownList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As...
  26. Replies
    0
    Views
    567

    [2005] Problem on request xML on https

    I'm having a problem using the xml request and send on an https Website.

    Well i'm using this code:

    Private StrCertMsg As String
    Protected Function OnCertificateValidation(ByVal sender...
  27. Replies
    1
    Views
    579

    [2005] Sql Express Problem.

    Well i have a little problem with the query that im making.

    The problem is that i use a PT OS but some of my clients use an English OS. when i make the query in my computer it goes ok but in some...
  28. Replies
    6
    Views
    664

    Re: [2005] Formating String

    if i use the code
    ref = String.Format(ref, "000 000 000")

    the string format still the same 123456789

    :\ im trying use split but i dont think i can do with that. since the number that is...
  29. Replies
    6
    Views
    664

    [RESOLVED] [2005] Formating String

    Well i'm trying to format a string but im having a littleeeee problem :P

    i'm making this

    ref = String.Format(ref, "000 000 000")


    The objective here is to pass a number like: 123456789 to...
  30. Replies
    1
    Views
    774

    Re: [2005] Minimize to tray button

    I have Found a Code that do that ;)

    http://www.emoreau.com/Entries/Articles/2007/11/Adding-a-button-on-the-title-bar.aspx
  31. Replies
    1
    Views
    774

    [RESOLVED] [2005] Minimize to tray button

    Well i would like to know how can i put a button in the title bar biside the minimize button.

    it's called the minimize to tray button :P

    an example :P
    ...
  32. Replies
    6
    Views
    634

    Re: [2005] Web services request.

    because is not my web server. :| it's a web server of a company that we work. The code i posted works but it have a problem because of autentication of ssl. i just want to know if there is someway to...
  33. Replies
    6
    Views
    634

    Re: [2005] Web services request.

    anybody ?
  34. Replies
    6
    Views
    634

    Re: [2005] Web services request.

    i have a code that is kind working.


    Dim URL_BASE As String = "https://xpto.com/.php"
    Dim xmlDoc As System.Xml.XmlDocument
    xmlDoc = New System.Xml.XmlDocument

    Dim...
  35. Replies
    6
    Views
    634

    [2005] Web services request.

    Well im making a work for a company and i have to send a xml post like:



    <aut>
    <username>xpto</username>
    <password>Pass</password>
    </aut>
  36. Replies
    1
    Views
    547

    [2005] FAst way to get code..

    Well i need to know a way of getting The source code of a page without being with webapplication

    is there any?
  37. Replies
    12
    Views
    1,133

    Re: Forcing a mouse click

    you don't need that 0.o if it is to click a button you just have to do like:

    btn.performclick
  38. Replies
    3
    Views
    594

    Re: [2005] Floating painel

    OMG so simple o.0

    LOOOOL

    Okok :P

    TY Rated the 2 posts ;)
  39. Replies
    3
    Views
    594

    [RESOLVED] [2005] Floating painel

    Good morning in first place :)

    Well i have a little question to you guys.

    I want to make a Floating Panel like this....

    so my logic is the next:

    I create a Form that is called Form...
  40. Re: [2008] Msn Messenger Display Pictures Editor

    that is a realy complicated question..... i dont realy know how can you do that but i think that is the only way :| Unless you found other way
Results 1 to 40 of 281
Page 1 of 8 1 2 3 4



Click Here to Expand Forum to Full Width