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

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

MrMad

Member List

Damon4
ankit_ttgls
jupitor_rules
Praveen Sadhu
Kurt888
Neo_4583
Richard oupatty
Dave Balsillie
mjhoagland
mgaur
Jan Thordsen
ThomasHo
Nick Asseloos
Philip Falkenberg
Vijay Shah
Adaoud
SP Steve
Carl Tawn
gxhpainter
Nessiee
Only Title

MrMad's Q&A profile

  • SQL Server SQL Server does not exist or access denied

    Okay...Running SQL Server 2000 & yesterday I was inside of Query Analyzer keying away with no problems.  Exited out of everying like normal, powered my laptop down & life was good. Or so I thought. I started my laptop today & my SQL Server Services Manager shows that my SQL Server is not running. Long story short, I've torn this thing apart and can't figure out why it's not running.  My Client Network Utility has Named Pipes & TCP / IP Enabled.  TCP/IP has port 1433 enables.  As for my named pipes, those are jacked cuz I've tried ...Show All

  • Visual Studio Team System How to support Code Coverage

    We want to support Code Coverage for COBOL project System. Please tell us how to support Code Coverage with VSIP SDK. Please tell the topics about Code Coverage in VSIP Documents. Best Regards. Hi Munjal. Thank you for reply. I understood how to do code coverage. Can the test project be made in COBOL And, can code coverage be done Best Regards. Shinya Watanabe ...Show All

  • Visual C# Mouse and Keyborad API

    hello ppl,, im making a lan administrator program and im wondering if theres any API to manage the mouse and keyboard.... i have a program that need to be able to lock a computer... for example.. when the server send a message to a client... the keyboard and the mouse should be locked,, no matter if the client moves the mouse,, or if he press keyboard,, I need to disable them,, and also if possible.. move the mouse to a specific location,,make clicks.. and with they keyboard... to be able to press keys.. i know i ask too much :P hehhee... thx mig16 Nah, not asking too much. I would probably have a look i ...Show All

  • Windows Forms Automatic Indentation

    I've having an issue making a RichTextBox automatically indent the next line when the user presses Enter. Right now I check to see if the Enter key has been pressed and if it is (in the KeyPress event of the RichTextBox), I get the previously line with the following code: int PreviousLine = RichTextBox1.GetLineFromCharIndex(RichTextBox1 .SelectionStart) -1; RichTextBox1.Lines[PreviousLine]; This will get me the previous line. From this I cound the amount of space (Tabs and Spaces) at the beginning of the line to determine how much space to insert on the next line. I used the SendKeys method to send tabs and spaces. All ...Show All

  • Visual Studio Express Editions Debug assertion failed: (unsigned)(c+1) <= 256, file isctype.c, line 68

    I have compiled a debug version of Thunderbird using VC++ Express. I intermittently get the error in the Subject. When I kick into the debugger, the stack trace seems to indicate that the range check is actually failing in the _security_check_cookie() routine. Here's the stack trace: msvcr80d.dll!1023c92d() [Frames below may be incorrect and/or missing, no symbols loaded for msvcr80d.dll] msvcr80d.dll!1023cd81() > xpcom_core.dll!nsCRT::strtok(char * string=0x040db607, const char * delims=0x0371f398, char * * newStr=0x0371f398) Line 172 + 0xa bytes C++ Here's where the application code got to - it is just trying to return fr ...Show All

  • Visual FoxPro Assigning Data to a variable in a query

    I have a table that I want to query based on a Selected Record in a gridView.  I have the Record Number in GridView.SelectedValue but  I have no ide how to set up a query in here much less run it.  I need to know OldLine and oldItem from a table called items I mean I know "Select OldItem, OldLine from ITems where RecordNumber = " + GridValue.SelectedValue"   Sure hoped that worked but no...  As you can probably tell I am relatively new to VB, VWD but not queries.    Please can someone give me an example of how to do this in a Public Sub The whole purpose is to get the old item number so I ...Show All

  • Windows Forms Create a custom DataGridViewColumn for radio buttons

    Hi, In my application, I want to create a custom DataGridViewColumn which contains radio buttons, much like the DataGridViewCheckBoxColumn. I know I should derive from DataGridViewColumn and DataGridViewCell, but I'm not quite clear on how I should proceed. There's so little information on this topic; as far as I know, no MSDN article on this area has been written yet. Hope that somebody here can shed me a light. Thanks a lot. Dotnetjunky Greate article, unfortunately, that solution by Regis did not work for me since it requires that the user turns on "Visual Styles" in the operating syste ...Show All

  • Visual C++ GetProcessIoCounters() Problem

    Hi, I'm trying to use GetProcessIoCounters(). I've included the windows.h file (as MSDN says) and Kernel32.lib is in my link-settings too. But when running the program I get the next error: error LNK2001: unresolved external symbol __imp__GetProcessIoCounters@8 I cant understand why!!! (I'm using visual studio 6 on windows XP.) Please H E L P ! You need to install an updated Platform SDK, more recent than the one included with VS6. You can download the latest from  http://www.microsoft.com/downloads/details.aspx FamilyId=A55B6B43-E24F-4EA3-A93E-40C0EC4F68E5  but I don't think it's compatible with VC6. You can order older vers ...Show All

  • Visual Studio Team System ASP.NET and FxCop

    Does anybody have a guide on what FxCop rules should be enabled/disabled when analyzing an ASP.NET Application Thanks! I'm not aware of any guides, but in general you may encounter violations that simply cannot be fixed because of ASP.NET's bizarre design.  Newer versions of FxCop are better about special-casing ASP.NET situations. For now, when you run into unfixable issues, you can either exclude them, or, if it's particularly annoying, disable the rule.  It might be best to move all your business logic into a Class Library project so you can leave the full FxCop suite enabled at least against ...Show All

  • SQL Server SSIS custom component will only partially update in VS causing debugging to fail

    When I try to debug the break points will always say the source code is different from the current version, but the custom component in the GAC has the new version number. The other strange thing is the toolbox will not reset to the original version meaning it will not remove the custom components. The funny thing is after I compile the custom components and restart VS the custom component runs with the new code changes. I can see the new features I added, but the debugger and toolbox still seem to be broken. I have tried the following 1) Reset the tool box. 2) uninstall all my custom dll from the GAC “C:\WINDOWS\assembly ...Show All

  • Visual FoxPro newbie here...

    hi to all... i have a form named customers and i have txtboxes to input all information i needed. i have a grid that shows all the records in the table customer. works fine on loading. now, i have 2 buttons previous and next respectively. my codes are as follows: Previous Button: USE customer if not BOF() skip -1 thisform.refresh() if BOF() go top endif endif Next Button: USE customer if not EOF() skip thisform.refresh() if EOF() go bottom endif endif Now, my problem is that when i move to another record by clicking next button, my data on the text boxes moves fine and my grid goes white with no data on it, ...Show All

  • SQL Server How to use reporting services of the MSSQL2000.

    Good day! I'm a newbie in using the Reporting Services in MSSQL2000. Can ant one help me how to start in this.Can Reporting services emebeded in Web application using c#. Any tutorial or links that can help me. Your help is much appriciated. God bless yes you can (",) if u want i can give an e-book about RS. just email me @tizzdale27@yahoo.com ...Show All

  • Visual Studio Class designer causes keyboard input to be ignored

    In Beta 2 if the class designer is open and I try to edit the code file, all keyboard control keys input is ignored in the editor.  For example the Tab, Delete, Space keys. Is this by design Brad Raulston It is very disconcerting to hear that keyboard input is ignored after using Class Diagram.  Unfortunately we have not encountered this issue.  Any information you may have with regard to what you were doing while this occured will be helpful - for example, language you are using, the profile (development) settings, any operations you performed in the class designer etc.  We will tr ...Show All

  • Visual C++ please help me to convert a C++ code into .dll

    Hello, I have an already made project in C++ and I need to use its functions in my C# project. I think that I must convert it into .dll file, but I am very confusing in how to get a .dll file , that can be referenced in C# project , from a C++ code files. I am reading many articles about that but I can't apply any one. Please help me to doing that. If anybody can help me please give me the e-mail to send the C++ code. Or it can be accessed from the web site : www.cs.rpi.edu/~zaki/software useing the link: CHARM.tar.gz if anybody can convert it please post it to me. my e-mail address is: aya_e ...Show All

  • Windows Forms Making a custom control work with 'tab' press focusing

    How can I make a control similar to (or using) System.Windows.Forms.Picturebox that users will be able to focus using tab key I have made a custom control inherited from System.Windows.Forms.Picturebox. It does everything I want except allow users to cycle focus to it using the tab key. What determines if a System.Windows.Forms.Control-based control can take focus with tab Is it just certain controls that do this If so, which 'tabbable' control is most similar to PictureBox To make a control receive focus, put this in the contructor: SetStyle( ControlStyles.Selectable, true );   ...Show All

©2008 Software Development Network