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

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

Gretzky99

Member List

glasssd
Daniel McGloin
Pringy
JSerge
Friction
BrianD65
proggerFX
acangialosi
Tod1d
Prism
Logicboy
tgorrie
Jure Turk
jkv10
Fremen
JKay
TheShadow
Justin Is Learning
jdang
bibifokk
Only Title

Gretzky99's Q&A profile

  • Windows Forms New Article on Optimizing Localization

    A new article has been posted by Brian Pepin, one of the designer devs on the Windows Forms team.  It walks through the code used in the localizaiton process and has a sample that will significantly reduce the size and load time of your localized Forms. Check it out at: <a href="http://windowsforms.net/articles/localizationfilter.aspx">http://windowsforms.net/articles/localization ...Show All

  • Visual Studio Tools for Office Start Access DB Macro from VB.NET

    Hi, I am having a problem executing an access DB macro from VB.NET. Any help would be welcome. Thanks Mike Your best bet would be to post this question in the Access.Macros newsgroup. Here is the link: http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.access.macros&lang=en&cr=US Thanks! Mike Hernandez Community Program Manager VSTO Team ...Show All

  • Windows Forms Word 2003

    ok, i'm sure i'm in the wrong place, but i don't know where to go.  i have a word clipart question.  hopefully some kind soul can help me anyway. i'm trying to insert clipart in a microsoft word 2003 document, but almost all the thumbnails are unviewable.  they're that little colored circle, and they all say "dglxasset...".  when i  ...Show All

  • Architecture the best design for human resources managment project

    Hello, i have this human resources project i have to do... the company has 4000 - 5000 employees.. the problem is i really do not know where to start.. and the best way to design it... i am totally confused.. should i use WS, or Remoting,, the project is internal, the DB will be hosted in a server within the same building the the clients will be using LAN to connect to the server, i guess remoting is great in this scenario although i have never done remoting before... but the problem here is i will have to access the BL from the web for some inquiries... so the remoting is not great :(.. thats why i am confused.. now my question is. ...Show All

  • Visual Studio 2008 (Pre-release) Back to the 2-tier?

    It seems to me that Dlinq with this nice new feature of Entity = Class is good for a Client/Server scenario only. How would it worlk in a SOA at all I admit this code looks very efficient, but only in a C/S scenario. How would delayed execution work if you're not in C/S scenario, but need to call a webservice for retrieving your data, and also a webservice for updating your data ...Show All

  • SQL Server IN Parameter

    Hi, I'm trying to do this in a stored procedure: select * from planning where userid in (71,97) I want to make the userid's dynamic. I've tried this: DECLARE @userid varchar(40) set @userid = '71,97' select * from planning where userid in (@userid) But then I get the message: Syntax error converting the varchar value '71,97' to a column of data type int. How can I do this Thanks Well, you should read http://www.sommarskog.se/arrays-in-sql.html ...Show All

  • Visual Studio Express Editions Newbie: Using Opengl

    i've been programming with Opengl in other enviroments like Dev C++ and other and recently i've been trying to migrate to Visual C++ (i'm using Visual C++ 2005 exprees edition). - already downloaded the SDK - already have the Win32app template My questions are: -how do i LINK the libraries needed  (i was used to simply write somewhere what library you want to link, but in vc++ i cant find where and the msdn help is ..... bad) - what should i know before using Vc++ 2005 (Diferences between Vc++ and the Open Source Alternatives, the basics, etc...) - Why it's so complicated to write a program (maybe it's part of Microsoft policy) Please ...Show All

  • Visual Studio VSS folders structure

    Hi, I have an existing solution (in VS2005) containing multiple projects. The solution resides in, let's say, c:\F1\F2\F3 folder. I'm trying to add the solution to VSS (from VS) and when I'm asked to choose a location I'm selecting specific folder in the VSS tree. Let's say I have the VSS structure like this: Root::Projects::P1, and I'm hitting P1 folder. I'm expecting that the solution file will be added under P1, and all other files/folders will be placed/created correspondingly, like this: Root::Projects::P1::MySolution.sln Root::Projects::P1::FolderA <- this folder exists in the solution and so on. What I have is a dif ...Show All

  • Software Development for Windows Vista RequestPersist does not exist in Beta2?

    This function does not exist in Workflow Beta2 Does it have a substitute Hi, Use TryUnload in place of RequestPersist. Thanks, Steve Danielson [Microsoft] This posting is provided "AS IS" with no warranties, and confers no rights. Use of included script samples are subject to the terms specified at http://www.microsoft.com/info/cpyright.htm ...Show All

  • Visual C# Exception calling MoveNext in MessageEnumerator on MSMQ queue

    We have a line of code that goes something like: while ( messageEnum . MoveNext ( TimeSpan . FromMinutes ( 5 )) | outstandingCount > 0 ) { ... } This works fine on machines with MSMQ installed locally that are part of a Domain (and the current user is logged in as a member of that domain) However when we have the software installed on a machine with an identical MSMQ setup but which is not a mamber of a domain but part of a workgroup and the user is logged in as a user (with administrator priveleges and full control permissons on the specific queue) on that machine we get the following exception An in ...Show All

  • Visual C++ chekbox

    how can i determinete when the check box in listview is checked or when the checkbox is get the focus and chenge on evey check in MFC There are events for all of these which you can catch and then run your own code. I believe WM_FOCUS is the event when a control gets the focus ( this is relying on old memories, don't quote me ), and I'm pretty sure there's a SetCheck method on the control you could call to check it when it gets the focus. ...Show All

  • .NET Development Unclosed Literal String

    I have an XML with an attribute called Text="Procedures & Practices"  in the XML, I replace the & with &amp; and send it to a web service.  On the web service side, when I attempt to load the xml, I get the following error: There is an unclosed literal string. line 2, position 762 Any ideas Either way this should not happen. The XML Serializer used to transmit web requests should properly encode whatever data you are trying to send.  Can you provide more details   The web method declaration, and the snippet of code you are using to call it and the parameter data so we can debug it. ...Show All

  • Visual Basic validating-event

    Hello,   Can somebody tell me if it’s possible to get the name of the control (not the container !) that causes validation during the validating-event of a control that I’m leaving.   Thanks,     About the name of the control, see in the good book: http://msdn.microsoft.com/vbrun/staythepath/additionalresources/IntroTo2005/default.aspx Free Book – Introducing Visual Basic 2005 for Developers In Chapter 1 – Framework Class Librasry - Namespaces The author says: Unless other information is provided for the compiler to resolve a class n ...Show All

  • Visual Studio Express Editions Fire event at predetermined time

    I need to make an application that performs a task at a given time each day, based on the system time.  For a simple example, lets say I want to delete all the files in a folder at 11:00 am everyday.  The program would obviously be running on a computer thats always on.  What is the best way to do this   Do I continuously compare the current time with the target time & when they're equal fire the event   This seems like a waste of cpu resources, but maybe thats the only way to do it.  Can somebody post some code to get me started on this   Thanks... Hi, Off the top o ...Show All

  • Visual C++ favor AMD64 intrinsic functions

    How do I tell my compiler/linker to use the __stosq intrinsic function 32-bit assembly intrinsic functions compile, but 64-bit ones do not. Also, the compiler /favor:AMD64 is considered to be an unknown option. Is there anything I can do to enable this compiler option Are programs that use 64-bit pointers limited by default to 2GBs of memory What will happen when I generate data beyond 2GBs but do not enable the linker /largeaddressaware option Thanks Willy for the clarification. I am trying to make sure I am doing the maximum to ensure 64-bit compliance and performance. Knowing how a few compiler options interact and/or ...Show All

©2008 Software Development Network