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

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

xRuntime

Member List

MaggieChan
learnerplates
Martin Schmidt
Rita Ch
ottogbg
grnr_r
CsNetworks
Raguvind
tbthtbth
AlucardHellSing
Pockey
Deza
DonBaechtel
Rtalan
m#
john11
Tanmaya
ititrx
auto
jluce
Only Title

xRuntime's Q&A profile

  • Internet Explorer Development Embedded video crashes IE 7

    Since about mid January everytime i browse to a page that contains embedded video IE 7 crashes. This also affects watching Adobe flash files and other forms of video. all i get in the event logs is: The first example was watching NBA TV Broadband and the second was browsing to a page with embedded flash. This is extremely frustrating so any ideas or fixes would make me a happy man. Faulting application iexplore.exe, version 7.0.6000.16386, time stamp 0x4549b133, faulting module wmvdecod.dll, version 11.0.6000.6324, time stamp 0x4549be1d, exception code 0xc0000005, fault offset 0x000ed7d1, process id 0xf88, application start time 0x01c74a3a58fb0c0d. OR Faulting application iexplore.exe, version 7.0.6000.16386, time stamp 0x45 ...Show All

  • Smart Device Development All controls are grey in the toolbox

    Hi. I use Visual Studio 2005 Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200) Microsoft .NET Framework Version 2.0.50727 When i open new project For PocketPC2003 or WindowsCE5.0 in C# i can't see most conrols. In "Common Device Controls" section of toolbox i see only Pointer and Button controls. Other controls disabled. I see #13119 tab in toolbox. Please help me!!! Please right click on toolbox, select "Show all" option. If that's not working, right click on toolbox, select "Reset Toolbox". ...Show All

  • Visual C++ Forcing dependencies to link into a library?

    Hello, This question is actually about the Visual C++ 2003 compiler (7.1) and corresponding Studio IDE but I have a feeling its probably the same (or very similar) answer for both 2003 and 2005. I am making a library that calls code in other libraries. I have not set up the dependency information for these libraries, but my library is built just fine without the linker saying it is missing any external symbols. So I guess the default behavior is that the linker will not worry about "missing" symbols unless the link target is an executable, making it my library user's responsibility (not mine) to link with those dependencies. I assume there is a way to force the linker to try to link in any code it encounters so that my libr ...Show All

  • SQL Server SQL EXPRESS TIMEOUT PLEASE HELP TO THIS NIGHTMARE OF HELL

    The default is sest to 15 seconds that of course is no good because it takes more than that to attact the damm database though is very small. Does any one know how to modify the connection timeout I'd try including it on the Connection String but no luck. it looks like it detaches the database after a period of inactivity. If anyone knows anything about please let me know THANKS Hi, Are you attaching your database from QA / Query Window if yes check Tools->Options->Connection to set the time out option Or run this from query windows and refer this from BOL. USE master EXEC sp_configure 'show advanced option', '1' go exec sp_configure Hemantgiri S. Goswami ...Show All

  • Windows Live Developer Forums Pushpin Onclick Event?

    Hi has anyone managed to handle the on click event of a push pin yet because i cant find any events for such a thing You can tell something happens because (in IE at least) you can hear the normal "tick" noise just like when you click a link, when you click on a pushpin, I need to be able to handle this even so I can action the users click on the pushpin Great example Dr. Neil! I hope there's a push to get more capabilties back to the pin in the next release - ability to easily do the pin click and the ability to easily number the pins would be great. Anyone from the VE team able to comment on pin changes in the next drop fo the API ...Show All

  • Visual Studio Visual studio compiler is error.

    Error is: Error 1 Could not load file or assembly 'Prologic.CIF.Provider' or one of its dependencies. The file or directory is corrupted and unreadable. (Exception from HRESULT: 0x80070570) I don't know why it is Please help me. Thanks. ...Show All

  • Visual Studio Express Editions How to print form's in VS2005 ?

    hi i want to print datagrid in my form but i don't know how to print it .(i add printdocument to my form and Printpreviewdialog and set Printpreviewdialog.document to printdocument but when i compile my app nothing exist in Printpreviewdialog and it ia blank) and if my datagrid has more page, how to print multipage (please give me a full example because i am beginner) thanks. Hi Hamed_1983, I think that I get what you want to do, I tried something along the same lines and used this project as a guide. http://www.codeproject.com/cs/miscctrl/DataGridPrinter.asp Hope it helps Scott ...Show All

  • Visual Studio 2008 (Pre-release) First Remote Function Call takes too long

    Hi Dears When ever i call a remote function first time it takes too long so my transaction gets fail before remote function gets called. I m using TcpBindings with sendTimeout and transaction time out more than 20 mints. but i still getting this problem. it throws following exception. "The flowed transaction could not be unmarshaled. etc" ok fine if there is no solution of this delay on first call then there might be some timeout settings so my transaction should not fail. Regards This KB article may help for OleTx: http://support.microsoft.com/Default.aspx id=922430 For WS-AT, there is no direct 1:1 equivalent here. If operations are taking longer than expected to complete ( ...Show All

  • Visual C++ Static Global Object inside a DLL

    Hi, I want to have an instance of my class as a global static object. Is it possible to have it inside a DLL. What will happen to such object declarations and when will they get initialised Thanks, Jayaram Ganapathy ...Show All

  • Visual C# Datagridview: retrieve cell contents - selected row, col4

    My datagridview selectionmode is set to fullrowselect , multiselect is false and read-only is true using an access databasebindingsource. When the user selects a row, I simply need to be able to retrieve cell contents from selected row, col4 and do a messagebox.show I'm new to DGVs and am having trouble figuring this out. Appreciate any help. TIA Try: MessageBox.Show(dgvData.CurrentRow.Cells[IndexOfTheColumn].Value.ToString()); Or MessageBox.Show(dgvData.CurrentRow.Cells["TheColumnName"].Value.ToString()); ...Show All

  • Visual Basic cocatenate items from listbox

    I'm trying to figure out the correct code for joining the items of a list box into a single string. I know this must be elementary,,, So far, I've come up with this clumsy code: dim string as string = string.Empty for each me.listbox1.items string = string & me.listbox1... (I'm stuck here...) & ", " me.label1.text= string Help, please! Thanks in advance Scotts answer was using stringbuilder class and creating a CSV type output - if you just want a list of the items from the listbox separated into separate lines - then something like the following Dim s as string = "" For Each item In ListBox1.Items s = s & item.tostring & vbCRLF Next The stringbuilder is more efficient appro ...Show All

  • Visual Studio Express Editions Printing in "visual basic express Edition" ?

    Hi all. Im looking for a "beginners" guide, on how to enable printing in my homemade programs. I am, at best, a beginner when it comes to programming, and i have no previous experience with visual basic, other than the videos supplied by learnvisualstudio.net. All the topics I can find about printing, is about the difference between printing in Visual Basic express and Visual Basic 6.0, but I dont know VB6, so that doesn’t help me much. So if any of you know a good place to start, in learning about printing, i would really appreciate if you would post a link to it. Thanks in advance, and I apologize if my english is a little incoherent, im not use to speaking/writing in this language. Since you want to know ...Show All

  • Software Development for Windows Vista tablet pc lag

    when i hover the mouse over my inkapp it lags/stutters for several seconds then moves smoothly. all is well until the pen is moved away from the screen then broght back down...several more seconds of lagging and stuttering...i've read that this is due to event coalescing (or lack there of) when the pen is near the screen...is this true and is there a way to prevent it from happening when the pen is lifted if not what could be causing it also i have the form laid out so that i has several tabs each with a few dozen inkedits on them..is there any way to speed up the rending/loading of the inkedits it takes 15-20 seconds to load a template but im not sure if this is just inherent to inkedits and whatever resources they take up. Thanks, ...Show All

  • SharePoint Products and Technologies BDC and Table maintenance (editing data)

    Good day all, It is a common requirement in our business to create table (SQL table) maintenance web pages to maintain data associated with inventory planning processes (for example).  In our latest project we were planning to extend our custom ASP.Net pages to support more tables.  As architect, I wanted to influence the team to move this facility from custom code into our portal platform (MOSS 2007), and BDC seemed the ideal option to replace the custom front end.  However, BDC only goes halfway since it doesn't support updates.  I've spent the last couple of hours researching this on MSDN and TechNet, and although many folks refer to the idea, there aren't any real-world examples out there.  There see ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. GameComponent.Draw()... why?

    I'm a bit confused about the GameComponent class, and its intended use. It would seem that it would be perfect for inheriting particular subsystems. InputComponent, NetworkComponent, etc... but you wouldn't want to draw any subsystem. So what was the logic behind having a Draw method for GameComponent Did the cart come before the horse, so to speak, with the GraphicsComponent How exactly is GameComponent meant to be used I thought I'd get it straight from the horse's mouth... and I have no idea what's with all the horses in this post. (My suggestions are in third post, if anyone cares). Hey, Amadrias.... A SceneGraph, in my imagined perfect world, would be implemented as a DrawableComponent. And if you l ...Show All

©2008 Software Development Network