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

Software Development Network >> NG from NEMMCO's Q&A profile

NG from NEMMCO

Member List

Jehan Badshah
Jamie Thomson
Learning VB
Kiwi bloke
khaladu
Parsnips
Artie Sluka
AL_G4
migs
AdriM
Scott ODonnell
shekhar saran
m_umair_85
mjw01
qzrlsd
Robbie Page
Serge Luca
Shocky
Rafer
bucketofsquid
Only Title

NG from NEMMCO's Q&A profile

  • Internet Explorer Development IE7 Crashes for Unknown Reasons

    I have been getting IE7 crashes on a regular basis, on two different computers, after upgrading. Can't replicate the crashes, because they don't occur all the…but the info from the Event Viewer follows: On a P4–3.4E GHz computer with XP Pro & all current updates: “Faulting application iexplore.exe, version 7.0.5730.11, faulting module ntdll.dll, version 5.1.2600.2180, fault address 0x00018fea.” On Centrino 1.83 GHz Dell Inspiron6000 with XP Pro & all current updates: “Faulting application iexplore.exe, version 7.0.5730.11, faulting module unknown, version 0.0.0.0, fault address 0x61df7730.” Extremely annoying...so much so that I may go back to IE6. Anyone have any ideas ...Show All

  • Visual C# XML

    Hi, How can I decode data in an XML string Like when I get something like &gt; or &lt; in the raw strings, I would like to read or store them as > or < in my application. Regards Kiran Kumar Pinjala. Thanks Andreas, I was using InnerXML and this did not decode the data, So, i switched to InnerText and this did decode the data. The only thing that worries me is when I have children, then InnerText will return me a concatenated string of all the children, that I have. ...Show All

  • Visual Studio Start Installation of msi-package with command

    Hello and greetings from Germany, I'm new to MSBuild and therfore I may ask a stupid question. I developed a MSi-Package with WIX. What is important for me now is, that I need a Bootstrapper for for ensuring that all necassary components are installed. Sofar this is no problem for me. But after completing this prerequisits I must install the msi with parameters passed to msiexec. I need this Parameters for further processing in the installer. Is there a way to do so with MSBuild, and if yes, how must I configure the Project-File Thanks for your help. Greetinge Markus You can run programs using the Exec task. See: http://msdn2.microsoft.com/en-us/library/x8zx72cd.aspx ...Show All

  • Visual Studio Express Editions weird exception

    THe below codes create an Access violation exception which I could not fix ptmp = a; sortedlist=a; //process of joining both lists, into a single list begining at a while (ptmp->next!=NULL) { ptmp=ptmp->next; } ptmp->next=b; Would you please help me Thanks There is full list of node whose head is a. p =a; then we pass through the each nodes to reach the last part and then we can merge/stick the second list of nodes to the " p ". ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Help converting MDX1.1 Sample to XNA

    I'm trying to convert some of the samples in Tom Miller's book (Managed DirectX 9 - Graphics and Game PRogramming - Kick Start) to XNA. For the most part, it's been quite obvious what things have changed (mostly naming, and new naming is so much clearer than before!), but I'm stuck with a few bits. Can anyone help I've checked the migration guide, but it doesn't seem to mention any of these missing methods/properties :( Error 1: vb = new VertexBuffer (graphics.GraphicsDevice, typeof ( VertexPositionColor ), NumberItems, ResourceUsage .Dynamic | ResourceUsage .WriteOnly, ResourcePool .Default); vb.Created += new EventHandler ( this .OnVertexBufferCreate); VertexBuffer no longer has a Created event (nor anything ...Show All

  • SQL Server The fastest way to stop SQL Server 2000 without admin permissions... (Bug)

      Do You want to stop the SQL Server service without admin permissions Use this Code : CREATE TABLE [dbo].[stop_service] (  [NUMBER] [int] NULL , ) ON [PRIMARY] GO INSERT [dbo].[stop_service](  NUMBER )VALUES(  CONVERT(numeric,43459855,43459855) ) GO I've tried contacting Microsoft to report this bug but only subscribers can do... Don't run the code above in a production environment !! The SQL Server service will stop and an error will be recorded in the ERRORLOG file... Does anybody know how to submit this error I found this bug in a production environment that is running Windows 2000 Service Pack 4 with SQL Server 2000 Service Pack 4 (8.00.2040). I executed the code of the previous message ...Show All

  • Visual Studio 2008 (Pre-release) ReceiveTimeout: What is the price?

    I've been playing with the value of ReceiveTimeout in order to eliminate MessageSecurityException that we are getting after 10 minutes of inactivity. Increasing the value seems to work, and I tested 10 minutes, 1 hour, and even "Infinite". Now, I was thinking about how scalable increasing the ReceiveTimeout is. What runtime resources does the server dedicate in order to maintain higher timeout values What would the ramifications be for, say, 1000 users that may be "connected" to the server A related question: are there hard WCF timeouts that supersede config settings I've heard somewhere that there is 24 hours timeout that is imposed by the WCF (but this can be completely wrong). Thank you. ...Show All

  • Windows Forms unbound datagridview

    vs 2005 I have an unbound datagridview with a column as a combobox when I read my data in I set the value as:- Dg.Rows[intRow].Cells[1].Value = dr[4].ToString(); However this doesn't actually 'select' the item Is there such a way as 'findstring' - or how can I set the index. ...Show All

  • Visual Studio Tools for Office Cannot open VSTO 2005 projects in VSTO 2005 SE

    When I try to open my VSTO 2005 projects in SE, I get the following error: Microsoft Office Outlook 2003 SP1 or newer is not installed on this computer. You must install a version of Microsoft Office Outlook 2003 that supports Microsoft Visual Studio 2005 Tools for the Microsoft Office System projects. I have Office 2007 B2TR installed so have no clue what is going on. Thoughts Hi Helmut, The VSTO 2005 Outlook AddIn has the same limitations as the Document level projects; I know our above posts look confusing on this point. Unfortunately, you are correct. VSTO 2005 SE does not have any Project migration for the VSTO Outlook 2005 AddIn to the VSTO SE Outlook 2007 AddIn. Part of t ...Show All

  • Windows Forms Overriding Default Value of Existing Property

    I have this inside a listbox derived control <DefaultValue(GetType(DrawMode), "OwnerDrawFixed")> Shadows Property DrawMode() {   get       return MyBase.DrawMode   set      MyBase.DrawMode = Value } However when I build the solution the property in design-mode is switched back to Normal. I already removed any reference to DrawMode in InitializeControls(). So I changed it to Private mDrawMode as DrawMode = DrawMode.OwnerDrawFixed <DefaultValue(GetType(DrawMode), "OwnerDrawFixed")> Shadows Property DrawMode() {   get       return mDrawMode   set      mDrawMode = Value      MyBase.DrawMode = ...Show All

  • SQL Server Problems on Inserting Values in Trad. Chinese into database

    Dear all, I'm currently learning to use Visual Web Developer 2005 Express Edition w/ SQL Express to create a website in C#.Net. However I encounter a problem as status in my subject. I've set the collation of the fields to Chinese_Hong_Kong_Stroke_90_CI_AS in the database & I can manually input chinese charaters to it. In the code side i do like this: Command.CommandText = "UPDATE loginhistory SET Status = '(some chinese words)' WHERE User_id = 1; But I found is inserted into the record. How can I solve this problem Many thanks. Tim You must be sure that the field is NVARCHAR and prefix the string by a N to tell the engine that a UTF-16 string is coming: UPDATE loginhis ...Show All

  • SQL Server SQL2005 SSIS - won't allow text delimiters

    W2k3 server, SQL 2005. @@version = Microsoft SQL Server 2005 - 9.00.1399.06 (Intel X86) Standard Edition on Windows NT 5.2 (Build 3790: Service Pack 1) I'm trying to set up my first SSIS package to import a flat file to a database table. The connection manager will not allow a text qualifier. My data is comma delimited, with doublequotes around each field. If I enter " as the text qualifier, then I get the error "The preview sample contains embedded text qualifiers ("). The flat file parser does not support embedding text qualifiers in data. Parsing columns that contain data with text qualifiers will fail at run time." The data in Columns view shows as just one column rather than multiple columns. If I leave the text ...Show All

  • Visual Studio 2008 (Pre-release) Whether there is a way which do not need .svc file while the service is hosted in IIS?

    Hi Whether there is a way which do not need .svc file while the service is hosted in IIS If you have 100 services,so you should create 100 .svc file to map it. I think it's not convenient Thanks, Zhihao Hi Zhihao, yes, you need to have one .svc file per service. We don't support non-svc services. Actually from usability standpoint of view, you would benefit from this model since each service would have its own base address based on the .svc file's virtual path. If you don't have code in the .svc files, they would be very small physical files. ...Show All

  • Visual Studio Express Editions VC ++ error - Application failed to initialize properly.

    Hi, I am a newbie to VC++ and I changed a little bit of an existing program and tried to distribute the file so others could use the revised edition. I get this error: 1. The application failed to initialize properly (0xc0150002). CLick on OK to terminate the application. I assumed that the exe lacks certain dll's and hence installed the x86 redistribution package on the client computer (which does not have VC++ installed) but still the problem persists. I used dependables.exe to see the list of dll's required, even though the client computer has the necessary dll's in the sys folder, the application fails to see it. When I use this exe on any other computer which 'has VC++ installed', the program works fine. Just on compute ...Show All

  • SQL Server Insert into statment kills my database connection?

    Hi Simple statment is giving me a logout on the server INSERT INTO Angebot ( Nummer , Variante , Bearbeiter , Datum , Geld , Kurs , Language , Flag , AngebotStatus , TStatus ) VALUES ( 90360 , 3 , 'Admin' , DEFAULT , 'CPI_BE-D' , 1 , 'CPI_AG-1' , 4 ,NULL, 59 ) The statment works fine on production, however i have played a backup from production to my laptop to test something and as soon as I add a record to the database my connection to the database is droped (the data is not added to the table). the error message I get is double, however I execute the statement only once. Msg 0, Level 11, State 0, Line 0 Fur den aktuellen Befehl ist ein schwerwiegender Fehler aufgetreten. Loschen Sie eventuelle Ergebnisse. ...Show All

©2008 Software Development Network