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

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

tillandran

Member List

zchuang
John Mathiasen
Script Spider
Justin Shen
NickDaGreek
Laurent4x
DPS1963
jtdavies
Najra
Bartosz
kbickerton
RichardSny
Deep Blue
Ranjit Charles
Nga Nguyen
EnzeroX
rhc_advent
kebabbert
sassenach
Wonder Andile
Only Title

tillandran's Q&A profile

  • Visual Basic zoom in/zoom out

    To Preview Report on Screen I had Draw Text in Picture Box. Now How I can Increase or Reduce Size of Picture Box when user click Zoom Button simultaneously it should redraw all content of picture box. If you are using 05 the picturebox control has a sizemode property... setting it to zoom will zoom the pic in and out by resizing the pic box...much simpler ...Show All

  • Visual Studio Express Editions Any way to simulate a key being pressed?

    I'm wondering if there is a way to simulate a key being pressed, such as ENTER. I need to do this without targetting a specific window, just simulate as if somebody hit enter on the keyboard. I cannot target the window (or more like I don't know how) because I'm not creating the window. It's a print dialog that is created by the FaxServer object. Any ideas I know that simulating enter would certainly not be the best answer (without targetting), because any number of things could happen to screw it up, but it's my last resort. Thanks. What about SendKeys.Send( "{ENTER}" ) ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. problem with multimedia timers

    hii i am working on a directx application which uses a multimedia timer( http://www.codeguru.com/Cpp/G-M/mult...cle.php/c1581/ ) problem am facing is that the timer is behaving indifferently when it comes to CPU usage. It takes 0-1% CPU on WindowsXP...But its taking 15-20 % on Win2000. When i tried it on another system with Win2000 it gives 0-1 %.But after running the application for sometime the CPU usage automatically increase to 20 % and i gotta restart the system to bring CPU usage to 0-1% cheers vinod http://msdn.microsoft.com/library/default.asp url=/library/en-us/directx9_c/Game ...Show All

  • Visual Studio Team System VS.NET 2003 and Team Foundation Server

    I recently installed the MSSCCI Provider for VS.NET 2003. Shortly thereafter, I began receiving a number of error messages. Sometimes, upon opening VS I'll receive the message "Critical Error of Source Control Provider. Please restart IDE." Restarting the IDE usually results in the same message, but it seems as though restarting the entire OS sometimes fixes it. When I don't get that error on opening, I'll receive an error later on that simply says "Failed to Initialize." These errors tend to occur in large numbers, so once I see that once I usually see it a few dozen times in a matter of a minute or so. Finally, VS now ...Show All

  • Software Development for Windows Vista Persistence service exception

    Hi together, I am just playing around with the new workflow framework. I have build an example state machine with three states: [State1], [State2] and [State3] [State2] contains a HandleExternalEventActivity where the problem occurs. Here is some code: [ExternalDataExchangeAttribute()] public interface IMyInterface { event EventHandler<KeyArgs> OnKeyPressed; } [Serializable] public class MyClass : IMyInterface { public event EventHandler<KeyArgs> OnKeyPressed; public MyClass() { Console.CancelKeyPress += new ConsoleCancelEventHandler(Console_CancelKeyPress); } void Console_CancelKeyPress(object sender, Consol ...Show All

  • SQL Server Unable to access Report Manager

    Running RS 2000 version 8.00.1038.00 on a Windows 2003 server with SP1 applied.  Yesterday I was receiving HTTP 401.1 errors.  I appled workaround method 1 from article ID 896861 and now I am receiving the following message when I try and access /reports">https://<websitename>/reports .  The request failed with HTTP status 404: Not Found. Anyone have any ideas how to fix this Thanks Eric Here is a log event from the ReportServerWebApp log for the latest attempt to access the Report Manager. w3wp!ui!1778!6/1/2005-12:04:57:: e ERROR: The request failed with HTTP status 404: Not Found. w3wp!ui!1778!6/1/2005-12:04:5 ...Show All

  • SQL Server Synchronization Error:The buffer pool is too small or there are too many open cursors.

    Hello: I tried to synchronize the SQL 2000 database with the SQL mobile server on PDA with SQL server management studio from SQL 2005 . I got the error as “ The buffer pool is too small or there are too many open cursors. HRESULT 0x80004005 (25101) ”. The SQL database file size is 120MB. I create the .sdf file on PDA with the following C# code: string connString = "Data Source='Test.sdf'; max database size = 400; max buffer size = 10000;"; SqlCeEngine engine = new SqlCeEngine(connString); engine.CreateDatabase(); I think the 400MB max database size and 10000KB max buffer siz ...Show All

  • Visual Studio Team System please help with web recorder

    Hi! I'm trying to record webtest. 1. Create new web test 2. Window of recorder (IE) does not appears 3. Script is not recorded What solution can you suggest to resolve this problem Thanks for your reply! I'm wondering if the recorder has started but is hiding behind another window. Does a web test open in the IDE with a status bar across the top that says "Recording..." If so, does a link appear on the web test status bar that says "Show recorder" If so, click this link and see if the recorder appears. Thanks, Rick ...Show All

  • .NET Development Using in Statement with DataTable.Select in ADO.Net

    I am using this code to get rows from a datatable but it throws an exception (Cannot perform '=' operation on System.Guid and System.String) DataRow [] drows = dt.Select( "RefID in('1e1cde8e-28b6-493d-b6ce-d1b81b69e83f','1e1cde8e-28b6-493d-b6ce-d1b81b69e83f')" ); PS it works with strings and fails when working with guids. Your help is appreciated. I think this may be a bug in the DataSet. You can use a Guid column in a simple comparison like this: DataRow [] drows = dt.Select( "RefID = '1e1cde8e-28b6-493d-b6ce-d1b81b69e83f'" ); But not with an IN clause. You s ...Show All

  • Windows Forms Text box text format checking

    I have some text box which allow the user to key in integer and decimal. How do i do a checking on the text enter in the text box that it is integer ot decimal  E.g. Throw a error msg to the user when the user enter letters in the text box where the user is suppose to enter integer or decimal. As soon as  ...Show All

  • Windows Forms Looking for a control, or information about one

    I want to add colour support to my whiteboard user control and I would like to adopt the colour selection mechanism Paint has (the standard MS Paint program that comes with all versions of windows). I’m familiar with the colour selection dialog box, but I’m interested in the toolbar at the bottom of the app. The one that has a predefined set  ...Show All

  • Smart Device Development Committing changes to dataset.

    Well I currently have multiple forms. On one from I make changes to the dataset and access that data later but on the next form the data is back to its original value. Not sure if i am really saving the changes correctly. I have tried .beginEdit() - .endEdit(), .AcceptChanges(), .Update() to attempt to save the changes. I am starting to think that I may not be saving the changes correctly because if the changes were saved accessing those fields in teh database should yeild the new result. So some help/thoughts would be appreciated. Are you using data binding If so, which data source upd ...Show All

  • SQL Server SQL Server 2000 Enterprise Edition won't load on Windows XP Pro with SP2

    Each time I attempt to load SQL 2000 Ent on my Laptop with XP SP2 I recveive the following error. "Microsoft SQL Server 2000 Enterprise Edition server component is not supported on this opperating system. ....." Developer version installed fine. I had it installed before SP2 but now I reveive this error. Am I missing something here Thanks but I could have sworn that I had it loaded in the past. I guess I must have been mistaken. ...Show All

  • Windows Forms Accessing pop/smtp/ftp/telnet(rexec) from VB.NET

    Need help. I have developed a VB6 application that uses 3rd party component to do ftp/telnet(rexec)/pop/smtp functions. Is there equivalent solutions using VB.NET with standard Windows API  How do I deal with it ...Show All

  • Visual Basic VB 6.o enterprise edition crashed when I tried to view the form

    I'm using Visual basic 6 enterprise edition. I cant open the designer of the form in my computer. when I tried to it always crashed suddenly. come up with the send and dont send menu then the program is closed. even if I only open the single form not the project it still crashed when I switch to the form view. when I tried to open the same form on my friend's computer it works. I guess the problem is with the visual basic software or the system file. it was working nicely 3 days ago but it goes wrong last night. I didnt install any program at all during the time. could you guys suggest me how to fix this problem.. cheers ...Show All

©2008 Software Development Network