<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <title>C#'s topics - tribe.net</title>
  <link rel="alternate" href="http://csharp.tribe.net/threads/atom" />
  <subtitle>Tribe.net. Local Connections</subtitle>
  <entry>
    <title>graphics in ASP.NET</title>
    <link rel="alternate" href="http://csharp.tribe.net/thread/5d33b7d6-a486-48da-aa30-680d4a7b3e7b" />
    <author>
      <name>inchoate</name>
    </author>
    <id>http://csharp.tribe.net/thread/5d33b7d6-a486-48da-aa30-680d4a7b3e7b</id>
    <updated>2008-08-12T13:42:49Z</updated>
    <published>2008-08-11T16:16:17Z</published>
    <summary type="html">&lt;div&gt;I followed a tutorial for drawing graphics in an asp page but there is an error.(may look familiar) 
&lt;br/&gt;
&lt;br/&gt;Here's my page_Load code: 
&lt;br/&gt;
&lt;br/&gt;Response.ContentType = "image/jpeg"; 
&lt;br/&gt;
&lt;br/&gt;Bitmap objBitmap; 
&lt;br/&gt;Graphics objGraphics; 
&lt;br/&gt;
&lt;br/&gt;objBitmap = new Bitmap(200, 200); 
&lt;br/&gt;objGraphics = Graphics.FromImage(objBitmap); 
&lt;br/&gt;
&lt;br/&gt;objGraphics.DrawLine(new Pen(System.Drawing.Color.Red), 0, 0, 200, 200); 
&lt;br/&gt;
&lt;br/&gt;objBitmap.Save(Response.OutputStream, ImageFormat.Gif); 
&lt;br/&gt;
&lt;br/&gt;objBitmap.Dispose(); 
&lt;br/&gt;objGraphics.Dispose(); 
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;the error is : the image " http://localhost:1653/Default.aspx \" cannot be displayed because of an error. 
&lt;br/&gt;
&lt;br/&gt;
&lt;br/&gt;What is missing that is causing the problem? 
&lt;br/&gt;Do I actually have to have an image load from someplace? 
&lt;br/&gt;I'm not trying to do html text at the same time.&lt;/div&gt;
				&lt;div&gt;
			posted in
			&lt;a href="http://csharp.tribe.net"&gt;C#&lt;/a&gt;
			- 4 replies
		&lt;/div&gt;</summary>
    <dc:creator>inchoate</dc:creator>
    <dc:date>2008-08-11T16:16:17Z</dc:date>
  </entry>
  <entry>
    <title>classes for music</title>
    <link rel="alternate" href="http://csharp.tribe.net/thread/fa69f796-15c3-4587-a4a3-46a0c5f9599e" />
    <author>
      <name>inchoate</name>
    </author>
    <id>http://csharp.tribe.net/thread/fa69f796-15c3-4587-a4a3-46a0c5f9599e</id>
    <updated>2007-10-08T23:10:54Z</updated>
    <published>2007-10-08T23:10:54Z</published>
    <summary type="html">&lt;div&gt;are there classes for programming musical notes in c#?
&lt;br/&gt;not for just playing WAC files?&lt;/div&gt;
				&lt;div&gt;
			posted in
			&lt;a href="http://csharp.tribe.net"&gt;C#&lt;/a&gt;
			- 0 replies
		&lt;/div&gt;</summary>
    <dc:creator>inchoate</dc:creator>
    <dc:date>2007-10-08T23:10:54Z</dc:date>
  </entry>
  <entry>
    <title>How long doing C#?</title>
    <link rel="alternate" href="http://csharp.tribe.net/thread/10af4330-0f7b-4a05-bc65-82ee1ad94385" />
    <author>
      <name>genghis_don</name>
    </author>
    <id>http://csharp.tribe.net/thread/10af4330-0f7b-4a05-bc65-82ee1ad94385</id>
    <updated>2007-06-05T00:37:32Z</updated>
    <published>2004-03-05T03:03:59Z</published>
    <summary type="html">&lt;div&gt;Didn't even know this tribe existed until a few seconds ago.
&lt;br/&gt;
&lt;br/&gt;I was curious how long all of you have been doing C#?  I was seriously freaked nearly 2 years ago when my previous employer went belly up and overjoyed to land in a C#/.NET environment shortly thereafter.
&lt;br/&gt;
&lt;br/&gt;Are most of you ex-C++ folks?
&lt;br/&gt;
&lt;br/&gt;Best,  Don&lt;/div&gt;
				&lt;div&gt;
			posted in
			&lt;a href="http://csharp.tribe.net"&gt;C#&lt;/a&gt;
			- 8 replies
		&lt;/div&gt;</summary>
    <dc:creator>genghis_don</dc:creator>
    <dc:date>2004-03-05T03:03:59Z</dc:date>
  </entry>
  <entry>
    <title>Visual Studio Question</title>
    <link rel="alternate" href="http://csharp.tribe.net/thread/3afd2740-e964-4d3d-995f-71c3bfc1a9f1" />
    <author>
      <name>inchoate</name>
    </author>
    <id>http://csharp.tribe.net/thread/3afd2740-e964-4d3d-995f-71c3bfc1a9f1</id>
    <updated>2006-04-16T03:59:14Z</updated>
    <published>2006-04-16T03:59:14Z</published>
    <summary type="html">&lt;div&gt;I had good luck with VS2003 in connecting to databases.  Right now I'm using VSExpress(all I could afford), and I'm having a hell of a time in doing SQL stuff.  My problems:
