CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Druss

Page 1 of 3 1 2 3

Search: Search took 0.05 seconds.

  1. Thread: winsock timeout

    by Druss
    Replies
    1
    Views
    1,784

    winsock timeout

    hi all,
    i m implemanting a multichat into my program.
    there is a server exe on my host machine.

    i have some problems with senddata method.
    i check the winsock.state before sending data.
    if...
  2. Thread: setup???

    by Druss
    Replies
    0
    Views
    481

    setup???

    i did a mobile project with vb.net.
    i want to make a setup package. where is the package and deployment wizard?

    there is a kind of project in New, Project, setup and deploymen projects. how can i...
  3. Replies
    14
    Views
    1,962

    Re: simple form actions

    thanx DSJ.

    lets assume that there are a MDI form and many child forms.
    there is grid which shows items on frmItms. when double click the row it shows itemdetails form (dialogform). but i reach...
  4. Replies
    14
    Views
    1,962

    Re: simple form actions

    ok. i try again without overloads.

    Public Sub New(ByVal F As Form1)
    MyBase.New()
    F1 = F
    InitializeComponent()
    End Sub

    it runs properly. but there is another...
  5. Replies
    14
    Views
    1,962

    Re: simple form actions

    Public Overloads Sub New(ByVal F As Form1) in this string, it doesnt accept overloads. it says ".. do not use overloads keyword when the overloading 'sub new' "

    when i press the buton on form1,...
  6. Replies
    14
    Views
    1,962

    Re: simple form actions

    i understand. thanx DSJ
    but i get some errors that i cannot understand. cos im new in vb.net.

    can you send me a simple example that contains 2 forms?
    (calling other forms, getting values from...
  7. Replies
    14
    Views
    1,962

    Re: simple form actions

    --Dim F2 as New Form2(Me)--
    it says too many arguments. ????

    F2.RefToForm1 = Me ??? what is this???

    i think i cannot explain my problem.

    in vb6: there is a 2 forms. form1, form2.
    in form1:...
  8. Replies
    14
    Views
    1,962

    Re: simple form actions

    here is the code:
    in form1:
    in button click event
    dim frm as new form2
    frm.show



    in form2
    in button click event
  9. Replies
    14
    Views
    1,962

    simple form actions

    im new in .net
    i want to display a form from another form.
    there is a button on form1

    in button1 click event
    dim frm as new form2
    frm.show
    everything is ok.

    but when i want to get any...
  10. Replies
    0
    Views
    389

    preventing downloading from net.

    there is a program running on the machine. the program connects to internet and downloads a file. i know site that program connects.
    i want to prevent the program this site.
    for example...
  11. Replies
    4
    Views
    1,362

    Re: vb.net and xml web service

    it always produces cs file. my project is in vb.net. why does it produce .cs file?
    i added .cs file to my app. but i couldnt get the methods.

    note: this is my first webservice app.
  12. Replies
    4
    Views
    1,362

    Re: vb.net and xml web service

    i add my xmlweb service to my vb.net app. then what?
    i didnt understand your answer. can u give an example.
    can u put the values in textboxes (from first webservice) ?
    (it returns c_name,c_id, ......
  13. Replies
    4
    Views
    1,362

    vb.net and xml web service

    hi gurus,

    i want to get the value from xml web service via vb.net. which tools (class, component vs..) should i use?

    i wrote a basic xml webservice that returns a dataset. i want to display...
  14. Replies
    3
    Views
    629

    Re: monitoring a table in sqlserver

    no, i dont think trigger can do it.
    something must run like timer in sqlserver.it must check the GETDATE func.

    when the GETDATE()>=Deadline , function (or anything in sql, idont know) must update...
  15. Replies
    3
    Views
    629

    monitoring a table in sqlserver

    hi all,
    is there any way for sqlserver to monitor a table?
    i want to update some records in a table when the time is up.
    there is a table with some fields (xID,xState,xDeadLine)
    i want to update...
  16. Replies
    1
    Views
    750

    client-server with sql server

    lets assume that there are a server(sql server installed) and 2 client machine.

    i made an exe file for clients.
    when a client adds a new record to server , other client should see the new record...
  17. Replies
    3
    Views
    1,140

    Re: a simple stored procedure

    ok i found it from another site.(http://p2p.wrox.com/topic.asp?TOPIC_ID=2688)

    With mycmd
    .ActiveConnection = Conn
    .CommandText = "addNewRecord"
    .CommandType =...
  18. Replies
    3
    Views
    1,140

    Re: a simple stored procedure

    S = "addNewRow @S_CID=" & LngCID & ", @S_Desc='" & txtDesc & "'"
    mycmd.ActiveConnection = Conn
    mycmd.CommandType = adCmdStoredProc
    mycmd.CommandText = S
    mycmd.Execute S
    but i...
  19. Replies
    3
    Views
    1,140

    a simple stored procedure

    can anyone write a simple stored procedure.
    i want to add a record to a table via storedprocedures.

    i did a stroedprocedure in sqlserver. it runs well.
    how can i use the stored procedures in...
  20. Replies
    6
    Views
    1,264

    Re: ADO Question - Append records to table

    the code below adds all records in tabloA to tabloB
    (two tables are in the same mdb file)
    S = "INSERT INTO TabloB SELECT TabloA.* FROM TabloA"
    myCmd.ActiveConnection = TempDB
    myCmd.CommandText =...
  21. Replies
    2
    Views
    725

    Re: diplaying chm file

    chm file is a help file.

    i solved my problem.

    in form load;
    app.helpfile=app.path & "\xx.chm"

    in menuclick event;
    sendkeys "{F1}"
  22. Replies
    2
    Views
    725

    diplaying chm file

    i want to display a .chm file from my app.
    shell command doesnt run. i think it runs only executable programs.
    there are some chm files in app.path folder.
    how can i show it to users?

    thanx
  23. Replies
    2
    Views
    602

    Re: getting office language

    i solved my problem lke below...
    select case xl.activesheet.name
    case "Sheet1":msgbox "English"
    case "Sayfa1":msgbox"Turkish"
    end select

    2 langs are enough for me.

    thanx all.
  24. Replies
    1
    Views
    631

    inernet conneciton is alive?

    i want to know whether internet connection is live or diconnected?
    it can be connected to net with modem or LAN?

    i just want to catch if it is connected to net...

    thanx...
  25. Replies
    2
    Views
    602

    Re: getting office language

    i found out forums. but i couldnt find any clue.
    i remember a question like mine but cant find it.

    anyone helps?
Results 1 to 25 of 58
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured