Search:

Type: Posts; User: druid

Page 1 of 3 1 2 3

Search: Search took 0.07 seconds.

  1. Replies
    1
    Views
    297

    sql statement problem (mysql)

    hi there.. for example i have a table with these fields:
    field1 (int10)
    field2 (int10)
    datex (datetime)

    what i want is to get the sum of field1 per hour and the last record of field2 for each...
  2. Replies
    1
    Views
    548

    memory leak in my vb6 serial application?

    hi everybody.. i have created a program that receives data serially at regular intervals from a specific device.. the program was to run 24 hours a day.. the program runs smoothly at first but after...
  3. Replies
    10
    Views
    649

    property confusion

    hi, im really confused about properties? what if i just declare a public variable in a particular class rather than create a property for it? is it safe to say that it will do the same or do...
  4. Replies
    2
    Views
    463

    Re: know if a certain folder is opened

    something like that plus more.. i really want to create a program that can detect all the activities of that folder. so from the time it is opened, it should already be detected by the program.. is...
  5. Replies
    2
    Views
    463

    know if a certain folder is opened

    is there a way to know if a person opens a certain folder? what i want to create is a program that will create a log if a user opens a specific folder. is this possible in c#? can anybody give me...
  6. Replies
    3
    Views
    8,490

    delete an instance of a class

    hi everybody, for example a have a class and have created many instances of it, my question is how can i delete a certain instance of that particular class? can anybody point me in the right...
  7. Replies
    2
    Views
    1,133

    auto detect new email

    hi everyone, i am planning to create a program that will automatically detect if there is an incomming email and do some processing on it. as i search the internet, all i could find is how to...
  8. Re: [RESOLVED] autoincrement values in autogenerated datagridview

    ok. thanks..
  9. Re: [RESOLVED] autoincrement values in autogenerated datagridview

    i am using mysql connector net 6.0.4.. i dont know why it wont automatically set the auto increment properties of a particular field in the table.
  10. Re: autoincrement values in autogenerated datagridview

    gep13 and jmcilhinney, thank you so much for helping me. your absolutely right jmcilhinney, the AutoIncrement, AutoIncrementSeed and AutoIncrementStep properties are still not set. i dont know, maybe...
  11. Re: autoincrement values in autogenerated datagridview

    hello.. thanks for your replies.. what i am trying to do is that i have a mysql table.. which have several fields in it. including a primary key named SERIES that auto increments. so what i did is...
  12. [RESOLVED] autoincrement values in autogenerated datagridview

    hi pips. i have a datagridview that is autogenerated together with a binding navigator. however, the table that it is binded to has a primary key that is unique and has an auto incremented value. my...
  13. Replies
    5
    Views
    1,556

    Re: sockets in spawn threads

    thanks for the info. i have read some examples about the asynchronous mode of sockets and have somewhat got the grasp of it.. another question though, can we get the actual duration a certain socket...
  14. Replies
    5
    Views
    1,556

    Re: sockets in spawn threads

    thanks for the quick reply.. pardon me for asking stupid questions. im just a newbie in c#. so you mean to say that when my socket receives a connection, it isnt necessary to transfer it to another...
  15. Replies
    5
    Views
    1,556

    sockets in spawn threads

    hi everybody. i have a program (c#) that has a socket listener that accpets incoming tcp connections. and when it receives one, it will redirect it to a new thread so that the port can be freed up...
  16. Replies
    5
    Views
    498

    Re: replacing exe file in installed app

    not really.. it will be running during office hours only..
  17. Replies
    5
    Views
    498

    replacing exe file in installed app

    hi pips.. my problem goes like this, i have created a program, packaged it and installed it in a computer. after a few days, i have created minor revisions that my client wants to be included in the...
  18. Replies
    3
    Views
    677

    Re: using frames html

    hi.. thanks for the reply.. but im really sorry because i have 0 knowledge when it comes to javascripts. would you be so kind as to show me the ropes or point me in the right direction. thanks.
  19. Replies
    3
    Views
    677

    using frames html

    hi everyone.. i have created a page that has two frames. each frame calls a separate page namely loginx.php and mainx.php..


    <html>
    <head>
    <meta http-equiv="content-type" content="text/html;...
  20. Re: (many tables with few entries) or (few tables with many entries)

    thanks.. im using mysql. is it still ok?
  21. (many tables with few entries) or (few tables with many entries)

    hi pips.. i just want your expert opinion on this. i am planning to create a system(inventory and accounting). this would be used for a construction firm so it would be a project based system. so...
  22. Thread: vb, mysql, php

    by druid
    Replies
    4
    Views
    718

    Re: vb, mysql, php

    hello.. thanks for all your replies.. actually, im still very new to php. what i want to do is create a webpage that can be used as an online inquiry of my inventory system. the inventory system is...
  23. Thread: vb, mysql, php

    by druid
    Replies
    4
    Views
    718

    vb, mysql, php

    hi everybody.. i have created an inventory system using vb6 and mysql. what i want is to create a webpage using php and use my current database (the one that i use in my inventory system) to show the...
  24. Replies
    6
    Views
    609

    instr-like function

    hi people.. is there an INSTR-like function in C.. i mean how could i do this vb code in C?



    dim xx as integer
    dim aa as string
    dim bb as string

    aa = "the quick brown fox"
    bb = "the"
  25. Thread: double quote

    by druid
    Replies
    1
    Views
    321

    double quote

    hi.. how can i put a double quote in my printf statement? i mean the double quote is part of the statement that i want to display. it seems i cant use it since it is a native syntax of c. please...
  26. Thread: record locking

    by druid
    Replies
    5
    Views
    483

    Re: record locking

    thanks.. i really appreciate your help..
  27. Thread: record locking

    by druid
    Replies
    5
    Views
    483

    Re: record locking

    tnx for the reply but let me rephrase my problem.. i have an inventory system that have features like deliveries, withdrawals etc.. and it is installed in multiple computers connected to one...
  28. Thread: record locking

    by druid
    Replies
    5
    Views
    483

    record locking

    hi pips.. i have created an inventory system for a company and it is installed in multiple computers connected to one database. my problem is that if one user is accessing a particular record in a...
  29. Re: creating zip files in vb (destination drive a:)

    thanks for the reply.. unfortunately, i'm still stuck with my problem.. the link you gave me is useful if you have to create 1 zip file.. however, my problem is i want to create the zip file directly...
  30. creating zip files in vb (destination drive a:)

    hi pips.. my problem is i want to create zip files using vb.. i found many source codes here in vb forums. the problem is i want to send these files to drive a: however, these files are big for one...
  31. Replies
    1
    Views
    440

    syntax in ms sql server 2000

    hi pips... can anybody please help me how to do this using ms sqlserver 2000..


    dim rs as adodb.recordset

    set rs = con.execute("select * from tbl_stocks where mid(fld_name,1,1) = '" & var1 &...
  32. Replies
    1
    Views
    711

    ado resync problem

    hi pips.. my problem goes like this, i have a program that adds, deletes, edits data in a table.. when i try to add new data to the table, using the sql statement
    mycon.execute "insert into...
  33. Re: Data Environment and Data Reports Error

    check your connection string...
    indicate the password..
    e.g.

    dim con As New ADODB.Connection

    con.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\INVWJ.mdb; Persist...
  34. Replies
    1
    Views
    465

    vbforums-like web page

    hi pips.. im not sure if this is the right place to put this question... but here it goes.. im planning to create a web page like vbforums for me and my batchmates since the only way for us to keep...
  35. Replies
    2
    Views
    454

    Re: picture box problem

    tnx 4 d reply gavio but unfortunately, it doesn't work.. it creates an error [expected end of statement] please help..
  36. Replies
    2
    Views
    454

    picture box problem

    hi everyone, im planning to create bingo cards for some school project. i used a picture box to generate the random numbers in the cards.. i already accomplished it.. my problem however is that i...
  37. Thread: printing problem

    by druid
    Replies
    2
    Views
    435

    Re: printing problem

    can you show me how to incorporate this to my code above.. I really dont know how to use the code you gave me. thanks Supremus..
  38. Replies
    9
    Views
    892

    Re: print to file problem

    it has a problem with breaks.. it doesn't know where to start the break.. as a result, some of the data that is suppose to be in next page, it prints it in the end of the previous page and when it...
  39. Thread: printing problem

    by druid
    Replies
    2
    Views
    435

    printing problem

    hi everyone.. im planning to print something using this code:

    open "LPT1:" for output as #1
    'print something here
    close #1

    however, the problem with this is that it will only work if printer...
  40. Replies
    9
    Views
    871

    Re: Append Records (INSERT INTO)

    try separating the quotation mark and the word esgein
Results 1 to 40 of 81
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width