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

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

edworkerkcmsd

Member List

yousifnet
PLife_Jones
wargammer2005
blahmoo64
Sondre - MSFT Regional Director
kgdavis
Aldo Donetti - MSFT
james swanson
MikeMinsk
Renato Sansevero
hello one
brsrkr
Nachiketa
Scordo
Klaus Keith
Arshad Paracha
jeffnc
Padvit
gaurang
BrettBrown
Only Title

edworkerkcmsd's Q&A profile

  • Visual Studio Team System VS.NET 2005 Team edition

    hi all, as we are evaluating the VS.NET 2005 team edition. We will be developing web application in a team or individual basis. sometimes we will be taking the development PC to the customer place in order to investigate any bugs in the real scenario. So in this case we would like to know if i have installed VS.NET 2005 Team Edition - software developer, is it possible to run the entire web application in my PC which we have taken to the customer place. To run the application to investigate and to debug is it required to have any other things....as i have installed team edition please advice, your early reply will be highly app ...Show All

  • Visual C++ linkLabel_LinkClicked

    With managed C++ what would I have to type on this linkLabel_LinkClicked code in order to make my link go to a website of my choice #pragma endregion private : System::Void linkLabel1_LinkClicked(System::Object^ sender, System::Windows::Forms::LinkLabelLinkClickedEventArgs^ e) { } }; } http://www.codeproject.com/system/newbiespawn.asp df=100&forumid=3298&exp=0&select=706737 ShellExecute is the answer. ...Show All

  • Visual C# UserControl Events

    OS: Windows XP Pro Lanaguages: C# Program: Visual Studio .NET 2005 hi ppl. im lookoing for help, i have a problem. i created my usercontrol and it has nothing on it but a listview that is filling my whole user control.. and some little pictureboxes arround it... what ever that does not matter... the thing is that when i add the control to a form that im using i use an event... "Enter" ... so when it become ActiveControl or the focus enter,,,it trigger the event... but that never happens... then i knew why.. ...Show All

  • .NET Development Is there any tool is there to convert xml or xsl file in to fo?

    Hi friends, I am looking for some tool to do the conversion of xsl in to fo(formatting object), because i want to generate report is having of more than 50 page. It is very difficult to write fo file 50 pages. Can u please provide me some related link for download Thanks in advance Regards Saravanan http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=387758&SiteID=1 ...Show All

  • Visual C++ How to replace a system call in a library?

    I have an application, and I know a function f will be invoked which is local in a library l, and the library maybe a dll in my windows. now, I want to reimplement the function f and retain the others. and I have no source code of library l and the application, which means I can't recompile the application and the library. and, in my function f, I want to invoke the f function in library l. I am on platform win2000, and I want the plan can suit for any win platform except for win31. Can you give me any directions You should build a new library which wraps the old one and replaces this function.  Assuming you can find a ...Show All

  • Windows Forms Building a DataRelation dynamically?

    How do I build a DataRelation dynamically The two tables in question are in memory and untyped.  The tables and primary keys are built on the fly. The tables are populated using sqlreader Now I want to buld a DataRelation between these two tables. My understanding of this process is like swiss cheese. Lots of holes! Please help me get my arms around this. tia, ...Show All

  • Visual Basic Copy file and delete it? Sigh, used by another process. Any thoughts or hints?

    When I copy file, and later on I want to delete it, it is being used by another process, even though the only process it is being used with is the copy function. Did anybody else encouter this problem, or even better, does anybody know how to solve this. Thanks a lot. If you can provide a code extract of what you are doing then you may get a quicker and better response on your exact scenario. Let us know as it potential could be an issue for others. ...Show All

  • Windows Forms Is it possible to create a desktop icon using ClickOnce

    I found only one article about creating desktop icons, but that article (MSDN) ruled out creating desktop icons. Is this possible with ClickOnce or not I know windows installer will, but we have a Smart Client and want to provide a way to create a shortcut to the app on the desktop so people could get to it quickly. Any suggestions Thanks     It is not a feature of the deployment.  In fact, it is not obvious that a ClickOnce application installs a shortcut in the start menu.  A user would really never know at install time.  I would recommend having your program ...Show All

  • Visual C# best place to look for a cookie?

    Hi all, hopefully a quick/easy question. i have a site im doing in v1.1 and i am using a small cookie to ensure the users have completed a profile that is in two steps. The cookie gets created when they press the first submit button and contains nothing more than a 6 digit string. After the profile has been completed (on a subsequent page) i delete the cookie. This is intended to allow the user to go to step 2 if they close the browser or something happens that drops their session. My quesion is where should i check for this cookie On Session_Start in global.asax.cs or on the Page Load event of the first page of the site. curren ...Show All

  • SQL Server Old Excel files after SQL2000 > SQL2005 migration

    Hello there! We are having some problems over here after our SQL2005 upgrade. If we try to use an excel file that previously accessed the SQL2000 database (same DSN name and credentials), and then try to refresh the data after the 2005 upgrade, we get the errormessage "[Microsoft][SQL Native Client][SQL Server]User 'DOMAIN\username' does not have permission to run DBCC TRACEON." We have tried to delete and recreate the DSN file.. Tried to use SA user instead (with offcourse full access).. An even bigger problem is that we can not even get into msquery to copy the SQL query to make a new file, the same problem appears. ...Show All

  • Visual Studio Team System What features are specfic to VSTS Tester edition?

    Can anybody elaborate which features are specific to VSTS Tester edition, that are not also in Developer (besides the Load Testing and Web Testing features) Thanks! Test view is available for both developer edition and tester edition. Test manager (aka test explorer) is only available for tester edition. ...Show All

  • Visual Basic Help: Visual basic program

    Hi i am making a program with a listbox named (lst) and picturebox named (pic) and i put the following code into the listbox selectedindexchanged sub so as the user clicks on the picture name from the listbox it displays in the picturebox Note: the listbox contains the paths of the images as there is openfiledialog in the program Private Sub lst_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles lst.SelectedIndexChanged Dim img As Image Dim s1 As String Try s1 = lst.SelectedItem img = Image.FromFile(s1) Catch ex As Exception pic.Image = Nothing Exit Sub ...Show All

  • Windows Forms tab control with close button

    I'm pretty sure a tab control with a close tab button is not in the common controls.  How hard would it be to get the appearance of common tab control + close button   Is it time to make some custom controls Yes there is no TabControl out-of-the-box that has a close tab button, however it wouldn't be too hard to custom draw it. Set TabControl.DrawMode to TabDrawMode.OwnerDrawFixed , and then you could draw the close buttons using the ButtonRenderer. ...Show All

  • .NET Development C# Thread Safe Class events

    Right now I have created a custom base class that has numerous events. These events have non-standard signatures and are fired from a thread I have that is basically just a while loop checking variables against older ones for telling when something has changed. As far as I know this is the best way to go about doing this is to just make a void on another thread in a while (true) loop, in the loop just doing ifs... than doing a thread sleep. I make sure the thread is a background thread that way it'll exit propertly when the consumer exits. If anyone knows a beter way of going about this than stop reading here. :) If not that onto my r ...Show All

  • SQL Server Analysis Services

    How do you grant just read access to the cube data to an end user Thanks,  Edwina Derrick I am not sure I understand what you mean by security features with roles and such in AS. I set up a role and gave them read access to the dimensions. This was not enough. I gave them read access to everything and they still couldn't view the data. Once I granted full administrator rights to the cube they could read the data. Thanks,  Edwina Derrick ...Show All

©2008 Software Development Network