&lt;br/&gt;
&lt;br/&gt;"invalid object name"  after connecting(I think I'm connecting)
&lt;br/&gt;or "login failed"  
&lt;br/&gt;
&lt;br/&gt;I'm creating the db in VS itself.
&lt;br/&gt;Although I did try to create "Northwind" via the VSC#2005 book, no luck there either.
&lt;br/&gt;
&lt;br/&gt;Any help?&lt;/div&gt;
				&lt;div&gt;
			posted in
			&lt;a href="http://csharp.tribe.net"&gt;C#&lt;/a&gt;
			- 0 replies
		&lt;/div&gt;</summary>
    <dc:creator>inchoate</dc:creator>
    <dc:date>2006-04-16T03:59:14Z</dc:date>
  </entry>
  <entry>
    <title>Sr C#/.NET Eng job oppty in Chicago</title>
    <link rel="alternate" href="http://csharp.tribe.net/thread/109a20aa-ec4b-4839-96c5-a0fd9e9cfc2e" />
    <author>
      <name />
    </author>
    <id>http://csharp.tribe.net/thread/109a20aa-ec4b-4839-96c5-a0fd9e9cfc2e</id>
    <updated>2005-05-05T22:14:55Z</updated>
    <published>2005-05-05T22:14:55Z</published>
    <summary type="html">&lt;div&gt;Hello,
&lt;br/&gt;
&lt;br/&gt;We have several openings with a software start-up in downtown Chicago for Sr. Engineers who have solid experience developing in C# on the .NET platform.   I've listed job info below.  Great oppty, very cool company, I'm happy to discuss at length.  
&lt;br/&gt;
&lt;br/&gt;contact: elan@goldfishsearch.com
&lt;br/&gt;
&lt;br/&gt;The Company
&lt;br/&gt;This start-up offers its customers the latest technological advancements in packaged enterprise software, networking, wireless, and GPS technologies in a hosted environment, to substantially improve productivity and lower costs. Founded in 2003 by a superb management team, and backed by US Venture Partners, this company achieves value by using latest predictive technology developed for the National Science Foundation and Army Research Labs to not only route and track*but predict the future movement of vehicles for trucking companies, package and delivery services, service fleets and third-party logistics providers.
&lt;br/&gt;
&lt;br/&gt;This opportunity will require the right candidate to push the bleeding edge of C# / Microsoft .Net technologies, and we are seeking exceptional technologists that are highly motivated, have the ability to implement complex concepts and work well in a team environment.
&lt;br/&gt;
&lt;br/&gt;Job Description
&lt;br/&gt;-Translate business requirements into high quality technical designs and working software
&lt;br/&gt;-Design, unit test and code moderate to complex object oriented applications
&lt;br/&gt;-Continually enhance the technical design, architecture and frameworks of the Mobitrac product suite
&lt;br/&gt;-Perform and document architecture and technical design for software developed
&lt;br/&gt;-Ensure technical components are usable, reliable, scalable, extensible, interoperable, and reusable
&lt;br/&gt;-Work and communicate in a team environment where the teams are cross-functional comprising of developers, UI designers, product managers, QA persons, Technical documentation writers etc.
&lt;br/&gt;
&lt;br/&gt;Job Requirements
&lt;br/&gt;-Experience with C#, .Net, SQL and XML required
&lt;br/&gt;-Excellent ability to architect, design and develop Object Oriented software with practical use of design patterns
&lt;br/&gt;-Must have 5 or more years of experience in at least one of the following languages (C++, Java, Delphi)
&lt;br/&gt;-Must have full lifecycle experience building complex systems and enterprise-class applications from inception
&lt;br/&gt;-Strong analytical thinking, problem solving, application usability and interpersonal skills
&lt;br/&gt;-Should possess a strong understanding of Math/Trig/ Linear Algebra
&lt;br/&gt;-GIS/GPS with the transportation industry a plus
&lt;br/&gt;-Experience in Extreme Programming (nUnit, Pair Programming, Test Driven Development (TDD), -Continuous Integration) a plus
&lt;br/&gt;-Experience in User Interface a plus
&lt;br/&gt;-BS or MS in Computer Science, Engineering, or Mathematics a plus&lt;/div&gt;
				&lt;div&gt;
			posted in
			&lt;a href="http://csharp.tribe.net"&gt;C#&lt;/a&gt;
			- 0 replies
		&lt;/div&gt;</summary>
    <dc:creator />
    <dc:date>2005-05-05T22:14:55Z</dc:date>
  </entry>
  <entry>
    <title>Urgent help for Visual Basic or C#!</title>
    <link rel="alternate" href="http://csharp.tribe.net/thread/f4314440-5106-4773-ac11-50fb2285bae0" />
    <author>
      <name />
    </author>
    <id>http://csharp.tribe.net/thread/f4314440-5106-4773-ac11-50fb2285bae0</id>
    <updated>2004-09-12T15:35:51Z</updated>
    <published>2004-09-12T15:35:51Z</published>
    <summary type="html">&lt;div&gt;Some theatre management company wants a new ticketing system.
&lt;br/&gt;
&lt;br/&gt;=====================
&lt;br/&gt;Task is to design a .NET system for this.
&lt;br/&gt;Entire project specification is available upon request.
&lt;br/&gt;
&lt;br/&gt;Thanks!&lt;/div&gt;
				&lt;div&gt;
			posted in
			&lt;a href="http://csharp.tribe.net"&gt;C#&lt;/a&gt;
			- 0 replies
		&lt;/div&gt;</summary>
    <dc:creator />
    <dc:date>2004-09-12T15:35:51Z</dc:date>
  </entry>
  <entry>
    <title>SMTP in C#</title>
    <link rel="alternate" href="http://csharp.tribe.net/thread/66478755-664a-45e0-9673-b4caf870e51d" />
    <author>
      <name>randymorin</name>
    </author>
    <id>http://csharp.tribe.net/thread/66478755-664a-45e0-9673-b4caf870e51d</id>
    <updated>2004-08-28T02:54:15Z</updated>
    <published>2004-08-28T02:54:15Z</published>
    <summary type="html">&lt;div&gt;http://www.developerfusion.com/show/4039/
&lt;br/&gt;
&lt;br/&gt;Another article. Hope you like.&lt;/div&gt;
				&lt;div&gt;
			posted in
			&lt;a href="http://csharp.tribe.net"&gt;C#&lt;/a&gt;
			- 0 replies
		&lt;/div&gt;</summary>
    <dc:creator>randymorin</dc:creator>
    <dc:date>2004-08-28T02:54:15Z</dc:date>
  </entry>
  <entry>
    <title>HowTo Download in C#</title>
    <link rel="alternate" href="http://csharp.tribe.net/thread/975ee1f0-af53-49a5-a741-61dedf949739" />
    <author>
      <name>randymorin</name>
    </author>
    <id>http://csharp.tribe.net/thread/975ee1f0-af53-49a5-a741-61dedf949739</id>
    <updated>2004-08-16T02:15:26Z</updated>
    <published>2004-08-16T02:15:26Z</published>
    <summary type="html">&lt;div&gt;Here's an article I wrote on downloading files using C#
&lt;br/&gt;
&lt;br/&gt;http://www.programmersheaven.com/2/Art_CSharp_5
&lt;br/&gt;
&lt;br/&gt;Hope you like it.&lt;/div&gt;
				&lt;div&gt;
			posted in
			&lt;a href="http://csharp.tribe.net"&gt;C#&lt;/a&gt;
			- 0 replies
		&lt;/div&gt;</summary>
    <dc:creator>randymorin</dc:creator>
    <dc:date>2004-08-16T02:15:26Z</dc:date>
  </entry>
  <entry>
    <title>New tribe: SharePoint</title>
    <link rel="alternate" href="http://csharp.tribe.net/thread/fdda62bb-e909-4ecf-bb71-b252d00f8187" />
    <author>
      <name>spam</name>
    </author>
    <id>http://csharp.tribe.net/thread/fdda62bb-e909-4ecf-bb71-b252d00f8187</id>
    <updated>2003-12-26T01:02:21Z</updated>
    <published>2003-12-26T01:02:21Z</published>
    <summary type="html">&lt;div&gt;I just created a new tribe to discuss Microsoft's SharePoint technology.  SharePoint is a website development framework that targets intranet-style websites.
&lt;br/&gt;
&lt;br/&gt;Check it out at http://sharepoint.tribe.net
&lt;br/&gt;&lt;/div&gt;
				&lt;div&gt;
			posted in
			&lt;a href="http://csharp.tribe.net"&gt;C#&lt;/a&gt;
			- 0 replies
		&lt;/div&gt;</summary>
    <dc:creator>spam</dc:creator>
    <dc:date>2003-12-26T01:02:21Z</dc:date>
  </entry>
</feed>



