Software Development Network Logo
  • Visual C#
  • Windows Live
  • .NET Development
  • Visual Basic
  • Visual C++
  • Visual FoxPro
  • VS Team System
  • SQL Server
  • Game Technologies
  • Architecture
  • Microsoft ISV
  • Visual J#
  • Visual Studio
  • VS Express Editions
  • Windows Vista

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

Azazel4506

Member List

WhiteShadow
ukgam3r
s_clarke
leungant
PCr
BBBruce
AzureBell
Mark Ashton
Adner
saMug
ChrisKinsman
Daniel Mesias
Chanks
r3dw1ng
mrbenz
smsm_fcis
Deepak Sharma
ulyses
arhoads76
VickiM
Only Title

Azazel4506's Q&A profile

  • .NET Development Load and Save XML Page

    I have an access program that needs to download and load XML data from a site. The access program then imports this XML.  The code i'm using is below. It is having two problems (and i've tryed a few other syntaxes to save the file...). 1) The Save File dialog box is opening up, even tho i do pass in a path (and i've tried with both one \ and with \) and use FALSE for the second argument... 2) Even when i type the filename manually in the dialog box, it only gives options to save as HTML, not as XML. The file is only understood if it is XML. Note that if i manually use file-save as in the IE window that access has opened in the code abov ...Show All

  • SQL Server 2005 April CTP Install Failure

    SQL Server Setup could not conect to the database service for server configuration. The error was: [Microsoft}{SQL Native Client} Named Pipes Provider:  Could not open a connection to SQL Server [2].  Refer to server error logs and setup logs for more information. For details on how to view setup logs, see "How to View Setup Log File" in SQL Server Books Online. That is the error when attempting to install to W2003 running as a VPC2004 guest OS. The framework and VS Beta 2 are installed and functional. During setup I recall no configuration option that required the use of Named Pipes. For the most part I used all d ...Show All

  • Visual Studio Tools for Office VSTO 2003 - Office Standard vs Professional Edition

    I recently developed an application using VSTO 2003 / VB.NET.  The application has worked in our development environment and I have successfully deployed it on several machines.   However, when I attempted to deploy it to the client’s environment, the application ceased to operate.   The client’s machine has Office 2003 Standard Edition while our development environment has Office 2003 Professional Edition installed.   I have ready several articles and blogs which state that Office Professional Edition or stand-alone Word / Excel is required for VSTO applications to perform properly.   However, I was wondering if th ...Show All

  • SQL Server metadata driven SSIS package--table variable

    Is there anyone know if a simple SSIS package (moving data from source table to target table) or task can be called repeatedly using a variable that obtains value once a time from a metadata table containing only table names. Basically, I would like to pass in a table variable to the SSIS package or task to start the ETL for different tables. Thanks a lot! Oliver Patrick, Can you give some rough ideas as what you are using in terms of programming languages, scripts or SSIS tasks to create metadata driven SSIS packages. Many thanks! Oliver ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DX SDK size and satellite ISPs - It's too big!

    I recently relocated to a rural area where satellite is the only "broadband" available. Satellite providers restrict bandwidth, and I now find myself in the nightmarish situation of being unable to download the DirectX SDK because the file size is simply too large! So this post is on the form of a plea: please make the SDK available in smaller chunks (less than 200 MB would be good) so those of us deprived of unlimited Internet access won't also be deprived of the latest SDK releases! I'd be interested in hearing from others with similar bandwidth problems - perhaps if there are enough of us, the DirectX group will make the S ...Show All

  • Visual Basic Errors in RichTextBox.LoadFile

    I'm trying to load an existing RTF file into a Rich Text Box control. The documentation tells me the syntax should be RichTextBox.LoadFile(filename, filetype) For example: RichTextBox1.LoadFile("C:\Myfile.rtf", rtfRTF) When I enter this, Visual Basic displays the error message Compile error: Expected: = I've also tried something like Temp = RichTextBox1.LoadFile("C:\Myfile.rtf", rtfRTF) but then I get a type mismatch error. How can I get the Rich Text Box to load an RTF file I am using Visual Basic 6 SP5 on Windows ME. Please read the comments at the ...Show All

  • .NET Development filter xml element value or dump to dataset to filter?

    I have an xml file as the following: <company> <id>000</id> <address>foo</address> etc. </company> I need to search this file and get all values within the company element where the id equals a variable. I tried using (XmlTextReader.ReadString() = variable) which worked but it was too slow to be feasible. Is there a better way or should I just dump this file into a dataset and filter it there How slow is it what is your goal, and what is the current "speed" maybe we can speed it up. Loading it to a DataSet will probably take longer. ...Show All

  • SQL Server Executing a SSIS Package from an ASP.NET page.

    I am using the following code to try and execute a package from a asp.net page.  The server has both SQL, SSIS, IIS and ASP.NET on it.  The package runs fine from the SQL Management Studio.  The Execute result from the web page is 'Failure'.  My questions are: 1.  How do I catch errors to see exactly what is failing and why 2.  Is there a better way to execute a package using SSIS from asp.net Thanks, Nathan Sub ExecutePackage()    Dim pkg As New Package     Dim app As New Application     Dim pkgResults As DTSExecResult     ...Show All

  • Windows Forms Error when attempting to start terrarium for first time

    I'd gone through quite a few headaches getting this far.  I uninstalled 3 versions of the .NET framework that were installed on my system.  I installed the latest (from the MSDN website) framework and then installed the Terrarium client to play.  I'm running under Windows XP Pro on a Pentium III, 996 Mhz machine w/512M memory.  (It's a Dell&n ...Show All

  • .NET Development Nested queries to populate a DataSet using OdbcDataAdapter

    The class listed below uses a CSV file and OdbcDataAdapter object to populate a DataSet using a nested query BUT I keep getting an Access Violation exception when I call OdbcDataAdapter.Fill(). The message is: "Attempted to read or write protected memory. This is often an indication that other memory is corrupt." This is written in VS 2005 (.NET Framework 2.0). Are nested queries in the SelectCommand() method of the OdbcDataAdapter object not valid I essentially need to execute this SQL query to populate the DataSet with different pressure/temp combinations.  The query executes perfectly in Query Analyzer:  SELECT Value,Pressure ...Show All

  • Visual FoxPro Primary key + delete....

    General Design Question…. Suppose I have a table (Table1) with a primary key (PKId), if a user deletes a record then wants to add a record with the same PKId value there is a Primary key violation because the table has not yet Been packed. What is the best solution to this I have Considers the Following… 1) Indexing on PKId+!deleted() , but this would only solve the problem if he delete the record once, what happens if he deletes the second records he created The Delete will fail( ), or a primary key violation. 2) When deleting, replace the primary key with a value from a counter table. This will work but I ...Show All

  • Windows Forms Is it possible to have an array of backgroundworker thread running?

    Hi I am new to VB.Net and i have some doubt here that i hope to get some help on. I am wondering if an array of backgroundworker thread can be created. and where the array is stored arraylist or a container Please advice Regards Soon Lee It may help if you attach some code (or pseudo-code) of what you are doing so I can get a better idea of what you are doing (what container have you tried storing this in ).  Not sure about your question. However, I'll move your post to the correct forums as this is more of a winforms question now. Toddap_MS   ...Show All

  • Visual C++ compiler error while converting vs c++6 project to vs c++ 2005 ... error C2065: 'DWORD_PTR' : undeclared identifier

    After converting my c++6 solution into c++8, i got these errors from visual studio header files... Somebody knows how i could fix it Here's a list of what's been done : Output Window Compiling... StdAfx.cpp c:\program files (x86)\microsoft visual studio 8\vc\atlmfc\include\afxv_w32.h(228) : error C2065: 'DWORD_PTR' : undeclared identifier c:\program files (x86)\microsoft visual studio 8\vc\atlmfc\include\afxv_w32.h(228) : error C2143: syntax error : missing ';' before 'GetWindowThreadProcessId' c:\program files (x86)\microsoft visual studio 8\vc\atlmfc\include\atlconv.h(92) : error C2061: syntax erro ...Show All

  • Visual Studio Team System WorkItemLongTexts table

    How are the tables WorkItemAre and WorkItemLongTexts related I'm trying to create a report with all requirements of a project, containing some details about them and it must include their descriptions too (the only place a could found this information was on WorkItemLongTexts table, but I can't see how to make a join). Regards, Max ...Show All

  • Visual C++ porting code

    hello, Are there any examples of porting native posix c code to something that can be compiled on VS-05. Also, I get lot of errors like 1>d:\src\avilib.c(1826) : warning C4996: 'strerror' was declared deprecated thanks -mic VS2005 introduces security enhancements in the CRT which result in this warning. You can read more about how to use the new more secure CRT function replacements (or how to disable this warning) here: http://msdn2.microsoft.com/library/8ef0s5kh(en-us,vs.80).aspx Thanks, ...Show All

©2008 Software Development Network