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

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

nrasinec

Member List

Agent00
SainTLove
Marc6679_MarcCS
baswegan2
tuds47
notec
steve_thomas
gtimofte
ShadowRayz
patforna
Programm3r
reichard
jcnconnect
learning_new
Steve1999
dobauer
Kaveh Shahbazian
vhmau
WilderLand
allison_h
Only Title

nrasinec's Q&A profile

  • Windows Networking Development About DSCP and 802.1p tag

    For packet priority, I can use QWave to set DSCP tag, which is verifyed by capturing packet with ethereal. However, 802.1p tag is not showned in the captured packet. How to set 802.1p tag by qWAVE Thanks for any help... With Qos2 (qWAVE), you don't have to worry about DSCP and 802.1p. The underlying platform will always add the correct DSCP and will also add 802.1p if: The end-to-end path supports it The destination host your sending to is on the same IP subnet Your qWAVE flow is adaptive (as opposed to non-adaptive) Regarding (1), packets with 802.1p tags get erroneously dropped all the time. Myriad APs, NIC drivers, switches, etc. drop packets with 1p tags for different reasons. Becau ...Show All

  • Windows Live Developer Forums Dashboard control

    Hi, How can I specify the dashboard position on the map In V2 there was an object parameter in MapControl() constructor. Using this object parameter I was able to specify where I want to place the dashboard. Is there something similar in V3 I tried playing with .Compass and .Zoombar styles but they move only compass and zoom bar respectively - the dashboard (light blue semitransparent box) remains in upper left corner of the map. Thank you, olley. Wow! That's exactly what I need. May be it is not ideal and not documented but it works Thank you guys! ...Show All

  • SQL Server Get datas filtering by only month

    Hello; i want to get some results but only for one month. like that; select * from News where PubDate = month (9 ) i tried use between dates but i got errors because all of months aren't 30 or 31 days ... For example February is 28 days sometime.. So how can i get a month results... thanks now for your helping ... If you only want to have every september rows you will have to do something like this: Select * from News Where Month(PubDate) = 9 HTH, Jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • Visual J# Differences in 1.1 vs. 2.0 -- sockets/networking

    We have a J# layer that communicates with our mainframe. It maintains a pool of GU3270 emulation connections. Prior to deploying 2.0, our virtual machines were able to suspend for backup for periods of approximately 5 minutes every night, and resume service immediately afterward without difficulty. Since deploying 2.0, it seems as though the VMWare freeze on the server image, if frozen for a long enough (4+ minutes it seems) period of time, leaves us with dead sockets in the connection pool. The connection pool is unable to close the connections, as either the sockets, or their output buffers, are null/disposed after image thaw. Without being able to properly close the connections from its perspective, the pool cannot reinstantiate them ...Show All

  • SQL Server Server: the operation has been cancelled. a memory bug?

    When I highlight a few partitions and start processing, the process occasionally stops with a message that operation has been canceled, like this: Response 3 Server: the operation has been cancelled. Response 4 Server: the operation has been cancelled. Response 5 Server: the operation has been cancelled. ..etc... (no further error message details are provided) SQL profiler shows that batch was completed (but rowcount shown in process progress log is too small). Analysis Services profiler shows no messages at that time at all. It just shows messages when it started, and when I restarted the processing. The Analysis trace appears to be stopped when processing stops with " Server: the operation has been cancelled.&quo ...Show All

  • Windows Forms RichTextBox control hosted in Datagridview cell - properties question

    I uSed the infamous calendar code example and hack the hosted control to derive from richtextbox instead of datetimepicker; http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=792064&SiteID=1 I hosted the RTB control so that I could use the .SelectedStart and .SelectedLength properties to determine cursor position in the cell. However, I can't seem to find a way to pass the property from the RichTextBoxEditingControl to the RichTextBoxCell that I created. Anyone done this before Is it possible I can post my code if it's helpful , although it's almost the exact code from the post above.... Hi, Ken! Now, how can I pass a rich text format to the RichTextBoxColumn Isn't a property like myDataGridView. ...Show All

  • Visual Basic how to uninstall my own application

    I have a vb.net program that runs invisibly - no task bar, no icon, no VISIBLE form. It can't be shut down by the user outside of the standard windows shutdown. This part works. If the user wants to uninstall this program, they need to open up the application and enter an uninstall code that turns off the program so it can be uninstalled. A tray icon is not an option. QUESTION: If I have a program that is running invisibly, is it possible to click an icon that makes the program become visible Yes, you can make another application that when it is executed (by clicking its icon) it searches for your application and activates it (makes it visible as long as you provide a mehtod for doing so) ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. collision detection - alpha channel mask?

    I'm making a tile-based game, and some of the tiles are part walkable, part not-walkable. (like half mountain, half dirt). I need a way to determine which part of the tile can be walked on and which part can't. I can't do it based on pixel color, so I wanted to know if anyone could help me out with some bright ideas. I remember hearing something about an alpha channel mask you can put over your tiles, or recreate the tileset in black and white to designate walkable/not walkable. Is that the best (or only) way to pull this off If so, that would double the size of my tileset file George Clingerman wrote: XNA Rockstar wrote: And George...what are you, the XN ...Show All

  • Visual Studio 2008 (Pre-release) ToArray() / sub query / DLINQ possible bug.

    Hi Guys, I'm using DLINQ to access my test Database. I get this error when evaluating the following query; Cannot assign sequence of LINQTest.MarineLocationKills to type LINQTest.MarineLocationKills[] var query = from m in marines select new {      m.ID,      m.Name,      m.Age,      m.Sex,      Kills = ( from k in marineLocationKills               where k.MarineID == m.ID               select k). ToArray() }; var temp = query.ToList(); If I change .ToArray() ...Show All

  • Visual Studio Tools for Office Programmatically enable and verify Data Cache

    I'm posting this question in a new thread. I have a separate DAO.cs file with a static dataTable which I have typed in as [Cached] before its declaration. The static dataTable is being populated by some actionPane combo entries. The dataTable is bound to a ListObject. If I save, close and repoen the application, the listObject maintains the previously added records but as soon as I add another set of entries from the actionsPane, the ListObject gets reset and my previous entries get erased, being replaced by the newly added entry. (Meaning that the dataTable has been reset) What am I supposed to in order to have the system check the cache first, fill in the dataTable (which in turn populates the listobject) with previously added entri ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Tool for auto HLSL Generation?

    Are there any tools out there to enable the graphical building of a shader network, such as in Autodesk Maya's Hypershade tool or Softimage XSI's RenderTree tool, which can enable you to use a GUI to set up an object's basic material properties and then automatically generate the appropriate HLSL shader fragments needed to reproduce the material effect in your game without having to manually write HLSL files Certainly, if you want to create complex shader effects, you would need to be able to edit the HLSL or manually create new custom HLSL files, but for creating HLSL files to render basic, standard material properties, there really should be a graphical tool to take some of the work and difficulty out of it. Such a tool should allo ...Show All

  • Gadgets Sidebar can't find new gadgets?

    I've installed a few new gadgets to my gadgets directory. They all have foldername.gadget, but the sidebar will not show me anything other than the default 11. A few of these gadgets have been downloaded from the "Get more gadgets online" link. What am I doing wrong here A few of the gadgets I've tried have "File Folder" listed under type, even though they end in .gadget as the folder name. Another file there is calculator which is listed as a "Windows Gadget" under type, yet sidebar finds none of them. Did you install them into the right directory C:\Users\YourUsername\AppLocal\Microsoft\Windows Sidebar\ Do they all have a correct gadget.xml file ...Show All

  • SQL Server SP2 Slows Down Time Intelligence

    Can somebody else verify that performance decreases in SP2 where time intelligence is concerned. Below is my simple repro on AdventureWorks. I already have an open question in a prior thread to ask why [Year to Date] is so much slower than [Current Date] where fiscal semester [2004][1] is concerned. [Current Date] runs in 2 seconds after clearing the cube cache. My question for this thread is why did my [Year to Date] query go from 1 minute in SP1 to 2 minutes in SP2 Does anyone know how to get the 2 second execution that I would expect from a [Year to Date] query Step 3 below runs in 1 or 2 minutes depending on if you have SP1 or SP2 Step 4 runs in 2 seconds 1. Create Time Intelligence Select Ti ...Show All

  • Windows Live Developer Forums VEMap is undefined in IE 5.5

    Hi, I was devloping some maps with virtual earth in mozilla i didn't get any error and the display is being shown. Whereas, in IE 5.5 it is giving me any error as 'VEMap is undefined' and the map is also not shown. Can anyone help with a suggestion what is the problem is Thanks in advance. Naren ok, strange... now that I made this case... I can add the xmlns attribute back in now, and it works fine. I have no idea why it was being so fussy. But one thing is for sure, IE 5.5/6.0 and Virtual Earth do not get along nice, and the problem here is intermittent. ...Show All

  • Visual Studio Express Editions Setup Freezes with about 4 bars left in ALL of the express Apps

    Setup Freezes with about 4 bars left in ALL of the express Apps. I have had the express version of C# installed for a few months now, but when I try to install C++ or any of the other express editions it hangs when its "loading installation components" . Any ideas Thanks It sounds strange but it seems many are able to workaround this issue by disconnecting all network cables or disabling all network adapters. http://blogs.msdn.com/astebner/archive/2005/12/19/505724.aspx ...Show All

©2008 Software Development Network