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

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

wlian

Member List

Washu
DemonEyesKyo
PCIGUY
Daniel Maresca Jr
ahmed_black_horse
Piotr Celej
Jay Senior
hommer
rmahaffey
denis morozov
JohnCo_18334
jh55557777
fazee4u
Nickj_UK
Fro-D
Vadim Tsyganov
flamingwoodchuck
Michael William
TWorman
miantosca
Only Title

wlian's Q&A profile

  • Visual Basic Simulate a mouse click in a program

    I have a VB program and I need to simulate a mouse click in a webbrowser window. How would I go about simulating that click on the screen. Thanks Hi Everyone, I know this is an old topic, but I reveived alot of emails on this subject since i wrote it more than one year ago, in fact, I'm still receiving messages on this subject. So let's solve this once and for all by posting the right declarations for the API. Thiw WILL WORK fine on VB 2003 and VB 2005: Public Declare Auto Function SetCursorPos Lib "User32.dll" (ByVal X As Integer, ByVal Y As Integer) As Integer Public Declare Auto Function ...Show All

  • Windows Forms date format entry in datagrid

    Hi, I have a datagrid control that displays date inforamtion. I want the user to enter dates in ###### fashion. However, I have set datagrid column style format to ##/##/## which works for displaying dates already entered but does not allow the user the enter ######, they must enter ##/##/##. If this has to be done, is there anyway to automatically put  ...Show All

  • Visual Studio 2008 (Pre-release) Factoring Interfaces

    I am embarking on my first WCF based service. This service will be evolved from an existing .asmx based set of web services that expose over 200 webmethods. My question is, what is the best way to (re)factor the .asmx interfaces in WCF I was considering a single IMyInterface containing the 200+ methods, and then perhaps partial classes for the implementation to maintain some modularity. Is this a bad idea Are there any best practices for factoring WCF interfaces in wcf,each ABC(Address+Binding+contract(interface)) combination will define the client side proxy If all these methods logically don't fit ...Show All

  • Windows Forms Proxy problems

    Hi guys, Every time I use the Internet, a dialog appears asking for proxy authentication before I can do anything. That's not a problem but when I first tried to use Terrarium, I got an error saying that proxy needed a username/password - but I can't find anywhere to enter it.  Now I just get the standard "The .NET Terrarium is unable to  ...Show All

  • .NET Development Changing/Updating datagrid ASP 2.0

    I have created form that will show an Access table in a datagrid and allow me to edit and update the table. I am not getting any errors but when I click update, nothinn happens. The screen refreshes but the original data is still there. Can anyone tell me what I am doing wrong Here is my source: [code] <%@ Page Language="VB" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" " http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <script runat="server"> </script> <html xmlns=" http://www.w3.org/1999/xhtml " > <head id="Head1" run ...Show All

  • Visual Studio Team System TF30063: You are not authorized to access MyServer

    I failed twice trying to create new project now I am trying to delete and getting the above error MyServer is the server name. I am logged on with an account that is a member of the local adimistrators group.  If I go to http://localhost/  I get page cannot be displayed If I go to http://localhost:8080/  I get HTTP Error 403 - Forbidden I've added TFSSETUP to local admins group also since failing to create projects.  Does anybody have a check list of security options to setup Darren, Did installation occur without any errors   The Sharepoint default web site may not have been successfully extended.&nbs ...Show All

  • System Center Exchange Public Folders

    We run dedicated public folder servers in our environment and there is no Public Folder server role built in.  I assume for load purposes we could use the Mailbox role, but I can't find a mechanism for targeting users to the public folder server (as well as their home mailbox server). Ben .. [but I can't find a mechanism for targeting users to the public folder server (as well as their home mailbox server).] You can target a set of users (client profile) to a specific MailBox Store instance: right-click on a client profile, select "Edit client profile" menu item, the "Serviced by" field allows select ...Show All

  • SQL Server Error importing data from oracle database to an SQL database

    Hi! When i was importing a database table from an Oracle Database to a SQL database table, the wizard returns this error: Could not connect source component. Warning 0x80202066: Source - VB_PERMISSIONS [1]: Cannot retrieve the column code page info from the OLE DB provider.  If the component supports the "DefaultCodePage" property, the code page from that property will be used.  Change the value of the property if the current string code page values are incorrect.  If the component does not support the property, the code page from the component's locale ID will be used. Error 0xc0204018: DTS.Pipeline: The "output column " ...Show All

  • SQL Server URGENT: Specific Models in Report Builder

    Is there any way to display specific models in Report Builder, depending on the permissions granted to users on different folders. For e.g. If the user has been granted permission on folder A, not B, then he/she should not see the models from B, when launching Report Builder from web application. Any help or suggestions or pointers is highly appreciated. Thanks in advance. Model visibility is controlled just like any other items on the report server (e.g. reports, data sources, folders). If a user does not have read permission on a model, it will not appear in the list of models displayed in Report Build ...Show All

  • Visual C# Moving a shape with mouse

    i 'm new in C# but i have an old hope to make a program using shapes and figures and moving them with mouse. my problem is : is there a way to restor previous image or background after moving the figure, like a CAD software does !! Thanks X 10000. Howdy, This depends on the scenario you are in, but everything is possible. You need to override the OnPaintBackground method of your form or control and set comment out the base update statement. You should be overriding the OnPaint method at any rate, and its in here that you should be calling the Clear method from your graphics context. So an example might look like the following: ...Show All

  • SQL Server Passing variables to data flow component

    Hi, I've read the various posts and articles regarding this matter, but I seem to have problems getting to work: In my control flow, I start by declaring a variable named "LastJobLedgerEntryID", to identify the records I need to add to the stage. From there I would like to use this variable in the source component in my dataflow, i.e.: "SELECT [Entry No_],[Job No_],[Posting Date],[Document No_],[Type],[No_],[Description],[Quantity],[Direct Unit Cost],[Unit Cost],[Unit Price],[Chargeable],[Job Posting Group],[Global Dimension 1 Code],[Global Dimension 2 Code],[Work Type Code] FROM mytable WHERE [Entry No_] > " ...Show All

  • Windows Forms Building a smart installer app, looking for initial reading, where to start.

    Our Project has produced around forty or so applications based on VB6, .Net 1.1 and now .Net 2.0 - the problem is now one of user experience, and we would like to bring these little tools under a common installation environment. This installer would need to check for installed .net framework versions, then download and install them as needed, install and register our legacy activex control. It would need to be able to interrogate the local network to find out whether the network already has our configuration and management server app installed, and if not provide this as an option to the user... the user would then need a f ...Show All

  • Visual Basic VB vs C#. How capable is VB compared to C#?

    I need some clarification please. I am learning VB.NET right now and have a co-worker who has a very strong technical background and feels very strongly that learning VB is a "waste of time in all respects" compared to C#. I don't understand this point of view. Since VB is a .NET language does it not posses the same capabilities as C# Am I on the wrong track I really enjoy the VB.NET syntax and am picking it up quickly. Here's my background ( being totally honest ). I am self taught, I learned C++ back in the late 90's. From there, I moved to C# because ASP.NET is the best platform availabl ...Show All

  • Windows Forms Need a Good GDI+ Concept

    Hi.. I am new to the Vb.Net (though I have the exp of the VB6) Now i want to make a Game (A board Game) But I am facing the problem that How to display the Board the board (It is a board game) and than create a animation of the Pieces move on eh board.. I have search but doesn't find any gud tutorial or article on thi ...Show All

  • Visual C# Convert doc to tif

    Hi how can i convert doc file to tif file using c# or vb thanks You can use the Microsoft Word Object Library, here is a little list of articles: Automating MS Word Using Visual Studio .NET How to automate Microsoft Word to create a new document by using Visual C# Creating and Opening Microsoft Word Documents from .NET Using C# Getting Started (Visual Studio Tools for Office) Office Development Samples and Walkthroughs Walkthroughs Using Word Microsoft.Office.Interop.Word Namespace Now use the SaveAs method to save a loaded document as a tiff file. ...Show All

©2008 Software Development Network