GIDForums  

Go Back   GIDForums > Computer Programming Forums
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Post New Thread
Threads in Forum : .NET Forum Forum Tools Search this Forum
  Rating Thread / Thread Starter Last Post Reverse Sort Order Replies Views
 
Sticky Thread Read This >>> Introduction to .NET
Thread Rating: 6 votes, 5.00 average. by LuciWiz
Introduction In my experience I found that people starting to learn a new programming language find it hard to accomplish this by reading “complicated and sophisticated” books written by the experts that developed or helped maintain the respective language. They find easier to...
30-Aug-2012 04:41
by preetisoft2 Go to last post
8 5,535
 
Thread Rating: 2 votes, 5.00 average. by admin
The GIDForums™ Team is proud to announce that GIDForums™ is now among one of the very first Webmaster / Programming forums to offer a custom-written Visual Basic Syntax Highlighter BBCode ( bb code) to it's valued members and readers. Please use the and tag pair to enclose any visual basic code...
01-Oct-2005 13:08
by admin Go to last post
0 5,668
 
by BobLewiston
Why use delegates? I understand HOW to use delegates, but in what situations would you actually use them? The examples I see in the literature are all in situations where the code could just be written without ever using them.
03-May-2013 01:23
by johnsmithh134 Go to last post
6 1,218
 
by Ann
Hi! I need to intercept GDI function to save painted screen to hard drive. I have tried Microsoft Detours. Everything is good, but I need 64-bit version (Detours Professional do support but it costs much). Is there any 64-bit alternatives to Detours Professional?
10-Apr-2013 05:44
by ArtMusic Go to last post
1 659
 
