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

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

meconnell

Member List

Eddie Garcia
Paul60
Amir Steta
joey022461
bpsmith
crbeckman
zybernau
DBFrustrater
Dietz
luca82
mliesmons
SaberWeb
Vladimir Chtepa
godzilla9
Ayooya
chionhhm
Anuradika
Jassim Rahma
alka_mehta
SSreejith
Only Title

meconnell's Q&A profile

  • .NET Development XML Nodes question

    I have an XML file that has this situation <node name="aaaa" something ="visual basic"> I am trying to figure out how to call the name or something node. When I work with XML in php I just do something like node-name or node-something When I do this in Visual Basic it doesn't work! It seems so simple if someone can just point me in the right direction I would be very greatful. Thanks The @ indicates you want to get the attribute. This should get the attribute href on element clashresult. node.SelectSingleNode("clashresult/@href") When you have multiple nodes of same name you use XmlNode.SelectNodes() instead of SelectSingleNode. http://msdn2.microsoft.com/en-us/library/hcebdtae.aspx It giv ...Show All

  • Visual Basic data grid view header text font size,back color problem

    data grid view header text font size,back color problem i have taken a grid and to that grid i am binding a table from the sql server database 2005 the tabel contains 25 columns my requirement is to each column header the header text font size should be different for example the column1 should have font size of 10 for example the column should have font size of 11 for example the column1 should have font size of 12 so ---- on and in the same way for column 1 header backcolor should be different for all the columns for example the column1 should have back color of green for example the column1 should have back color of red for example the column1 should have back color of yello so----on i am us ...Show All

  • Visual Basic Mysterious build error: Invalid argument. Length cannot be less than zero. Parameter name: length

    I'm one member of a team of about a dozen developers working on a very large solution (almost 200 projects) in Visual Basic .NET 2005 (Team Edition for Software Developers, with SP1 installed, using Visual SourceSafe). This solution has been in development for almost two years and I have been working on it for about a year and a half. Yesterday, while attempting to debug the solution in the IDE, the following error appeared, associated with the startup project: Invalid argument. Length cannot be less than zero. <my startup project name> Parameter name: length Clicking on the error doesn't open any code windows. I've taken the following steps in vain: Clean and rebuild the startup project Clean and rebuild the entire ...Show All

  • Smart Device Development Destroy a pair of key create by the function CryptGetUserKey

    Hi Friends I’m programming function to digital sign some file and to verify it. Now, I can sign and verify the signature but I have problems, because I’m using the funtion CryptGetUserKey, and this function create a pair of keys in the container... How can I erase it Because the CryptDestroyKey don’t destroy it.. destroy just te handle.... Best regards Geiza Hamazaki ...Show All

  • Visual FoxPro join confusion

    Hi All, I know i can manipulate data in a very long and strechted out process, but does any1 know of a the best join method to use for joining 10 tables Here is my situation. I have a table 'spec' it has 102 possible specialties. I then have 10 more tables that are named after the last 10 years (ie. 2005, 2004, 2003, ... , 1996). On each of the 10 year tables, there exists all the specialties of that year. I would like to join all 11 tables into one table. What join works the best. I broke it down here. 'spec' specialty spec1 spec2 spec3 . . . spec102 '2005' specialty     cnt spec1           10 spec3           15 spec96     ...Show All

  • .NET Development SqlDataReader throws NullReferenceException

    Is this a bug in the .NET 2.0 framework   Error Message: Object reference not set to an instance of an object. Stack Trace:    at System.Data.SqlClient.SqlDataReader.Bind(TdsParserStateObject stateObj)    at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)    at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)    at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)    a ...Show All

  • .NET Development Application using WebService

    Hi Have developed an application that is deployed using ClickOnce. Using WebService to access data on the server. All users tested running on the same machine, different logins and access rights, XP. When running from a user with administrator right everything works nicely. When running on a user with 'Limited account' right I get an exception: WebExceptionStatus.NameResolutionFailure. I have tried to change the users rights to 1) administrator and 2)added him to the group 'Power users' and my application runs fine. Setting the right back to 'Limited access' and the exception NameResolutinfailed is back. Is this problem due to some settings not properly set in ClickOnce Or, cannot users with 'Limited account' use Appl ...Show All

  • Visual Basic Debugger problem "The breakpoint will not currently be hit. No symbols have been loaded for this document

    There was a similar question posed on the C++ forum back in February to which I responded yesterday, but unfortunately, did not get a response. I am therefore putting this question in the VB forum. I have a VB 2005 project which is actually an add-in to Outlook 2003, which was I was able to debug fine until earlier this week. Now I cannot debug it at all - the message in the subject is displayed when I hover the mouse over the breakpoint which shows a yellow icon in place. Can anyone here tell me what I should do to correct this I have checked as you suggested, but all items are as they should be and I still see the same error. This worked in March, but stopped suddenly just before I raised the origi ...Show All

  • Visual Studio "Microsoft.Sdc.Tasks" project is not getting recognized

    I have created a web service with default settings. Copied the contents of the Install folder <from the GDN2[1].0.051004.000.zip file> onto a new folder called Build. I created a DevBuild.proj file with the following contents: < xml version = " 1.0 " encoding = " utf-8 " > < Project DefaultTargets = " Full " xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " > < Import Project = " Microsoft.Sdc.Tasks " ></ Import > < PropertyGroup > < BuildConfig > Debug </ BuildConfig > </ PropertyGroup > < Target Name = " Full " DependsOnTargets = " PrepareOutputFolder; ...Show All

  • SQL Server How to impletement this query in SSIS package

    Is there component in SSIS Package that I can use SQL Statement to update input dataset column based on a join query with a table update <input dataset> set column01 = -1 where column01 not in (select column from dbo.columnlist) and column01 <> -1 how could I impletement "Not in (select column from columnlist )" in a lookup component a lookup component can only use equal join.   I tried with 'enable memeory restriction' and modify the SQL Statement , replacing the '='  with '<>', but it prompts error when I debug, saying 'no match rows', but actually I do have match rows.     ...Show All

  • Visual Studio Team System Deleting a team project

    Hi, I tried using tfsdeleteproject command to delete a project. While deleting sharepoint site i got the following message: Couldnot connect to "http://<server_name>:17012/_vti_adm/admin.asmx" I ran the command again, but it says The project 'project_name' was not found on TFs Server. I tried creating a folder at http://<server_name>/reports/Pages/Folder.aspx with same name as that of the project i was trying to delete and reran the command but its still says that the project doesnt exist. Any solution Manasi I dont get any error message when I access " http://<server_name>:17012/_vti_adm/admin.asmx " through web browser. I get a pag ...Show All

  • SQL Server SQL Agent job fails running SSIS packages

    I need some help from you on a problem with SQL Server Agent that I believe many of you have experienced. When searching on the web I find some loose answers, but it would not solve my problems. So here is my story. 1. I have created two SSIS packages, package 1 and package 2. Both packages have a Execute SQL Task making a select sql statement to a table, say Customer in AdventureWorks DB. Package1 also makes a Execute Pacakge Task to Package 2. Both packages have protectionlevel property set to EncryptSensitiveWithUserKey 2. Then I created two package configuration files per package, one indirect xml configuration and one xml configuration file. The former I created an environment variable called pack1, which was specifying the path ...Show All

  • Software Development for Windows Vista how to use WorkflowRuntime.CreateWorkflow(XmlReader workflowDefinitionReader)

    hi everyone, there is orderWorkflows.dll, which contains 'workflow2.xoml','workflow2.layout' and 'workflow.xoml.cs'. the following code can run. //// Load the OrderWorkflows assembly             System.Reflection.Assembly asm =                 System.Reflection.Assembly.Load("OrderWorkflows");             // Get a reference to the System.Type for the OrderWorkflows.Workflow1             System.Type workflowType = asm.GetType("Microsoft.Samples.Workflow.OrderApplication.Workflow2"); &n ...Show All

  • Visual C++ Pls Help. Urgent!!

    Hi Everyone, Currently I having a problem on pass vb string into c dll. I sucessfully pass the string to the c dll and return the whole string with the codes below: c code to create dll char *ccDecrypt( char *str, char *ostr ){ return str ; } vb code Private Declare Function ccDecrypt _ Lib "C:\Documents and Settings\fpca\Desktop\dll\TestDLL\Release\TestDLL.dll" _ (ByRef str As String, _ ByRef ostr As String) As String Private Sub Command1_Click() Dim deCard As String txtDe.Text = ccDecrypt(txtEn.Text, deCard) End Sub But when i change the str in the c code to str[0], it throw me error... can anyone suggest how to solve this problem Hi, ...Show All

  • Visual Studio Express Editions Multithreading and and "encroachments"

    Hi, I'm developing on a new vb.net-application with the Visual Basic Express Edition . Now I have to use a backgroundworker for a longer process. But I'd like to keep the user up-to-date, what the application is currently doing. So the Backgroundworker has to change some labels in the main Form. Now the Question is: How to get the backgroundworker changing the label in another thread I know, that I have to use invoke and delegate , but I don't know, how. Can someone explain this to me Thanks, Greetings from Germany and Regards, Fabian " Because the backgroundworker uses another thread than the GUI (General User Interface) you are not allowed to write directly to the label. Instead you must make a display routine - Display, w ...Show All

©2008 Software Development Network