Software Development Network Logo
  • Game Technologies
  • Visual Studio
  • VS Team System
  • Visual C#
  • Visual C++
  • Visual Basic
  • Windows Live
  • VS Express Editions
  • Windows Forms
  • Smart Device
  • Visual FoxPro
  • Architecture
  • Visual J#
  • Microsoft ISV
  • Windows Vista

Software Development Network >> tmichals's Q&A profile

tmichals

Member List

WillieD123
C#2.0
VarShant
Wimmo
Kev160967
Transco901
Clay Borkholm
Justin J Smith
CoolBhatt
keezy
Startatrix
hey answer plz i got a problem..
Diegota
Jan Heppen
RongPengCheng
firestorm79
Blastobi
DanielKQ
XtremeKP
BrenB
Only Title

tmichals's Q&A profile

  • Windows Forms removing inherited properties

    I have a control that inherits from control, so it has a dock property.  I want to remove this property or make it readonly so that it always docks to the top left of a form like a main menu.  I've played around with the controldesigner class and I've been able to remove the property from the designer view, but in code, I can&n ...Show All

  • SQL Server SQL Server 2005, SQL Server Mobile, SQL Server Management Studio. Unsupported HTTP Function Call

    Hi All, Iam using SQL Server Management Studio subscription wizzard to attempt to create a subscription from SQL Server Mobile to a publication on SQL Server 2005 CTP i got couple months ago. When i get to the end of the wizzard and press finish when it attempts to "Syncronizing Data" it then gives me a error as follows. "An incorrect or unsupported HTTP function call was made HRESULT 0x80004005 (28017)" Any help is appreciated. Thanks. Hi i wonder if anybody is still reading this.HELP PLEASEEE I have 2 problems, First whem I go to "view snapshot agent status" on my merge publication it shows the f ...Show All

  • SQL Server How to sort table in sql2000 with ipaddress(format x.x.x.x) as column with nvarchar datatype in ascending order

    How to sort table in sql2000 with ipaddress(format x.x.x.x) as column with nvarchar datatype in ascending order without using stored procedure Ex: Table: netComputers(3 rows) Column Name: ipAddress (string data type) ipAddress 0.0.18.1 0.1.1.2 0.0.0.1 Sql query : if I use the query Select ipAddress from netComputers order by cast( replace(ipaddress,'.','') as numeric(12)) asc Gives result as : ipAddress 0.0.0.1 0.1.1.2 0.0.18.1 Where as expected result should be: ipAddress 0.0.0.1 0.0.18.1 ...Show All

  • Visual Basic Making a web browser in VB 2005 or 6.0 Pro

    Hey can anyone tell me how to make an internet browser in VB (2005 or 6.0) completely from scratch As in NOT using the Web Browser Form that has everything pre-made. anyone know how im sure its possible It's possible. The best answer you're going to get is something like: 1 - start writing code 2 - fix bugs 3 - if it doesn't work yet, goto 1 It's just way too big a question for a forum. It's probably an appropriate question for someone to answer by writing a book. You need to connect, you need to parse HTML, you need to deal with plugins like Flash, etc. ...Show All

  • Windows Forms how to schedule a windows service ?

    Hi How can I programatically schedule a windows service to run automatically at a specified time  Any samples  Thanks Hi, You can use the Windows Task scheduler that comes with all the versions of windows to run your windows service. Go to Control Panel - Scheduled tasks to find out more. -Manish ...Show All

  • Visual Basic create storage

    How or what do I add so that my dll file can information for my program. I've tried many different things and can't get it to work. Does any one know how this is possible Thanks If you are just storing some configuration data I would go with xml. Anything more than that I would use a sql express or sql mobile database (soon to be renamed sql everywhere). ...Show All

  • Visual C# How to get total memory of computer

    How to get total memory of computer by using C#. Can you instruct me, thank you very much.   Reece Williams wrote: Is "Environment.WorkingSet" what you're looking for No, Environment.WorkingSet contains the number of bytes of meomory that are mapped to the process. You can use WMI, here is a working example and article. ...Show All

  • .NET Development Obtaining a list of classes in an assembly

    Is it possible to programmatically obtain a list of classes within an assembly I have an assembly with >10 classes which are all inherited from the same base class. I'd like to create a static method which, based on certain criteria, will return an instance of one. Is this possible Regards, Robert You can use reflection to do that. Assembly asm = Assembly.LoadFrom (@"path to the assembly"); Type[] types = asm.GetTypes(); You then have an array of Type objects. You can check what the base-class for each type is, etc... ...Show All

  • SQL Server Read/Write Performance

    Hello, We currently run sql 2005 server and also sql express in our dev environments. We use sql express as an offline store (smart client). We have a similar/exact schema on the sql 2005 server and also the express. We use the auto attach feature to connect to the express version of the database. Both the developer machines and the one that is running the sql 2005 server have exactly the same hardware configuration. The only difference may be that the server box is not running the VS.Net environment. The disk space etc is pretty much the same. Actually we run another database server(DB2) on the 2005 server machine. We have observed ...Show All

  • SQL Server Unable to modify or create new tables...

    Getting this message on my event log: .NET Runtime Optimization Service (clr_optimization_v2.0.50727_32) - Failed to compile: Microsoft.ReportingServices.QueryDesigners, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91 . Error code = 0x80070002 For some reasons the dll can't be compiled. Try to restart the Optimization service und see if that works. If this is a showstopper for you now, stop the optimization services, as things will also work then. But you should then keep track of the issue and see how this can be solved. The services is not a sql server generic rather than a .NE ...Show All

  • SQL Server Dataset Question

    I have a dataset which is calling a stored proc in my SSRS 2005 report. The stored proc just returns one value which is the result of a SUM in my stored proc's sql query. When I reference that field from my dataset, SSRS puts SUM() around the fieldname. This is causing an issue because I have a complicated expression in my table footer and need to just reference that field by it's name without SUM. Why is it putting SUM around my one field If I take out the SUM around that field, SSRS can't recognize it as a valid dataset field anymore I'm not quite sure I understand why you are putting Datasource as the field in parenthesis unl ...Show All

  • Visual Studio 2008 (Pre-release) BitmapImage.StreamSource best practice?

    I want to do this: using (Stream imageStream = webClient.OpenRead(url)) { BitmapImage bitmapImage = new BitmapImage(); bitmapImage.BeginInit(); bitmapImage.StreamSource = imageStream; bitmapImage.EndInit(); this.image.Source = bitmapImage; } but it throws an exception because the image hasn't finished downloading when the stream is closed. So instead I find myself doing this: Stream imageStream = webClient.OpenRead(url); BitmapImage bitmapImage = new BitmapImage(); bitmapImage.DownloadCompleted += delegate { bitmapImage.StreamSource.Close(); }; bitmapImage.BeginInit(); bitmapImage.StreamSource = imageStrea ...Show All

  • Visual C# Size of an extra reference to an object.

    Hello, I was wondering. If I am using Win XP 32bit, and Visual studio 2005 how much extra memory does a refernce to an object take I.e: MyClass object1 = new MyClass(); MyClass object2 = object1;   How much extra space does object2 take here Is it just 32 bit Or does it hold a lot of extra infor like reference type and so on too. I need to know this 100% sure. Thanks in advance. - OO - Thanks for the info. Since this is just for a 3D demo for GDI+ I think I will try and hope that it is 4bytes all the time. If this was an app I made for someone else or to sell, then I wouldn't have trusted it lik ...Show All

  • Windows Forms ClickOnce file extension registration

    In the ClickOnce FAQ at http://www.windowsforms.net/FAQs/default.aspx PageID=2&ItemID=17&CategoryID=24&tabindex=2 it says: "Some low impact tasks such as file type registration can be achieved with first time app-startup logic in your application" How can I register a file name extension which will invoke my ClickOnce deployed application If one can find the .exe on disk and register this one then ApplicationDeployment.IsNetworkDeployed is false. So this seems like a dead end. Any help would be appreciated.   /Lars The ClickOnce Runtime is not capable of creating File Type Association ...Show All

  • Visual Studio Acces rights in VSS

    I am presently working as Administrator and so my role requires adding new users and giving them rights. There is one scenario where I want to give a user permission to add file in a particular folder X, but I do NOT want to give him the right to create folder under this folder X. How can implement this access right Regards, razbir Hello, "Add" is a generic project right on SourceSafe, and unfortunately it doesn't distinguish between files and folders. This article explains the access rights in SourceSafe: http://msdn2.microsoft.com/library/ms181065(en-us,vs.80).aspx Regards, ...Show All

©2008 Software Development Network