by googinup
void Main(String args) { int a,b; Console.WriteLine("**************************"); Console.WriteLine("**************************"); Console.WriteLine("MINI CALC"); Console.WriteLine("**************************"); Console.WriteLine("enter the values you want...
19-Sep-2012 09:45
by krishvandam Go to last post
1 619
 
by complete
In a silverlight app, I have a BitmapImage defined as System.Windows.Media.Imaging.BitmapImage and it as a method called "SetSource" where I can set the source like this: BitmapImage bitmap = new BitmapImage(); System.IO.Stream stream = _scene.GetStream(); if (stream == null) return;...
03-Aug-2012 09:38
by complete Go to last post
0 284
Question
by fararjeh
Hi All, I am using AForge library to capture live video stream from an IP camera. Initially, I tested my task in a simple C# application but I should convert my code into my existing MFC C++ application. I made some progress as the following: 1. I configured the project to become compatible with...
30-Jul-2012 10:21
by fararjeh Go to last post
1 370
 
Thread Rating: 3 votes, 5.00 average. by aie0
I need to put some xls files ( ~50kB) on aspx so that user could download through ssl. I used: Response.Clear(); Context.Response.ContentType = "application/vnd.ms-excel"; Response.WriteFile(path); // or Response.Clear();
06-Jul-2012 07:34
by Kacyndra Go to last post
4 4,877
 
by ahbi82
Currently i'm developing a websocket server for version 13 (RFC 6455) http://tools.ietf.org/html/rfc6455 However i face some issues about parsing the dataframe. If you see section 5.2 of the specs, the 2nd bytes denotes the MASK and Payload length, From the specs, it is stated at MASK must be set...
15-Jan-2012 20:41
by ahbi82 Go to last post
0 607
 
by complete
How do you set a default size of a control that you can resize? I have been looking at a code sample from Charles Petzold. It is from here: http://www.charlespetzold.com/blog/2009/05/Realizing-a-Fisheye-Effect-in-Silverlight.html it uses mouse over methods to increase the size of button...
06-Jan-2012 15:40
by complete Go to last post
0 286
 
by ahbi82
I have a stream of data read from a serial port. Example: $S,01,00FF,02,0003\r\n Generally, '$S' is has no significance. Following that is a "command" follow by a hex data value. The number of "command" and "data value" pair is unknown. It could be 2 or 5. The command spams from "00" to "16"...
04-Jan-2012 02:33
by ahbi82 Go to last post
0 258
 
by complete
Help me Convert this WPF to Silverlight I am interested in a Charles Petzold C# example that shows how to do a fisheye effect ( http://www.charlespetzold.com/blog/2009/05/Realizing-a-Fisheye-Effect-in-Silverlight.html ). The XAML code samples are in WPF but I want to try this in...
29-Dec-2011 18:01
by complete Go to last post
0 288
 
by clueless
Ok, I've been fighting this for days and so far haven't found very much helpful information on the web. Apparently this isn't a very popular thing to do since there isn't much out there. I'm hoping someone here can help me out. If it's relavent I'm using Visual Studio 2010 on a Windows 7...
10-Dec-2011 14:51
by clueless Go to last post
0 631
 
by ahbi82
I have created a class which acts like a server. And a GUI that displays status. How ever i face cross thread exceptions Code is written in C# // MyClass class MyClass { public delegate void UpdateHandler(Boolean status); public event UpdateHandler Update;
09-Nov-2011 21:02
by ahbi82 Go to last post
0 480
Question
by Twix
Hello all! I'm seeking to begin work on a relatively simple at first VB instant messanger. I only have experience in html and C++ maybe even a little php, I could use some help if anyone knows! If possible could you provide a little example for me to work off of? Regards, Joe
10-Oct-2011 06:44
by fakepoo Go to last post
3 531
 
by ahbi82
Hi i'm trying to create a C# webCLient application. I've read through http protocol and System.Net I have a question in mind. for example, my webClient logs in GIDForums I open a webClient with this base address. I created a httpWebRequest with POST Method. what other headers are required (are...
19-Sep-2011 21:53
by ahbi82 Go to last post
1 346
 
by complete
TextBlock wrapping of text in Silverlight XAML file. I have a wierd and annoying problem. I have a textblock that is inside a stackpanel that is Oriented horizontal. It would be nice if I could have the textblock appear in multiple lines nicely wrapped. How could I do that?
11-Sep-2011 22:48
by complete Go to last post
0 292
 
by complete
How do you make repeatable backgrounds for things in XAML? Back when I was working with HTML, I remember having bitmaps as backgrounds for either a page or for an area. Now I find I want this same sort of thing in my XAML page for Silverlight. How do I do that? How do I make it repeatable so...
07-Sep-2011 18:38
by TurboPT Go to last post
1 416
 
by sharanamma
Hi friends, I need to get instance variable value from non static method and which is used in the static method. Is it possible to access an instance variable via a static method in the same page? here is my code, public ClassName
15-Jul-2011 07:51
by fakepoo Go to last post
1 905
 
Thread Rating: 2 votes, 5.00 average. by sharanamma
Hello, I need to get page unique Id from "DateTime.Now.Ticks.ToString() " when i call page load and this value retun from App_code class when i call method using asp.net 3.5 C# Please help me for this, Thanking You guys.
11-Jul-2011 09:01
by fakepoo Go to last post
3 1,110
Exclamation
by DudmasterUltra
Hello, I'm a newbie. :banana: I need to do the reverse of this: Console::WritleLine In other words, I want to read a user input from the Command Line application. Thanks,
25-Apr-2011 18:42
by TurboPT Go to last post
1 408
 
by MwakaZ
Hello, Am writing a programme that is getting the contents of a text file one by one by use of a for loop. as can be seen below. for (int i = 0; i < FileName.Length; i++) { textline = textline + (Reading.Read() + " "; textBox1.Text...
11-Apr-2011 08:39
by MwakaZ Go to last post
2 430
Post New Thread

Recent GIDBlogGID Spam Detector 1.1.0 by gidnetwork

Display Options Moderators
Showing threads 1 to 20 of 298 Moderators : 1
Sorted By Sort Order
From The
LuciWiz  
Forum Tools Search this Forum
Search this Forum :

Advanced Search

New posts New posts More than 15 replies or 150 views Hot thread with new posts
No new posts No new posts More than 15 replies or 150 views Hot thread with no new posts
Closed Thread Thread is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Network Sites: GIDNetwork · GIDApp · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 05:02.


vBulletin, Copyright © 2000 - 2013, Jelsoft Enterprises Ltd.