|
ms
newsgroups
|
||||||||||||||||||||
|
||||||||||||||||||||
Garbage Collector Reference Counting
mdoxdo@gmail.com -
29 Nov 2007 9:59 PM - 5 messages
Hi all, I was wondering if there is a way to get the number of references an objects have (ie, other objects reference that object)? I know that .Net GC uses a different mechanism than the RefCount in C++ since .Net uses managed objects. I just need to know if there is any ...
DataTableCollection object question
rodchar -
29 Nov 2007 9:40 PM - 3 messages
hey all, this is what i thought would make sense to me but got the infamous "Object not instantiated" error: DataTable dt; dt = mySprocDt; DataTableCollection dtColl = null; dtColl.Add(dt); instead i had to do this to make it work: ...
events (forms)
csharpula csharp -
29 Nov 2007 9:54 AM - 11 messages
Hello, I want to invoke event in one form which will be sent to other form (both forms has nothing in common) . Could someone plz refer me to good example for doing it? Thank you! *** Sent via Developersdex [link] *** ...
List of common exceptions?
Smokey Grindel -
29 Nov 2007 6:54 PM - 6 messages
Is there a list of commonly used exception types out there and what they are intended to be used for? Thanks! ...
Label Expand Left
randy1200 -
29 Nov 2007 7:37 PM - 4 messages
I have two labels on a form. The text for these two labels is assigned at runtime. lblLeft lblRight If the text for lblLeft is wider than the default, the text runs into ...
Rijndael in ASP.NET and Delphi
Iwan Budihalim -
29 Nov 2007 6:57 AM - 8 messages
Who can help? I'm trying to implement an encrypted (plain text) communication between a Delphi application and an ASP.NET. My choice is AES/rijndael-128. For both sides, i use standard modules: Delphi: TDCP_rijndael Component (DCPcrypt Cryptographic Component ...
Adding TableRows
Kevin Blount -
26 Nov 2007 6:58 PM - 3 messages
I'd like to create a script that adds rows to an existing table, which has a header and footer row. The new row should be added as the last row BEFORE the footer. Here's what I have, though it doesn't work as I require.. ...
Full Screen Application
Kevin -
29 Nov 2007 5:41 PM - 5 messages
Hi! How can I make that my application run in full screen mode? Thanks ...
Needing info on passing data between applications. Win[C#]
MikeY -
29 Nov 2007 3:27 AM - 17 messages
Perhaps someone can point me in the right direction in finding code, or finding reading information on how to pass information (ie. ArrayList, string, etc) between two running window applications, that won't neccessarily be on the same machine. This will be my first attempt at this, and I'm not sure if this falls under ...
Math functions in VB (or even a dll somewhere) Options
Nondisclosure007 -
29 Nov 2007 7:47 PM - 4 messages
Hello. If this is the wrong group for this, please let me know. I'll post it somewhere else. I've been doing data imports into MS Excel (ver 2007) and using the CORREL function. What I was wondering was is there anything like ...
Toolstrip Exception - bad .NET?
Mike -
9 Oct 2007 12:05 PM - 5 messages
I have a program that is crashing on some machines (at a client of ours). I have determined that it goes down on this line of code: ToolStrip x = new ToolStrip(); I created a simple test app that only performs this one line of code. ...
Does C# have a built-in way to format numbers like this?
kirk -
28 Nov 2007 8:19 AM - 6 messages
I guess the easiest way to describe what I need for output is to give some examples. The biggest rule is the number cannot be larger than 3 digits after the formatting. --examples-- before: 30, after: 30 before: 300, after: 300 ...
Why this code does not cause error in .NET 2 & 3.5 (bug?)
Andrus -
29 Nov 2007 5:45 PM - 5 messages
While iterating a collection it is not allowed to remove its element. However code below runs *without* (!) error in .NET 2.0 and 3.5 There could be some buggy IEnumerable implementation that fails to report errorneous removal of collection content ...
Assigning a reference to a variable
Jon -
26 Nov 2007 4:44 PM - 18 messages
If I have a structure, for example: struct Settings{ public string str; public double doub1, doub2; public int i1; } How do I assign the reference of i1 to a variable? I can easily do this by passing it as a ref int ...
Read Stream Until Bytes Hit?
coconet -
29 Nov 2007 5:42 PM - 9 messages
I am trying to use a StreamReader to read consecutive bytes into a byte array until a ";" is hit, then store everything read up until that point into a new byte array. I have a semicolon-delimited file that I am trying to read and parse ...
Advantages of going with LINQ
Ronald S. Cook -
29 Nov 2007 6:30 PM - 3 messages
We're currently architecting an enterprise Windows app using WCF. However, now with LINQ, we're planning to re-architect that way instead. I've prepared the below in an attempt to explain/sell the new approach to our team. ...
My own version of replace
implement -
29 Nov 2007 5:08 PM - 9 messages
Hi all! I try to code my own version of replace but it doesn't work. I hope somebody can help me out. It only replaces the first char!. Why I don't use the public string.replace function? Well I love ...
Using "fscan" Equivalent in C#
marathoner -
26 Nov 2007 11:27 PM - 13 messages
I would like to read the following entries of mixed data types from a ascii text file using C#. This can be easily performed in C using fscanf. Is there an equivalent function in C#? 1 2 1201 1 -0.417597000000000D+06 0.129600000000000D+06 ...
The right way from VS2005 to VS2008?
Rainer Queck -
29 Nov 2007 11:48 AM - 8 messages
Hello NG, I now have the ISO image of VS2008 on my (external drive) :-) Now I am thinking of the right way to go from VS2005 to VS2008. Currently I have VS2005 prof german installed. For a parallel installation I don't have enough room on my system. ...
Draw ellipse with specify x,y,width, height
Slickuser -
29 Nov 2007 4:52 AM - 5 messages
I am trying to draw an ellipse with specify x,y,width, and height for input argument in C# .net (Visual Studio 2005). It seem it will not draw for me. What am I missing? See the code below, thanks. ...
stored Procs or dataSet queries?
Andy B -
29 Nov 2007 3:20 PM - 5 messages
Where would probably be the best place for queries to the database? in the db as stroed procs or in the dataSet. ...
The remote server returned an error: (407) Proxy Authentication Re
Richard@nospam.nospam -
28 Nov 2007 5:24 PM - 3 messages
My webcam app runs OK on XP but not on Vista. Here's my code snippet that has been working up until now: System.Net.WebRequest request; System.Net.WebResponse response; request = System.Net.FileWebRequest.Create( ...
Is the .NET 3.5 SDK available yet?
Anders Borum -
29 Nov 2007 2:34 PM - 6 messages
Hi! I am looking for the .NET 3.5 SDK Documentation (the most current version I can find online is for .NET 2.0). If you could provide a link or information as to when it'll be released, I'd be very happy. The .NET 2.0 SDK ...
asp.net Session vs Database Queries
DNB -
28 Nov 2007 10:08 PM - 7 messages
I would like to know what you guys think is the best way to access data: Asp.Net session vs. Database Queries. In our application we are using asp.net tree view to display hierarchical data and when user clicks on particular node it brings up totally different ...
Error while trying to run project [.Net 1.1]
Navaneet -
28 Nov 2007 7:42 AM - 5 messages
Hi, I added identity impersonate ="true" in web.config file, It causes error. Following is the error- "Error while trying to run project: Unable to start debugging on the web server. Server side-error on sending debug HTTP request. Make sure the server is opening correctly. Verify the syntax error in ...
Binding problem
csharpula csharp -
29 Nov 2007 9:11 AM - 3 messages
Hello,I use the following data binding: controlA.DataSource = someList;. The someList content changes due to some other form object behaivior and controlA still presents not updated data.Why? Isn't DataSource provides binding that holding a reference to the binded list? How can I solve ...
keybd_event wont fire KeyDown event for VK_Return keycode on textbox?
ink -
29 Nov 2007 12:54 PM - 3 messages
Hi all, I am working with C# CF2 on windows mobile 5 phone edition on a Symbol MC70 device. For some reason the KeyDown Event doesn't fire when you use the keybd_event to send the VK_Return= 0x0D. If I use the hard keyboard Return I get. ...
Sorrow - Can't use semaphore with Webclient
jehugaleahsa@gmail.com -
29 Nov 2007 3:19 AM - 4 messages
The title says it all. :-( ~Travis ...
foreach, IEnumerable and modifying contents
jehugaleahsa@gmail.com -
28 Nov 2007 4:24 AM - 12 messages
I have a rather complex need. I have a class that parses web pages and extracts all relevant file addresses. It allows me to download every pdf on a web page, for instance. I would like to incorporate threads so that I can download N ...
RichTextBox EM_GETCHARFORMAT
Mark Collard -
28 Nov 2007 9:19 AM - 3 messages
I'm currently writing an application that has a RichTextBox and a toolbar which includes the following toolbar buttons: - Font - Font Size - Bold - Italic - Underline I want the toolbox buttons to act the same as the ones in Word. i.e. When ...
XNA game window as a form control ?
colin -
26 Nov 2007 6:30 PM - 6 messages
Hi, Ive got a 3d model editor wich im developing with XNA c# development environment, using the game window to display the wireframe mesh in 3d. however I need to use some other windows too, such as a Form type window wich displays lists of numerical details ...
class question
Gunawan -
27 Nov 2007 10:00 AM - 5 messages
hi all, I have an issue. It's rather hard to explain. I hope you all could understand. I would like to create a class let's say myclass. in myclass I have some static void function myclass.function1() myclass.function2() and so on. ...
C#, docx
lsg -
28 Nov 2007 7:15 PM - 6 messages
Hi, Anybody know how to open docx (MS Word) file, retrive all formfields, insert text and print in c# ? Best Regards Leszek ...
How do you make a variable persist in memory?
pinkfloydfan -
26 Nov 2007 1:21 PM - 14 messages
Hi there I understand that in order to store data globally you need to use a public static variable. What I want to know is this: How do I make the contents of that variable persist in memory after ...
How to raise async events
nadeem_far -
28 Nov 2007 11:45 AM - 8 messages
Hello, I am working on a c# project using framework 1.1. Since its a console application,no windows forms are being used. I am trying to implement event driven classes that just want to raise the event and continue working( like fire and forget - do not wait for ...
Adding text to a richtext box and keeping vertical scroll bar at the bottom
Jon -
20 Nov 2007 2:28 PM - 5 messages
If I add text to a rich text box, when there's too much to display, the vertical scroll bar stays at the top. I'd like it to be at the bottom, so I can see the last item of text added. How do I do ...
Configure Presentation Power schemes settings via WMi/API
rflazaro -
28 Nov 2007 4:12 AM - 6 messages
Hi All, We are trying to build an automation utility to configure OS. I found a way to automate the processes below via registry: Control Panel -> Power Options -> Power Schemes Tab: -> Power schemes -> Presentation Turn off monitor Never ...
Design (gui)
csharpula csharp -
27 Nov 2007 9:10 AM - 8 messages
Hello, I have few 2 forms which share common methods and update of one member of form 1 - affect member in form 2 . I thought about placing this mutual functionality in one class and the question is how they will use ...
set IDE file as ReadOnly
lausivcid -
27 Nov 2007 9:47 PM - 3 messages
Hi, My project include reading XML files, I would like to set ReadOnly via a Keyboard Hot Key combination on the test XML files when I open them in the IDE. Is there an IDE Command I can setup with a Hot ...
Connection timeout when using SQL Server User Instance
Axh -
26 Nov 2007 5:51 PM - 3 messages
Is there a limitation on the number of (sequential) opened connection for SQL Server User Instances? The following method will run to about the 240th iteration then will receive a timeout exception (SqlException. "Timeout expired. The timeout period elapsed prior to completion of the operation or ...
LINQ Question (Contains)
BeSharp -
25 Nov 2007 12:28 PM - 5 messages
I recently stumbled across a pretty interesting LINQ to SQL question and wonder, whether anybody might have an answer. (I'm doing quite some increasing LINQ evangelism down here in Germany.). Assume I want to select rows from a database and check whether a specific ...
Exception handling
Allie -
28 Nov 2007 9:50 PM - 4 messages
Hi, all. I've never been any good at handling exceptions... So I need your help. Within a try{ } block, I have to call a function that has to throw its own exception. How should I go about doing this? ...
Display XML
James Lennon -
28 Nov 2007 6:18 PM - 5 messages
Is there are windows form that can be bound to an XML document to display XML in a user friendly manner. ...
Exception in thread
PGP -
27 Nov 2007 4:26 PM - 3 messages
Hello, I have a library which does some database operations. There are threads in the library which are transparent to the user. Database operations are done in threads as they could be lengthy. When an exception occurs in a library ...
about delegate
Tony Johansson -
28 Nov 2007 6:37 PM - 5 messages
Hello! When I define a class the default access modifier is internal. So if I just write class MyTest { . . . } this definition has internal as access modifier but if I define a delegate as delegete returnType SomeName (someArgumentList); Is it the same here that internal is the default access modifier if none is ...
modifying a string array via MFC COM Interop
Arnshea -
28 Nov 2007 5:46 PM - 7 messages
(apologies for the crosspost) I'm working with an MFC based COM object. From C# I'd like to be able to call a method on the COM object that takes a string array and modifies the contents. Is there any way to do this with a variable length array? ...
user creation and adding user to a group using WMI
johnpremi -
28 Nov 2007 7:17 PM - 3 messages
Hi there, I have a web app that adds user into w2k3 server and adds it to the administrator group. The code snippet is something like this: try { ...
Converting VMS C to Windows C++ or C#
fdmaxey -
14 Nov 2007 3:59 PM - 3 messages
I have been given a project originally written in VMS C. It is extensive code, with a number of complex algorithms. It also accesses an Oracle database via Embedded SQL. The code is to be ported to a Windows Server 2003 environment. The ...
Leaky Sessions?!!!
Anil Gupte -
28 Nov 2007 5:49 PM - 5 messages
I have some very strange behavior in a web app that we created. Lets say Person A is logged in and then Person B logs in from a different computer in different locations (they could even be different countries!) and Person A ...
CD Track to WAV
cfps.Christian -
28 Nov 2007 2:18 PM - 13 messages
I'm not really sure where to begin on this one but I was looking for tips on how I can have a user insert a music CD and rip the music from the CD to WAV format. Has anyone seen code for this online or can ...
Ignored advice, am now in serious poo on graphics
Peter Webb -
28 Nov 2007 12:47 PM - 4 messages
When I started my current extremely graphics intensive project, I ignored advice in this ng to use the Paint method, and used the alternate CreateGraphics approach. I thought there were some good reasons for that, which I won't go into. ...
Passing enumerator as generic type
Jon Slaughter -
28 Nov 2007 1:58 AM - 3 messages
I created a generic class and I want to pass it a enum, class GObject<SomeType> { ... public SomeType q = SomeType.Default; ... } enum MyEnum { .... Default = x; } Then later, GObject<MyEnum> T; The type passed to GObject should always contain a default value and I need ...
Dispose(bool), Idisposable, form closing etc.
rbrowning1958 -
19 Nov 2007 8:14 PM - 25 messages
Hello, I am confused by dispose etc. and hope someone can set me right. 1. The Dispose(Bool) the IDE generates for a form has nothing to do with IDisposable, right? 2. So when is this called? When a form is closed? If this is caused ...
How about this syntactic candy?
Hilton -
25 Nov 2007 12:22 AM - 44 messages
Hi, for (int i = 0; i < list.Count; i++) has a hidden performance hit; i.e. list.Count gets evaluated each time, so we write something like: int listCount = list.Count; for (int i = 0; i < listCount; i++) ...
C# teasers
Ludwig -
27 Nov 2007 1:14 PM - 17 messages
Hi, I'm looking for C# brain teasers (or VB.NET): a little piece of code that does something special, or where a little error is. Does anyone has some of these, or links to sites? Thanks! ...
How to include an executable in the c# console project
Mo -
28 Nov 2007 5:19 PM - 4 messages
Hi, Is there a way to include an executable (xxx.exe) file inside a c# console project so that the resulting project binary have only one final executable file? My c# console application is calling another Executable (exe) which I am trying to include in my project so I can ...
C# to the fullest: readable code
Jeroen -
28 Nov 2007 12:32 PM - 6 messages
Hi, I've found that C# 2 has several non-basic-programming-features turn out to be a great help in making code readable and typesafe, most notable the Generics stuff. Consequently, when I was creating the code below, I figured there must be an easier and above all more readable ...
Get a list of available stored procedures
roundcrisis -
28 Nov 2007 1:11 PM - 5 messages
Hi there: I would like to retrive a collection with the avvaialbe stored procedures, if there are any, I m using an ODBC connection, How can this be achieved? I know u can do a select of one of the system tables with a sql ...
How to auto scroll a datagrid?
Soulless -
26 Nov 2007 2:37 PM - 4 messages
Hi, I have a datagrid (rather a dataset I guess) that I update with addStatusRow ( ... ). It basically is a Status that adds lines as something occurs in my thread. As lines are entered, when it gets to ...
creating and using strongly named assembly
Mike P -
27 Nov 2007 3:33 PM - 5 messages
I have a class library that I want to make into a strongly named assembly. I have used the command line to create the key and added the .snk file to my class library, and have now tried to add the following ...
Representing Null with a DateTimePicker
jehugaleahsa@gmail.com -
27 Nov 2007 3:10 PM - 5 messages
Hello: We were hoping to allow users to have DateTimePicker value null so that a unused date is stored on a Database. Does the control support this? I am pretty sure it doesn't. How would you go about representing this to a user so they are not ...
problems using the tablelayoutpanel in VS2005
lars.mollerup -
22 Nov 2007 2:21 PM - 7 messages
Sorry if I am posting in wrong group... I am having a problem adding controls dynamically to this control ( using tablelayoutpanel.add(col,row)). I am doing this to a cell where there is an existing control. I thought this would just move the existing control to the next ...
Hosting EXE Application in a Winform?
Kevin -
27 Nov 2007 3:37 PM - 4 messages
Hi! It's possible to Host a exe application in a winform? Thanks ...
How to extract email address from the letter in Outlook Express?
Alexander Vasilevsky -
27 Nov 2007 1:43 PM - 5 messages
How to extract email address from the letter in Outlook Express? [link] - Audio tools for C# and VB.Net developers ...
Checking that an event has handlers added to it - using Reflection
jehugaleahsa@gmail.com -
27 Nov 2007 5:07 PM - 9 messages
Hello: I am creating a simple class library for simplifying reflection. I am creating an EventWrapper class that allows programmers to treat it like an event (minus the operator overloading). I am concerned with how to check that handlers have been added to the ...
Specifying the parent when adding treeview nodes?
SQACSharp -
27 Nov 2007 9:30 PM - 8 messages
I'm using the EnumChildWindows API with an EnumChildWndProc callback to populate the treeview. The output will be something similar to spy+ + How can I specify the parent when adding a new node ?? When adding a new node is there any way to get an handle or something ...
invoke in events
Ole -
26 Nov 2007 2:35 PM - 5 messages
Hi, I have an instance of a class in which a thread is running. When a special condition in that instance is met it raises an event to my main class (UI), but I can't directly interact with the user interface controls in my ...
Array.Sort( comports )
Ole -
26 Nov 2007 9:13 AM - 6 messages
Hi, I'm looking for an easy way to sort the string array returned by "SerialPort.GetPortNames()" so that the names are in the correct numeric order instead of alphabetic order: COM1 COM2 COM10 Instead of: COM1 COM11 COM2 That is wahat is returned by the Array.Sort method. ...
Play media files
Kevin -
28 Nov 2007 2:26 AM - 6 messages
Hi! What is the best way to reproduce media files (mp3, wav, wma, wmv, etc)? Thanks =) ...
Time formatting is strange
christery -
25 Nov 2007 7:17 PM - 8 messages
Anyone got a clue to why ther is a T between date and time in the "formatted for sorting" or whatewer they call it, and a Z at the end after seconds- got it fixed for my cobol programmer by formatting it ...
Simple question Related to Generic
DNB -
27 Nov 2007 10:24 PM - 2 messages
I am using generic in the following example. But I can figure out how to remove an item in the collection?? Thanks DNB ------------------------------------------------------------------------------------------------ using System.Collections.Generic; using System.Text; protected void Page_Load(object sender, EventArgs e) { //Generic List Creation ...
c# 2008 install feedback takes too much CPU load
gs -
27 Nov 2007 5:11 PM - 10 messages
the feedback for the install of c#2008 places 97 to 99% cpu load for way too long on athlon x64 3800+ PC. 3/4 an hour later its only about 80% complete, continuing with 98% CPU load! Next time installing visual studio /dot product I will likely make sure no ...
Parsing double precision numbers
marathoner -
27 Nov 2007 5:34 PM - 5 messages
After reading the string representation of a double precision number, -0.417597000000000D+06, from a text file, I am unable to convert it to a double precision number. Here is the code I am using: string[] result = block.Split(charSeparators, ...
Compare datetime value from datetimepicker with value within db
Mike -
27 Nov 2007 3:46 PM - 6 messages
Hi, I use MS SQL Express and VS 2005 c#, win application. I would like to select value rom DateTimePicker and list all values for selected date within GridView. I have method as follows: public DataTable GetOffersForDate_A(DateTime OfferDate) ...
Using CSharpCodeProvider to create MANY assemblies
Bilz -
26 Nov 2007 6:44 PM - 8 messages
I am planning to use the CSharpCodeProvider to generate some compiled functions in my app. In my current implementation, All of these functions are generated in one swipe... thus they all invoke the compiler once, and create only one DLL. My new requirement tells me that I need to be more ...
Binding Manually for Sanity's sake - How to do it intelligently
jehugaleahsa@gmail.com -
26 Nov 2007 7:44 PM - 6 messages
Hello: We are working on a large number of forms. The original approach was to use the built-in data designer, type-specific DataTables and form binding. However, we are running into various issues due to the complexity of our forms. For instance, how do you bind to a check box ...
ArrayList or List<>
csharpula csharp -
26 Nov 2007 12:56 PM - 3 messages
Hello, I would like to know what is better for data binding and serialization purposes ArrayList or List<> ? Thank you! *** Sent via Developersdex [link] *** ...
XPath Syntax
Looch -
27 Nov 2007 3:22 PM - 9 messages
Can anyone tell me what's wrong with the syntax of the XPath query in the SelectSingleNode parameter? I keep getting an "Object reference not set to an instance of an object" error. I've tried none, one and two forward slashes in front ...
Data Binding
csharpula csharp -
26 Nov 2007 5:44 PM - 4 messages
Hello, I am trying to do data binding with c# Binding - trying to bind list<object> to a list view. Is there any code example for doing that? Thank you! *** Sent via Developersdex [link] *** ...
Unit testing event handlers
David Veeneman -
27 Nov 2007 3:11 PM - 6 messages
This post is for the benefit of the Google spider and needs no response. How do you unit test an event handler with NUnit? An event handler is not a test method, and Asserts in test class event handlers will not be tested. ...
Are Linq-SQL methods commutative
Andrus -
25 Nov 2007 1:16 PM - 17 messages
Are Linq-SQL methods commutative ? Should the following queries return same or different results ? var query = query.Skip(n).Take(m); var query = query.Take(m).Skip(n); Andrus. ...
About Factory Method and Abstract Factory (design pattern)
Duy Lam -
26 Nov 2007 5:18 PM - 3 messages
Hi everyone, Sorry, I don't know what group to post this problem, I think may be this group is suitable. I'm styduing DAO (Data Access Object) pattern in this link [link] ...
Bind Property of Child-Objecty to DataGridView
Pieter -
16 Nov 2007 9:17 AM - 4 messages
Hi, I want to bind a proeprty of a child object to a DataGridView, but it doesn't work. For instance: Imagen that I have an object Company, and this object company has a child object Address. Address has a property Street. ...
recording from WindowsMediaPlayer
Rinaldo -
26 Nov 2007 11:05 PM - 4 messages
Can you record from WindowsMediaPlayer anyway? Yes! how? Rinaldo ...
VS 2008 compilation/running over a network
Carlos Andrés Guaneme Lugo -
26 Nov 2007 8:24 PM - 3 messages
Hello everyone! We're trying to compile/run an application in Visual Studio 2008 for Windows Vista Business. The code of the application is located in a network drive and we're getting the following error: Failed to queue test run 'user@machine 2007-11-26 11:56:57': Test Run ...
[general] multiple databases in a heterogeneous application
Wiktor Zychla [C# MVP] -
27 Nov 2007 12:13 PM - 3 messages
Sorry for posting here but I belive that this group is read by a lot of people who could share their experience. I am facing the issue of large system built possibly in different technologies and using several databases. I am to develop the architecture ...
ClickOnce deployment
Smokey Grindel -
27 Nov 2007 4:01 AM - 3 messages
Anyone know how you can initially deploy a clickonce application to say 100 workstations with out each of them having to go to the web site to get the applicaiton? What we do now is we deploy our application and updates via group policy in ...
First Day in the Month
eps -
27 Nov 2007 9:56 AM - 5 messages
Hi there, The following code gets the first day in the current month, I don't understand how it works though, could someone try to explain it to me ?. DateTime FirstDayInMonth = DateTime.Now.Subtract(TimeSpan.FromDays(Month.Day - 1)); Any help appreciated. ...
How to, not display the tab in a TabControl
roundcrisis -
26 Nov 2007 3:19 PM - 8 messages
Well basically i need to have a tab control but not show the actual tabs how to? there doesnt seem to be any property to do this either in teh tab control nor in each tab Cheers ...
divide image region
Ruby Nadler -
26 Nov 2007 9:20 AM - 4 messages
Hi EveryOne, Does some one knows a way or tool that knows how to divide image into regions with c# so if the image is like a table style i will now the positions of the columns? i can read the pixlels colors but it will be very slow. ...
Developed using NextGeneration, the .NET Code Generator Try AdSense Reporter, the charting tool for AdSense publishers |
||||||||||||||||||||