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

Software Development Network >> Wes Clark's Q&A profile

Wes Clark

Member List

bighead
Suresh K
e.g.gru
Munjal Patel
Joel West
CDR-Maverick-TG
Ocrkass
gardener01
Cesar Augusto BR
Imtiyaz Thange
Firedancer
mikE____
DeanReedy
Aniekan Daniel Usen
Javier Canones
JayMo
StephenW
.Damage Inc.
askumar
Manglesh
Only Title

Wes Clark's Q&A profile

  • Visual Studio 2008 (Pre-release) Security seting problems on installing May CTP of LINQ

    Hello, I've try to install the May CTP of LINQ but here is the error I get: http://morpheus.developpez.com/temp/error.jpg Anyone knows why I get this error Thanks I also got an error installing the May CPT of LINQ Microsoft .NET LINQ Preview (May 2006) An error ocurred while applying security settings. Users is not a valid user or group. This could be a problem with the package, or a problem connecting to a domain controller on the network. Check your network connection and click Retry, or Cancel to end the install. Try Again Cancel I found the cause of the problem. My Windows is in spanish and t ...Show All

  • Visual Basic Pardon my ignorance.. Visual Basic ".NET" ?

    I've been out of the development loop for over 4 years. What is this Visual Basic ".NET" Is it a different version of Visual Basic I've seen Visual Basic 6 and Visual Basic 2005. What is the latest version, and how does Visual Basic ".NET" fit into all of this I didn't see a ".NET" version of VB for sale.. Clearly I'm missing something. Any help or links to more info appreciated! .NET is a framework for writing applications, any Visual studio past 6 is .NET by definition. Both C# and VB since VS2002 target the common language runtime, which means that they can use each others cl ...Show All

  • .NET Development address link of web service

    Hi everybody,   how would you change the address link of a webservice of a web reference in a windows application without using wsdl.exe or utility Is there a property or method to change this link say from http:\\192.168.102.100\ to http:\\205.215.120.133\ Thanks. den2005 You could try something along these lines, I have a config file that is used to read values from where I have an application running on a citrix box and it need credentials passed to it so it can access the service there is also a property of .url for the service that I can pass a value to. Hope this helps. With New Permissio ...Show All

  • Visual Studio Visual Source Safe Questions

    Hey everyone, My company is looking to implement a version control tool for Excel/Access files that may contain VBA code.  Can VSS 2005 run the diffs in Excell/Access   Does it also compare cell to cell changes (Excel) Form/table/query changes (Access) What about Word documents, etc. Thanks a lot for all of your help! If you are interesting in comparing the workbook formulae and constants, I can recommend Florencesoft DiffEngineX. A free 30 day trial can be downloaded from   http://www.florencesoft.com ...Show All

  • Visual Studio Get callers of the function

    In Visual Studio 2005 there is one interesting thing Call Browser. It can show all functions that call selected function (menu Call Browser -> Show callers graph). I wonder can I get the functionality like this from my add-in Is it any interface or method that can retrieve all functions that calls the function I selected You probably want to look at the topic "Supporting Symbol-Browsing Tools" in the latest sdk help. You might also be interested in an archive thread about this that Ed wrote, that is available at: http://www.codecomments.com/archive358-2005-9-577727.html In a nutshell, the ...Show All

  • Visual Basic Localization not showing up

    With VB2005 Express, I've created an app and have generated the localized strings for the form controls using the designer method. I set the form to Localizable = True, changed the Language to Swedish and entered all the localized strings. This generated a Form1.sv-SE.resx module in my project. I have some debug code in the funciton where Form1 loads which sets the Culture and UICulture to sv-SE. However, none of the form controls show the translated strings, they are all still defaulting to English. How do I make use of the translated resources ...Show All

  • Windows Forms .Net App Updater and Version numbers

    I have recently started using the .Net Application Updater Component with great success, except for one issue: I have a sample app with 1 exe and 1 dll.  If I modify the assemblyinfo file in both the exe and the dll to have the same version number (1.0.0.0 for example) everything works smoothly.  However, if I decide to make a change to  ...Show All

  • Visual FoxPro How to access VFP popup errors?

    Hi all I am writing an external application which can detect Foxpro errors. The problem I am having is the native VFP error popup. I can not access the message text in that popup. Windows API can only return the handle and the title of the main popup window. It does not detect any children of that window. Sample: Is there a way that I can access to the "Variable 'A' is not found." text message from an external app This screen shot is a sample: http://img.photobucket.com/albums/v306/xedap/fox2.jpg Windows API can detect and access other appplication popups. With the MESSAGEBOX in VFP, I can access the text message without any problem. It h ...Show All

  • .NET Development Event And Threading.

    I was just doing some code, when i noticed 1 thing. Lets take this example. We have 2 objects. object1 have a worker thread, and an event. object2 subscribes to the event, that object 1 exposes. object1's worker thread calculates some stuff, and when its done, it raises event, and object2 catches it. Heres the problem. The method thata object2 got, to handle this event, runs in the SAME thread, as the thread that it was raised from(This is an issue when it comes to win forms). When i find this thing that i wonder about in OO things, i try and take the context, into some IRL example. I have tried over and over again, but this makes no sense t ...Show All

  • Smart Device Development Smart Device Deployment Error

    Hi, I have built a windows mobile 5.0 PC smart device database application in VB. When deployed onto the device, it runs well until an event is called to perform some calculations which gives the error - InvalidCastException, Conversion from "" to type 'Integer' is not valid. This event is however executed when the application is tested on the emulator without error. Please help me identify and correct ths problem. That means your application is attempting to cast something which is not integer to integer. You should use debugger to see what the problem is. If you need more help on ...Show All

  • Visual Basic SerialPort error

    When opening a serial port in the dotnet 2.0, using stopbits.none causes an ArgumentOutOfRange Exception. Otherwise this feature works great. Here is a code example- Imports System.IO.Ports Imports System.ComponentModel Imports System.Windows.Forms Public Class frmComm Dim comport As New SerialPort() Public Sub portHandle() If comport.IsOpen Then comport.Close() End If comport.DataBits = 8 comport.StopBits = StopBits.None comport.Parity = Parity.None comport.BaudRate = 9600 comport.PortName = "COM1" comport.Open() End Sub End Class ...Show All

  • Windows Forms Cell Data Changed

    Well the situations is like this... I have got a grid onto which i fill with data that i get from SQL. In that grid i have a combobox and when the value of the combobox should change (example: if its now "Default" and if you change it to "Hello") i just have to capture the even of changing of the combobox cell. Beacuse i need it to fill up the other grid with the new/changed value from the combobox cell. If anyone can help i would be gratefull : ) Im using ASPxGrid if it is of any help... Greetz Klemenp Check the Parent property of the drop down control. You can then type ...Show All

  • Visual Studio 2008 (Pre-release) When?

    When is Linq shipping in product form    Whidbey   Orcas   Somewhere in between ...Show All

  • Architecture VS 2005 and multiple projects.

    I was told by someone that Visual Studio 2005 has moved away from multiple projects in a solution. I don't believe this for a second, but I wanted to see if 1) it really was true and 2) if there is any info I could draw from to counter that argument. Also, do many of you consider the information in this article: ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/dndotnet/html/designnetapp.asp ) a bit outdated And by outdated I don't mean unusable, I just mean that it seems a bit simplistic for many projects.   Kris Kramer wrote: I was told by someone that Visual ...Show All

  • Windows Forms selecting many nodes of a treeview at the same time

    Hi, You can select a node in a TreeView by: treeView1.SelectedNode.... Is it possible to select many nodes at the same time i have a treeview and a button when you select a node and click on the button it saves selected nodes name , now i want to select many nodes at the same time and when i click on the button it saves all nodes. thanks. Check out www.codeproject.com as they have lots of code samples showing how to modify the standard control to make it multi selectable. Phil Wright http://www.componentfactory.com Free user interface controls for .NET2 ...Show All

©2008 Software Development Network