Software Development Network Logo
  • Architecture
  • Windows Vista
  • .NET Development
  • Game Technologies
  • VS Express Editions
  • Visual C#
  • Microsoft ISV
  • Windows Live
  • Visual C++
  • Visual FoxPro
  • Smart Device
  • Visual J#
  • Windows Forms
  • Visual Basic
  • Visual Studio

Software Development Network >> tc ace's Q&A profile

tc ace

Member List

murali-indian
CrushDaByte
datamathfish
irf
knallbunt
BuntyGupta
venkatakrishna
mixman2001
crpietschmann
Genival Carvalho
Geetanjali
_Aristotle_
frli01
zybernau
Mandeep Singh
Fonzy
JDELUNA
Jeff Barker
Arik Cohen - msft
Midget01
Only Title

tc ace's Q&A profile

  • Visual Studio Express Editions Need help with for and pictureboxes

    I'm making a map editor to make maps Every tile is a picurebox. In the menu there is a command "New" wich will load all the default pics into the picturebozes, so you can make a new map i created this for statement dim i as integer For i = 0 To 391 PictureBox(i).image = My.Resources.Image_default Next i But this doesn't work. There is something wrong with the PictureBox(i).image Please help me. I'm using vb2005 Thanks in advance, Radexxion Sure. You will need "Windows Application" project. Then you will need to design your application and implement. What kind of editor you have I mean your map is matr ...Show All

  • SQL Server Deferred Updates versus In-Place Updates

    The following question was posted on http://support.microsoft.com/kb/195760/en-us : Q. What are the conditions under which deferred updates occur in SQL Server 7.0 A. In SQL Server 7.0, all updates are in -place (direct), provided that the column or columns participating in the clustered index key are not changed. If a change is made to a UNIQUE clustered key, the update plan runs in a hybrid mode where the query processor combines direct and deferred updates. If the clustered key is not UNIQUE, all of the updates are run as deferred. You can use SHOWPLAN to see examples of how this behavior works. Look for the SPLIT and COLLAPSE op ...Show All

  • Visual Basic Visual Basic and graphics - for the novice/beginner

    Hi there I have no training in programming, but would like to start writing my own little programmes. In my work (civil engineer), I am increasingly frustrated by the lack of simple, time saving programmes to make my life easier, and hence the urge to write my own programmes. Of course, the start will be no more than programmes for one-off formulas, but having said that, I would like to (in many year's time) be able to write more complicated programmes. And of course what I have in mind involves graphics, specifically being able to draw (for instance) pipelines (with coordinates) and then be able to generate a longitudinal section from th ...Show All

  • Windows Forms get value of checked item in checkedlistbox

    Hi, I have a checkedlistbox. I am trying to get the value of all checked items, but cant really find any function that gets the value of checked item. how can I get it    CLBDiscount is the checkedlistbox for(int i=0;i<CLBDiscount.CheckedItems.Count;i++) { _AListDelete.Add(CLBDiscount.CheckedItems[i].ToString()); } and this is how I am doing the databind CLBDiscount.DataSource = ArrayListDiscount CLBDiscou ...Show All

  • Visual Studio No such interface supported

    Seemingly out of the blue, while I was working, the Visual SourceSafe web service returned this error when I tried to interact with the VSS 2005 database through remote access ("internet access") in Visual Studio 2005... Unable to cast COM object of type '...' to interface of type '...'. The operation failed because the query interface call on the COM component for the interface with IID '{...}' failed due to the following error: No such interface supported (Exception from HERESULT: 0x800040002 (E_NOINTERFACE)). Note: Assembly paths and IIDs omitted. I think I found the solution. Looks like ...Show All

  • Visual C++ VC++ 6.0 How To Reset IDE

    Ok I opened up VC++ 6.0 this morning and my windows were all messed up, and I cannot get them back to they way they were before. How can I reset the IDE layout you may reset settings by deleting the register key HKEY_CURRENT_USER\Software\Microsoft\DevStudio\6.0\Layout. Backup the registry if needed. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problem with ComputeBoundingSphere

    I'm trying to use the Geometry.ComputeBoundingSphere method to get the radius of the bounding sphere of a simple mesh. The code is as follows: using (VertexBuffer buffer = this.mesh.VertexBuffer) { GraphicsStream graphicsBuffer = buffer.Lock(0, 0, LockFlags.None); Vector3 center; boundingSphere = Geometry.ComputeBoundingSphere(graphicsBuffer, this.mesh.NumberVertices, this.mesh.VertexFormat, out center); buffer.Unlock(); } For some reason, this code is always returning 0 as the radius of the sphere. My mesh is just a simple 7 vertex hexagon that renders fine. Thoughts ...Show All

  • Smart Device Development Call/SMS blocking code sample

    Does anyone have code sample for doing Incoming call/SMS blocking for WM5 It is sad that Microsoft does not release any tool for faking incoming call in WM5 (I know that there is something for WM2K3). ...Show All

  • Windows Forms How do I make a spell check...?

    Hey, I searched for this, but none helped... I am using Visual Basic 2005 express, and I need a spell check, but I can't figure out how to do this, if someone finds/knows a program that will let you put the words in it and it will give me the VB2005 express code thats fine, but if you want to give me code...I would be fine getting a 3 word spell check so I can go from there...ummm..I dont really want to use the MS Word spell check, k Thanks Check these articles at codeproject: Spellcheck.net NetSpell - Spell Checker for .NET ...Show All

  • Visual Studio Express Editions How do you create a string expertblob?

    I'm messing with the remote assistance api's and need to use an expertblob for one of the calls.  The only problem is I have no idea how to declare or use this type of variable. If anybody could render me a reply it would be much appreciated. Thanks all. *** Followup *** After reading over my own question I realize that I have not given enough detail. I'm attempting to use the builtin windows remote assistance dll rdchost.dll and am trying to use the RDCCLIENTHOSTLib. SAFRemoteDesktopClient. ConnectToServer(string expertBlob) function and no matter what I try to put into the string it will not work, it throws an exception:  "Value ...Show All

  • Windows Forms Splash screen problem

    Hello, I have a VB .Net 2005 application and I've added a splash screen to it using the Menu: File-> New->Splash screen. If I run the application from Visual Studio. Everything is just fine I can see the splash screen, but if I install it I get an error at startup. If I remove the splash screen everything is just fine. Does anyone know why Thanks for any reply. ...Show All

  • Visual C++ /clr Static Libs Possible / linking between mananged and unmanaged

    Hi, Are static libs built with /clr supported under vs2005   When I link against any lib built this way I end up with unresolved tokens and externals.  The same code compiles with no issues with non /clr builds. How are static functions supported   They also seem to come up undefined at times. What are the differences when linking against dlls/libs that are built as managed   I can't seem to find any documentation regarding this.  I am going by trial and error, but would like to be able to do more design. Thank you One of the issues that might be causing the unresolved tokens and err ...Show All

  • Windows Forms DefaultCellStyle lost on column sort

    Hi, after setting the DefaultCellStyle.BackColor property on a row in a DataGridView, and then sorting a column at runtime, it appears to lose the formatting. Is this the correct way to set the BackColor property of a row - if so, is there any way of getting round this problem This is by design. When you set styling for a row, it is for the row index, not for the data as the DataGridview doesn't have any knowledge of the data. What you will need to do is either use the CellFormatting event and dynamically format the back color or handle the DataBindingComplete event and check for the Reset ListchangedTyp ...Show All

  • Visual Basic need xsd.exe help

    http://www2.mvr.usace.army.mil/OMNI/ws/showfile.cfm fn=vessel_current_location.xsd This(I have a copy on my local HD) is the schema I am trying to generate classes from using xsd vesloc.xsd. I get "error can only generate one of classes". Any ideas Isn't the .xsd supposed to make importing the corresponding .xml data a piece of cake BTW, does the output of xsd.exe go to my IDE code surface, or where Please help a newbie. It works! After I entered xsd vesloc.xsd /c /l:VB at the command line. Also, I had to remove the top line white space in vesloc.xsd. It created vesloc.vb code file. Now I have ...Show All

  • Visual C++ IntelliSense works intermittently

      I understand that c++ intellisense is poor than c#, but sometimes it simply doesn’t work. The scenario is quite simple:   Edit a line and type a class object and then the -> operator. Successfully intellisense open the drop-down box and show all available members. Now go to the next line and type de same class object and intellisense is not capable to find any thing. Or at reverse situation. In first line intellisense doesn’t find anything and at the second line it finds the correct available members. And, of course, the typed stuff is correct and I strictly follow the rules given in “Troubleshooting IntelliSense in C ...Show All

©2008 Software Development Network