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

Search:

Type: Posts; User: invader7

Page 1 of 6 1 2 3 4

Search: Search took 0.03 seconds.

  1. Re: regural if / else VS shorthand if / else and type of functions

    thanks !!
  2. regural if / else VS shorthand if / else and type of functions

    Hello forum ! i have a question !

    Which one do you recommend as "better" ? or it doesn't hurt ?





    private void yes() {
  3. Re: Try Catch , is it enough to prevent crash and error messages ?

    Thank you allo very much for your time ! Arjay thanks for the great example !
  4. Re: Try Catch , is it enough to prevent crash and error messages ?

    thanks for the answer , its more about the errors not about the functions that will be skipped. I want no error messages and no crashes , i want no user interaction at all ! if use :



    try {
    ...
  5. Try Catch , is it enough to prevent crash and error messages ?

    Hello i want to make a simple program that will collect some stats from a local database and then it will email them every 30 minutes to my email address.

    I want to be sure that the program will...
  6. Synchronizing 2 database tables , problem with primary key

    Hello , i want to synchronize 2 tables with this code



    SqlConnection sqlConnLocal = new SqlConnection(stgProjectConn);
    SqlConnection sqlConnRemote = new...
  7. The underlying connection was closed: The connection was closed unexpectedly

    Hello , i get this error message : The underlying connection was closed: The connection was closed unexpectedly at this code




    try
    {

    HttpWebRequest...
  8. The server committed a protocol violation. Section=ResponseStatusLine

    .NET 4 project ... i use this code



    Uri uri = new Uri("http://www.test.com:" + port + @"/admin.cgi?pass=" + pass + "&mode=viewxml");

    ...
  9. Replies
    1
    Views
    1,008

    Dragging picturebox , hides behind panel

    Hello , i want drag and drop to my form , i have some pictureboxes and i want to drag them over the form.




    private bool isDragging = false;
    private int currentX, currentY;
    ...
  10. PHP Sendmail , send emails from different accounts

    Hello i have the sendmail in windows server, i configured it and i can send emails from one email account (which user/pass are in sendmail.ini ) if i want to send email from another email ? what i...
  11. Replies
    1
    Views
    2,793

    JavaScript How to submit iframe in current page

    Hello , i have index.php and somewhere inside it i have an iframe of index2.php , index2.php has this code



    <a href="javascript:{}" target="_parent"...
  12. I want to parse a site , and get some text

    Hello, i wrote a program and i can get the contents of a webpage. Now i want to get some values from it.

    For example my page is something like this

    My name : Bob
    My surname : Bob2


    My name...
  13. Replies
    3
    Views
    1,123

    Re: How to embed custom variable

    its exactly what i want, thank you !

    EDIT:



    using System.Windows.Forms.DataVisualization.Charting;

    Chart[] charts = new Chart[5];
    charts[1] = chart1;
  14. Replies
    3
    Views
    1,123

    How to embed custom variable

    hello , i want to make something like this



    int i = 1;

    while (thisReader.Read())
    {
    chart +i+...
  15. Replies
    4
    Views
    1,352

    Re: Run cmdline code with C#

    try this



    using System.IO;
    .....

    ProcessStartInfo ProcessInfo;
    Process Process;
    ProcessInfo = new ProcessStartInfo(@"C:\windows\system32\cmd.exe",...
  16. Replies
    5
    Views
    4,373

    Re: Stream music to shoutcast server

    i will have 2 servers, 1st = mini 2nd= big . I want to have djs and playlists. When 1st server starts up automatically will play playlists (my c# app will pass cmd commands to winamp and will play...
  17. Re: how can i build a graphical environment ?

    hahahhahahah it was just the first example i found on google. i dont want to do this, by saying i want something like this i mean with no windows bar on the top with not classic minimize maximize and...
  18. Re: how can i build a graphical environment ?

    wpf is closer to what i want but not exactly. i want forms like this for example... http://www.2icv.com/wp-content/uploads/2010/06/dj-2.jpg just an example...
  19. Replies
    5
    Views
    768

    Re: C# + Access Database

    i use this whith access



    using System.Data.OleDb;
    ...
    try
    {
    OleDbConnection thisConnection = new...
  20. Replies
    5
    Views
    768

    Re: C# + Access Database

    here http://www.connectionstrings.com/access you can find how to connect to access, but why do you choose to do this with odbc ?
  21. how can i build a graphical environment ?

    Hello, can someone tell me what i have to search study and learn in order to develop graphical applications with c# ?

    i don't want to develop programs with default windows forms i want to create...
  22. Replies
    5
    Views
    4,373

    Re: Stream music to shoutcast server

    i want to make a radio server. i will install shoutcast on it and a c# program for remote management. c# will keep an eye on shoutcast's log files and understand when someone connects to it. if...
  23. Replies
    5
    Views
    4,373

    Stream music to shoutcast server

    Hello forum, i have virtual dj programm for playing music and i have it to broadcast at a shoutcast server, i want to know if i can make a programm that will run in shoutcast server pc and will...
  24. Replies
    2
    Views
    928

    Schedule a task at system startup

    Hello, how can i schedule a task to be executed at system startup of some date ?
  25. [RESOLVED] Please help i don't know what title to give....

    Please delete me sorry
Results 1 to 25 of 145
Page 1 of 6 1 2 3 4





Click Here to Expand Forum to Full Width

Featured