Software Development Network Logo
  • SQL Server
  • Windows Forms
  • .NET Development
  • Smart Devicet
  • Audio and Video
  • Game Technologies
  • Windows Vista
  • VS Team System
  • SharePoint Products
  • IE Development
  • Visual FoxPro
  • Visual Studio
  • Visual Basic
  • Microsoft ISV
  • Visual C#

Software Development Network >> M.A.T's Q&A profile

M.A.T

Member List

LeonRadley
kinpin9
Bijal Modi
Klaus Prückl
martona
Akshay S Bhatnagar
CoyoteCoven
asalcedo
Esp_99
MarcForsyth
edwinzzz
roxtar
LamptonWorm
El Guapo
digdug
roadresident
Steve St.Jean
Martimus
ArchanaG
Mathava Gnanananthan
Only Title

M.A.T's Q&A profile

  • Visual J# J# and VWD Express

    Anybody here, Can create J# project over VWD express ...Show All

  • Visual C# CodeMethodReferenceExpression' has no field named 'BackgroundColor'

    Warning 2 The type 'System.CodeDom.CodeMethodReferenceExpression' has no field named 'BackgroundColor'. When I followed this warning (there are 11 others) I saw that it points to my Grid control. I swear it got Background Color. How can I get rid of it Is it a matter of some namespace that is missing Thanks. ...Show All

  • .NET Development 64 bit rookie question

    I am deciding on a development box right now. My chief aim is to be able to develop and debug with Visual Studio 2005 Team System on an x64 Xeon 5130 proc. Specifically, I am wanting to do testing with 12gb ram - having a set of very large in-memory collections utilizing almost all of the ram capacity. Through what I have read in various forums/blogs is that I can do this bec my cpu is X64, I just would like to hear from you guys as you have a lot more experience in this area and I don't. Here is a link to the processor info if that helps. I don't see any issues myself. http://www.intel.com/design/intarch/dualcorexeon/5100/index.htm The only thing I have read is that IA64 processors will not allow you to build and/or complile VS.N ...Show All

  • Visual Studio 2008 (Pre-release) Get window height, without the height of the activitybar.

    Is there any way to get the height of the visible area of a window If you just use this.Height you will get the visible height + the height of the bar at the top. You could just subtract ~25px but this height depends on what theme you use on windows so this is not a good option :/ You should always use ActualWidth/ActualHeight instead of Width/Height to determine the correct size after layout has been applied. ...Show All

  • Visual C++ hiding LNK warnings

    Basically, I want to get rid off all the LNK warning For ex, LNK4099, or LNK4204, or any other one. I am linking my debug lib with a third party release lib. That's why I am getting those. Is there some kind of "pragma" for the linking step to hide warnings There was the undocumented #pragma comment(linker, "/ignore:4099") but it does not work anymore on Visual Studio 7.1. I is annoying to look at hundreds of these warnings rolling down on my screen. Thank you. What about using additional link options ...Show All

  • Visual Studio Tools for Office Outlook PropertyPages - Where to store settings?

    I'm looking for some advice on how to store settings set by the user in an Outlook property page (ie an application property page). Should I use the registry, an xml file or some functionality already built in to Outlook Is there a technique that is recommended for VSTO solutions Thanks, Tad Maybe Sue Mosher already answered this for me in another post... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=599418&SiteID=1 ...Show All

  • SQL Server Disable triggers only for active sessions

    Hey, is it possible to disable all DML triggers for the current session only This is for manual data correction sessions where no trigger should be fired but all other user connection still should have active triggers. Cheers, I don't think you can do this without modifying your trigger. You can use SUSER_NAME() function inside your trigger and if it matches with the login user bypass the execution. to be specific. The first line of trigger code will be if SUSER_NAME() = 'Manuel' return ...Show All

  • Windows Forms toggling images in a toolStrip button

    I have noticed how the undo and redo buttons in most apps have an inactive state image (gray) and an active state image (usually blue). The images swap interactively as you reach the start or end of the current levels of undo. The next and back buttons on this browser are an example. I have looked for information on how to do this with a toolStrip button and have found only the reference to toggle buttons which concerns causing a single image to looked depressed until the control is clicked again. Can someone point me to information on how to associate 2 images to a toolStrip button so I can toggle them between 2 states of the button The following is my solution. I positioned the 2 buttons besid ...Show All

  • Internet Explorer Development Message asking if allow or block IE7 to use clipboard

    A message appears asking if I want to allow or block clipboard. How can this message be disabled and always allow use of clipboard Hi Deepak I have the same problem with my main site, I don't know what it cause it but here is a work around: Go to Tools : Internet Options : Security : Custom level : Scripting : Allow programmatic clipboard access from Prompt to Enable. Too bad it is not enable by default. Cheers, Alex ...Show All

  • Community Chat MS Access Developer Needed ASAP

    Hi all, I am a novice MS Access user and I created a simple database for a small business client. There are a few bugs that I need worked out ASAP. I am looking for someone who would be willing to take a look at the database and fix the bugs. I had someone helping me out but they were due to provide the fixed DB back in November 2006 and now I can't get in contact with them. I am desperate b/c I promised the client I would provide the DB to them in December. If anyone does some work on the side and is willing to help, I need you!! I am also looking to expand the functionality a bit but shouldn't be anything too fancy. Please contact me if you're interested. Thanks in Advance!!! "Desperate" AA807 Moving to the ...Show All

  • .NET Development Delegates/events short question

      Hey , I would like ask a few questions and I'd appreciate if  someone could clarify the issues for me. Firstly: what is the difference between a) this .Load += new System. EventHandler ( this .Form1_Load); and b) this .Load += this .Form1_Load both seem to work , is there an implicit cast to ( EventHandler ) in the b) case Secondly, how does the compiler treat function names like Form1_Load or any other In C++ they were seen function pointers, how does it work in C# Does the compiler understand function names as delegates The last thing is what does actually line a) do As far as I understand it, this line concatenates the invocation list of the "Load" event delegate with the invocation list ...Show All

  • SQL Server SELECT INSERT SQL

    Hello All, INSERT INTO [SPIResConv5].[dbo].[Batch] ([BATCH_NO], [OPENDT] ,[USERID] ,[MODULE] ,[USERBATCH] ,[RESORT_ID] ) Select [BATCH_NO], [OPENDT] = getdate(), 'Hwells' as [USER_ID], '1 CASH RECEIPT' as [MODULE], [USERBATCH], Resort_ID = Case Resort_ID when 2 then 'Ell' when 3 then 'CSI' when 12 then 'Ell2' when 13 then 'ATR' end from TransactionTempToTransaction where Resort_ID = 3 or Resort_ID = 2 or Resort_ID = 12 or Resort_ID = 13 needing help in modifing the statement above The first would be to grap from the batch table the last [BATCH_NO] and add one number to it-and insert --just that number –for all records imported to Batch Table. Example: last ...Show All

  • Visual Basic Form validation event not firing with validation property set to true VB2005

    i'm running VB2005, and have a form that I want to validate before closing.  I have the causesvalidation property set to true and two events handled.  (me.validating and me.vailated)  I just place a messagebox in both events that say "I was here validat(ed) or (ing)".  Neather messagebox post.  I have created a button that forces the validation (me.validate), still no events.   What am I missing  My controls validate with no problems but not the form. In the end I just want to make sure all the required data is entered before the user can move to a different form.   ty thats the way I ended up going but still would like to know why the event doesn't fire. I found other events ...Show All

  • .NET Development Asynchronous Sockets, BeginConnect

    I am trying to use the BeginConnect() method. Maybe I am not understanding it properly but I thought it would keep trying to connect to whatever host:port you asked it to until it connected (or times out maybe ). If this is the case then does anyone know how to change the timeout interval, or make it so it doesnt time out. I have an application that wants to keep polling a given host to see if its there, and if it is then connect to it. Is there a better way to do this if I am totally wrong on the BeginConnect stuff Any help would be greatly appreciated Thanks TcpClient client = new TcpClient(); public void TryConnect(IPAddress serverIP, serverPort) { this.client.BeginConnect(serverIP, serverPor ...Show All

  • Microsoft ISV Community Center Forums RunTime Error '13' Type Mismatch

    Hey, I have thsi code that I just cannot figure out. Anyone have any ideas why I'm getting a RunTime Error '13' Type Mismatch Here is the VB code: Dim CommunityMapTable() As Byte (Global Variable) Private Sub LoadCommunityCombobox() Dim I, J CmbCommunityDescription.Clear ReDim CommunityMapTable(CommunityLookupRec.CommunityCount) J = 0 I = 0 While I < Val(CommunityLookupRec.CommunityCount) If Trim(CommunityLookupRec.CommunityEntry(I).CommunityDesc) <> "" Then CmbCommunityDescription.AddItem Trim(CommunityLookupRec.CommunityEntry(I).CommunityDesc) CommunityMapTable(J) = CommunityLookupRec.CommunityEntry(I).Community J = J + 1 End If I = I + 1 Wend CmbCommunityDesc ...Show All

©2008 Software Development Network