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

Search:

Type: Posts; User: yusufozkay

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    1,319

    Mono vs. .NET

    What will be the situation of Mono after .NET 2.0? Could the changes at .NET 2.0 be integrated with Mono? What will be at the conditions that the new web components which wants IIS?
  2. Sql server does not exist or access denied

    I got this message when I try to run my asp.net web application on my computer. The code:
    string baglan = "Data Source=localhost; Initial Catalog=Northwind; Integrated Security=SSPI";
    SqlConnection...
  3. Replies
    3
    Views
    3,333

    There is no row at position -1

    "There is no row at position -1" what is the reason of this exception? I couldn't understand the reason of this, because it occurs random I think. I didn't come across this exception while debugging...
  4. Replies
    3
    Views
    736

    Re: Small Stops In Scrolling Text

    We are showing the screen in plasma that is 39 inches.
    label1.Left-=1;
    And in big screen I have to get a value that is smaller than 1 because the jumps are too obvious. But it gets an integer...
  5. Replies
    3
    Views
    736

    Small Stops In Scrolling Text

    We have written a windows application that has a scrolling text in it. But we have a problem: The label that contains the text doesn't scroll enough properly. Some small stops happens. The way we...
  6. Replies
    1
    Views
    637

    Many Timers In A Windows Application

    I have eight timers in a windows application. Is it a problem that using so much timers in a windows application? Note: The application will not be shut down for months.
  7. Replies
    1
    Views
    755

    Getting rows from datagrid

    I have a datagrid which has rows of data. How can I get first 6-7 rows to another datagrid?
  8. Replies
    1
    Views
    736

    New Line In DataGrid

    I get a column from a table in the SQL server. I want the string data in the row to get new line at the same grid cell after a space character. How can i do this?
  9. Replies
    3
    Views
    800

    Table from Dataset to Datagrid

    I have a table in a dataset and I want to show the first 6 rows of this table in a datagrid. How can I do this?
  10. Replies
    0
    Views
    5,020

    Timeline Control in c#

    I need a timeline control in my c# application, is there any timeline control or can i write it?
  11. Replies
    1
    Views
    816

    Preview Panel

    Hi!
    I have two forms in my application. I am showing some kinds of media. And in the first form I want to be able to see the second form in a smaller panel. How can I do it?
  12. Thread: Vmr-9

    by yusufozkay
    Replies
    2
    Views
    940

    Vmr-9

    Can I use video mixing renderer with c#?
  13. Replies
    5
    Views
    5,912

    Re: System.OutOfMemory Exception

    This is the code that causes the exception:


    private void textBox3_TextChanged(object sender, System.EventArgs e)
    {
    string familyName = player.label1.Font.FontFamily.ToString();
    int fontsize...
  14. Replies
    5
    Views
    5,912

    Re: System.OutOfMemory Exception

    I found the code block that causes the System.OutOfMemory Exception. When I remove those codes it works. But I couldn't understand what is the problem with those codes. I am home now On Monday I...
  15. Replies
    5
    Views
    5,912

    System.OutOfMemory Exception

    What are the reasons of System.OutOfMemory exception? And how can i solve this?
  16. Replies
    3
    Views
    752

    Re: Getting info from Datagrid

    I got info from database and it is seen in datagrid, And now I want to take the string or or whatever else that is written in one cell of datagrid.
  17. Replies
    3
    Views
    752

    Getting info from Datagrid

    How can i get info that is inside a windows application datagrid?
  18. Replies
    0
    Views
    611

    Writing Timeline

    How can I write a timeline as a windows as a windows service? Is there anyone who has written?
  19. Replies
    1
    Views
    628

    Multi-Threading

    using System;
    using System.Threading;

    public class Test
    {
    static void Main()
    {
    ThreadStart job = new ThreadStart(ThreadJob);
    Thread thread = new Thread(job);
    ...
  20. Replies
    5
    Views
    827

    Re: Getting information from main class

    The listbox is at the main I have to define main class.
    listTest(mainClass.ListBoxName);
    Where will I know the name of the main class and the name of the listbox in it? I may want to use this class...
  21. Replies
    5
    Views
    827

    Re: Getting information from main class

    public string listTest(ListBox myList)
    {
    return myList.Name.ToString();
    }
    listTest(what will be written here);

    how will this work? i didnt understand, i will get the information from the...
  22. Replies
    5
    Views
    827

    Getting information from main class

    I am writing a class that I will use in my main program. In this class I have to get some information from main class. For example I get the items of listbox, but on runtime user can change the items...
  23. Replies
    1
    Views
    662

    using threads in recursive functions

    Is there anyone who has written recursive functions using threads in it? If somebody has written can he/she send codes to me? If there is, I will write my e-mail or msn here for recieving the codes.
  24. Replies
    3
    Views
    685

    Re: using threads in class libraries

    I call a function of class library from the main program. The function's last line is:
    timer1.Start();
    it starts the timer and returns back to the main program, so the timer goes out of scope. I...
  25. Replies
    3
    Views
    685

    using threads in class libraries

    I am converting a windows application which contains timers and threads, to a class library. And i had many problems. Does anyone knows documents or code to get help about this?
Results 1 to 25 of 54
Page 1 of 3 1 2 3





Click Here to Expand Forum to Full Width

Featured