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

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

learnerplates

Member List

j_o_h_a_n_n_e_s
swatts777
UsingBytes
Danny Tuppeny
Dmitry Radich
NILKAMAL
Rod at Work
d9832834
Ashish Pratap
Mastroyani
biopau
Sattva
Helen999888
etang
enric vives
Andrew Chapman
Senthil Kanna
Alex1st
Mike Batton
doctorx0079
Only Title

learnerplates's Q&A profile

  • Windows Live Developer Forums adding pushpins gets progressively slow, even after deleting them

    i am wondering if others have this problem too. i have a bunch of points that can be added to the map by categories that are toggle-able, but the more you add and delete pushpins, the slower it gets to add new ones. i have read the posts on the memory leak issues, and i understand that i can refresh the site and start over with map.dispose(), but i do not want to force the user to refresh everytime the site gets slow (therefore losing their process within the application). does anybody know of a work around is there a "smart" way to add and/or delete pushpins thanks hi john, that's good stuff! i took your code and modified it a bit to try to mirror the behavioral problems i was having (wh ...Show All

  • Visual Basic Removing Rows in a DataGridView by content

    I cannot figure out how to remove a row based on it's content. So if any cell in a row contains the string "Nothing" then it will be removed. Thank you, Troy L ok. hhmm...have you tried to use String arrays instead i mean this one. dim str as string(0 to 10) somewthing like that. and just use loops to fill up the comboboxes. like this one for x = 0 to 10 combobox1.additem str(x) next ...Show All

  • Audio and Video Development Taking Screen Snapshots

    Is anyone aware of a way to take screen captures of the video and save those to the player storage for later viewing Real code I stole from my boss, the playlist has a scheduled event when the capture is required: application.addEventListener( "scheduled_event", OnScheduledEvent, false ); function VideoMainCaptureCallback(i,uri) { Player.playlist.play(); } function PlayerVideoMainCapture(filename) { try { Player.video.main.capture(filename,VideoMainCaptureCallback); } catch (ex) { DebugOutput("PlayerVideoMainCapture(" + filename + ") Exception: " + ex.message); } } function OnScheduledEvent(evt) { if (evt.id == 'Five') { Player.playlist.pause(); PlayerVideoM ...Show All

  • Visual Studio 2008 (Pre-release) Creating popup panels like Blend

    What would be the best way to go about creating 'popup panels' like Blend does when you click on one of the tools on the left side In Blends case it looks like it's a Menu but I'd like to be able to have any Control magically appear, allow the user to interact with it, and then disappear. For example, I have a color rectangle in my app. If the user clicks on it, i'd like a color selector control to magically appear. The user can then interact with the control and then click anywhere outside of the control to close it. Is something like this built into WPF I've tried just manually creating a control but I'm having trouble with getting the popup to automatically close when the user clicks anywere else. Hooking both LostFocus and LostKeybo ...Show All

  • Visual Studio Visual Basic Debugger Crash

    I have just recently installed Visual Studio 2005 and in my GUI Design class we have opted to use Visual Basic. The problem I am having is that whenever I try to use the debugger by setting a breakpoint, everything goes well until I actually reach the breakpoint. When my program reaches the breakpoint, everything freezes up. I am unable to force quit the program or Visual Studio, or alt-tab to any other applications. The only thing I am ever able to do is bring up the task manager with ctrl-alt-del, but I am unable to kill processes or anything from the window, as it too freezes when I click on the window with the mouse. This is on a fresh install of Visual Studio 2005 on a fresh install of Windows XP Professional SP2. I have all the updat ...Show All

  • SQL Server How to set Multiple Active Results Sets (MARS) enable in ODBC

    hello all there can any body tell me how could i set the Multiple Active results Sets (MARS) option on/yes in case of the ODBC. The thing is i create the connection using the SQL Native(sql sqrver-2005)wizard, i got following when create the DNS Microsoft SQL Native Client Version 09.00.1399 Data Source Name: DM_N Data Source Description: Server: vsnet1 Use Integrated Security: No Database: DM Language: (Default) Data Encryption: No Trust Server Certificate: No Multiple Active Result Sets(MARS): No Mirror Server: Translate Character Data: Yes Log Long Running Queries: No Log Driver Statistics: No Use Regional Settings: No Use ANSI Quoted Identifiers: Yes Use AN ...Show All

  • Visual Studio Express Editions emulating mouse

    i looked into 'SendInput()' but it doesnt seem to work for me. i keep getting numerous errors and i simply dont understand how to use it. UINT SendInput( UINT nInputs, LPINPUT pInputs, int cbSize ); i dont udnerstand how it works or what what changes i need to make to it. all i need it to do is simply click on a user-defined area (for example a Point) ...Show All

  • Windows Forms How to create a Wizard with Windows Forms?

    Hi i want to create a simple wizard for an application consisting of a series of windows that take date from the user and store it in a file. I wonder if its possible to create a wizard with Windows Forms I use Visual Studio 2003 and Visual C# standard edition. Thanks in advance Hi Derek, wow, thats great and almost meets what i need. However, there seems to be a bug in the 3rd form. How do i enter phone numbers I have tried several versions of international numbers but the form won't proceed to the next form, that is, the "next" button stays disabled. However, now i know it works and thanks again for the great work. May be this should be posted on MSDN articles or the like. Best reg ...Show All

  • Visual C++ double to currency

    how to convert double to currency I assume you are talking about "double" and "CURRENCY" data types. In that case you can use this function: http://msdn.microsoft.com/library/en-us/automat/html/c39d85bf-d838-4ed2-844e-56bfa2d31fe9.asp frame=true     ...Show All

  • Visual C# Referenced DLLs - How to dynamically update the path of the reference dlls in another solution?

    Hello, I am working with 2 C# solutions right now, 1 is the main application we are creating (let's call it MainSolution.sln for now), the other is a unitTest solution (UnitTest.sln) created as a separate solution file, as the main solution consists of too many projects and compiling it takes a long time. It was created separately also because different groups of developers can work on the respective solutions they are tasked to do. In the UnitTest solution, we create unit tests for the main solution classes, hence, for each project in the unitTest solution, I've added references to the respective main solution dlls. A typical full path of the Main solution's DLL is C:\MainApp\<foldername>\bin\Debug\<filename>.dll I'm cur ...Show All

  • Visual Basic how to connect sql server using wizard

    i am using vb.net 2005 how to connect to sql server using wizard The wizard in vb express only allows you to attach and database to sql express. You can not connect to a sql server database. Visual Studio 2005 allows you to connect to a sql server database with the wizard. ...Show All

  • SQL Server basic SQL question

    I'm not sure if this is the correct forum or not, but I have a basic question. Currently we have are doing calculations via stored procedures and then returning the results back to the client in either a web page or a winForm style application. There are times that the stored procedure takes 20 minutes or 3 hours to run. Now, our database person says that all the calculations needs to be removed from SQL and put in either the web applications code or the winForms code (based on what is calling it) the db person also states that SQL is not intended to do any kind of math (calculations) and they should all be done in the application. I think the calcs should be done on the db and its going to take 20 mins to 3 hours for these things to run n ...Show All

  • Visual Studio Tools for Office VSTO RemoveCustomization

    Hi, I was wondering if someone would be able to help me. I have tried to accomplish the following but with no success: Using Visual Studio 2005 Pro., VSTO 2005, and Microsoft Office 2003 Pro., I have designed a Word document as well as a usercontrol. The usercontrol is added to the Word Actions Pane and its sole purpose is to display a grid with rows from a database, and populate bookmarks (stored in the Word file). When the user clicks on "File...Save", "File...Save As", or clicks on the Save icon on the commandbar, I'd like to save a copy of the current (customized) document. Therefore, I execute: Me.Application.ActiveDocument.SaveAs("C:\test.doc") or show the SaveAs dialog box in the Document_Befo ...Show All

  • SQL Server Data Transfer from Lotus Notes very slow compared to SQL 2000 DTS

    To extract data from an ODBC source, try the following: Add an ADO.Net Connection Manager. Edit the Connection Manager editor and select the ODBC Data Provider Configure the Connection Manager to use your DSN or connection string Add a Data Flow Task to your package. Add a Data Reader Source adapter to your data flow Edit the Data Reader source adapter to use the ADO.Net connection manager that you added. Edit the Data Reader source to query for the data you wish to extract. hth Donald Using the steps outlined above as described by Donald Farmer in another post on this forum, I have created an SSIS package which retrieves data from Lotus Notes 6.55. The DSN referenced by the ADO.Net Connection Manager conne ...Show All

  • Windows Forms Why does ATL contorl receive WM_DESTROY mesage when it's loaded from a form in MDI App?

    I have an ATL activeX control, and I want to put that control into a child form in my C# MDI App. When I click "show child" menu, my child form should show up correctly. But my ATL control receives WM_DESTROY when it's loaded, and this is only happend in C# MDI enviroment. I trid to load it from MFC MDI app, it's fine. In my WM_DESTROY message handling, I want to do some final clean up,and I don't want it to be done when it is just loaded. Thanks for any help! Here is my code: ATL: created from "Visual C++ Projects--> ATL --> ATL Project" and the control typ is just a "Standard control". LRESULT CMyAtlControl::OnDestroy(UINT /*uMsg*/ , WPARAM /*wParam*/ , LPARAM /*lParam*/ , BOOL&a ...Show All

©2008 Software Development Network