Software Development Network Logo
  • Windows Vista
  • Windows Forms
  • IE Development
  • Microsoft ISV
  • Smart Devicet
  • Visual FoxPro
  • .NET Development
  • SharePoint Products
  • SQL Server
  • Visual C#
  • Visual C++
  • VS Team System
  • Visual Basic
  • Visual Studio
  • Audio and Video

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

kjm0001

Member List

ST W
Ed Lewis
s.sanya
davehomebrew
Andrew Fry
Sapineni
LilleMonster
Talyrond
smileyke
Bravo_00
Maxim Michtchenko
Mehdi Mahdloo
logtorahul
Peter Ritchie
TechedRonan
yanivpinhas
Yitzhak
CodeDigger
Christopher Hujanen
JohnStrudwick
Only Title

kjm0001's Q&A profile

  • Visual Studio Team System Team Test Load Agent

    Hello! Are there examples or walktroughs for the Team Test Load Agent I would like to learn about it and I can't find examples how to use it. Regards CSharpNewbie22 Hello, This link might get help you to get started, let us know if you have any questions: http://msdn2.microsoft.com/en-us/library/ms182634(VS.80).aspx Thanks, David Gorena Elizondo [MSFT] VSTS ...Show All

  • Visual Basic Ideas on VB project?

    Hi, this is my first post and i need some help quick. i am asked to think of a project to do for my VB module. can any one give me some suggestions some of my classmates are doing (just to give u ppl an idea): 1. Tax Returns and Calculation 2. Bank Loan Calculator – Car Loan and Mortgage Loan 3. Monthly Expenditure Calculator 4. Phone List Index and Searcher 5. Personal Alarm Clock 6. Desired Password Checker 7. Quiz Generator 8. Recording Cheques and Deposits 9. Rectangular to Polar Coordinates Conversion 10. LC Oscillator 11. Tank Calculation 12. Electric Power Calculation Thank you all ...Show All

  • Visual Basic MenuStrip and StatusStrip update problem in VS2005

    Hi, I have a program with a main window (MDI parent). This window has a MenuStrip and a StatusStrip. The MenuStrip has some items disabled and enabled depending on who is using the program. The StatusStrip shows the current user. I public subroutine is used to update both the MenuStrip and the StatusStrip. If the update subroutine is called from the main window (for example by clicking on a menu item that calls the subroutine) everything works just fine. I have created a login form. This window calls the update subroutine in the main window to update the MenuStrip and StatusStrip before it closes itself. The problem is that the MenuStrip and StatusStrip is not updated! If the Immediate window is used to look at the properties of t ...Show All

  • Software Development for Windows Vista TransactionScope authentication / poorly documented!

    Ahhhhh Microsoft, the most important feature in 2.0 “Transactions” is poorly documented, and almost working, as it looks like the people who developed it got it to work under one scenario, and released it immediately, never tested completely. It is like, hey, does windows xp connected to a windows 2003 DTC when bother are under the domain controller, and when we modify the settings to the DTC and remove the security Yes , Ok, releaseeeeee Does it run in other scenarios Hmmm, maybe :-) Ok, here is the problem 1- I am developing under a virtual machine, outside the domain controller. (Win2003). 2- My SQL server is under the domain controller. (Win2003). 3- I am using the SQL server authentication; it works fine if the transactio ...Show All

  • SQL Server How do I allow an end user make modifications to a rdl that I created using Report Designer

    Hi, I have several reports ( .rdl) that I created using report designer, how can I let the end user make modifications to the text in some of these reports. As I am unable to use Report Builder to modify reports ( .rdl ) created with Report designer, what are my options. is there a way I can embed the report designer within my c# winform application. I have tried converting/creating a report builder version but with no success.. Thanks in advance.. ...Show All

  • SQL Server Hierarchy is used more than once in the Crossjoin function

    When I do this in Adventure Works: SELECT NON EMPTY { [Customer].[Customer Geography].[State-Province].Members * [Customer].[Customer Geography].[City].Members } ON AXIS(0) FROM [Adventure Works] I get this: "The Customer Geography hierarchy is used more than once in the Crossjoin function." How do I do the equivalent in an MDX statement that works I want users to be able to drag multiple hierarchy levels onto the same axis. I have spyed on the MDX that BIDS is generating, and it seems to be cheating by not getting the states and citys back in the same MDX statement. It looks like its combining the results of two queries at run-time as the user expands nodes in the tree. Isn't there a better way Thanks, ...Show All

  • Visual Basic adding panel control to newly created tabpage triggered by another tabcontrol's tabpages.

    I added 12 tabpages to the tabpages collection of the rightmost TabControl (in a splitcontainer) but found out I have to remove them all as soon as someone on the left tabcontrol selects a different set of tabpages. (Only a subset of the 12 are shown at a time) Given the following, how do I programmatically add a panel to a newly minted TabPage1 as per below Private Sub TabControlLeft _SelectedIndexChanged (ByVal sender As Object, ByVal e As EventArgs) _ Handles TabControlLeft.SelectedIndexChanged Select Case TabControlLeft.SelectedIndex Case 0 TabControlRight .Controls.Add(New TabPage("TabPage1")) TabControlRight.Controls.Add(New TabPage("TabPage2")) TabControlRight.Co ...Show All

  • Visual Studio Express Editions Colours

    Is there any other way of using RGB colours in the bitmap.setpixel function other than Color.FromArgb Its hard to customize it as it is an integer.... BMap.SetPixel(x + 1, y + 1, Color.FromArgb(&HFF0000FF)) I cannot base this off a variable by simply doing this: &HFF00 & green & 00. .... give me a hand Not exactly sure what you mean but, Color.FromArgb() has 4 overloads. Perhaps you might want to use FromArgb(red, green, blue)... ...Show All

  • .NET Development Question0 about server activated 0object and client activated object?

    I am new to .net remoting and i want to know when to use Server Activated Object(SAO) and when to use Client Activated Object(CAO) http://msdn2.microsoft.com/en-us/library/cbzcxy2s.aspx http://www.thinktecture.com/Resources/RemotingFAQ/RemotingUseCases.html ...Show All

  • Visual Basic Does a method for deleting Bytes exist? (System.IO, FileStream)

    I learned very much thanks to you about FileStream Dim Fs As New FileStream(File, FileMode.Open, FileAccess.ReadWrite) ' Now i move the pointer to Offset &HA (10 in decimal) Fs.Seek(&HA, IO.SeekOrigin.Begin) ' Now i should write a byte Fs.WriteByte(Convert.ToByte(10)) ' Now i close the file stream Fs.Close() But if i want to delete a byte how can i do I think to use a Cicle For and using ReadByte and write all bytes except the Byte that i want to delete, but I think there is a method for deleting byte into file itself without creating another file and use a Cicle For. That is a bad news , I hope that MS will implement a class for do this in native Now I found a Best ...Show All

  • Visual Basic Passing DTE com object to another thread

    Hi I trying to write a VB macro in visual studio that inserts some code into all the .cpp files in a project. I'm also trying to use a progress bar while this happens. I can seem to launch the background worker thread with no problems and I pass to the thread the progress bar object and the DTE object the progress bar object is fine but the DTE com object is garbage. Is there something special I need to do to pass COM objects to other VB threads Thanks CoMarshalInterface / CoUnMarshalInterface are a pair of Win32/COM functions used to marshal interfaces between threads. It doesn't seem to be a common thing to do, so there's not as much information about it compared to other things. But there ar ...Show All

  • Visual Studio How do I add a custom reference to the Visual Studio macros?

    How do I add a custom reference to the Visual Studio macros When I right click on "References" and click "Add References...", it only shows an already populated list of .NET references. It does not let me browse for an assembly that I have created. Let me irriterate that I am refering to the Visual Studio Marco IDE (the one that pops up when you edit a macro, which is different). I can add references without problems to non-macro projects. Thanks, I'll try that. Why is it that I have to copy my assembly to there Will VS crash if the assembly referenced is not present ...Show All

  • Visual Studio 2008 (Pre-release) DataContext.DetachDatabase() not implemented and AttachDatabase() missing

    The DataContext.DetachDatabase method is not implemented yet (as of the May 2006 CTP). It throws the following exception when calling it: Unhandled Exception: System.NotImplementedException: The method or operation is not implemented. at System.Data.DLinq.SqlClient.SqlContext.DetachDatabase() at System.Data.DLinq.DataContext.DetachDatabase() at LINQChapter6.Program.Listing6_S() in c:\Documents and Settings\HP_Administrator\My Documents\Visual Studio 2005\Projects\LINQC hapter6\LINQChapter6\Program.cs:line 59 at LINQChapter6.Program.Main(String[] args) in c:\Documents and Settings\HP_Administrator\My Documents\Visual Studio 2005\Project s\LINQChapter6\LINQChapter6\Program.cs:line 39 Is it still going to be supported Will the sign ...Show All

  • Smart Device Development How to make MapiRule on Smart phone 2005 ?

    Hi All, I badly need your help on this topic. I want to capture sms on Smart phone 2005 ( WM 5.0). There is a smaple sdk app MapiRule. But its just not working. When I send sms with text "zzz" it just not start MapriRul. It displays the sms in SP 2005's native Inbox. Can anyone please guid me on how to make "MapiRule" on WM 2005 smart phone. Thanks and Regards, Supriya hi, I tried to make the mapirule example works on smartphone 2005 (Orange SPV C600). I am able to install the app correctly and to register/call the dll. Unfortunatly, it is not intercepting any sms :( The dll is copied correctly in the window directory. To install the app on the phone I create a CAB file v ...Show All

  • Visual C++ VS C++ Forms Designer

    I'm having a few problems with the C++ windows form designer. I love being able to create forms in C++ by dragging and dropping controls, etc. but it seems very easy to break this functionality. The current problem or issue is this: If you create a new form in a project (Add New Item -> Windows Form) you are shown the form in designer view. You can then make changes, add controls, save it etc. You can of course also view the code i.e. everything is hunky dory. However if you then at some point (and after saving it) choose to exclude it from the project and then add it back to the project you lose the ability to view the form with the designer. You can't right click on the file in the solution explorer window and choose the view de ...Show All

©2008 Software Development Network