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

Software Development Network >> 7cutlass1's Q&A profile

7cutlass1

Member List

salvatore
fmb91
Oblansky
JiriKrov
Trent Swanson
Saeed Tabrizi
Dan Radu
Anonymousxxx
Joe_D
BAMoreno
Andrew Robinson
sicily_Doc
Bysani
dnilepharaoh
Maciej Jedryszek
Sanjuz
Sachin Verma 2678
Eddy-kun
Rufus Littlefield - MSFT
firstspirit
Only Title

7cutlass1'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 di ...Show All

  • SQL Server Upgrade to Advanced Services; full-text indexing not working

    I upgraded to Sql Server Express 2005 w/Advanced Services, chose to install full-text indexing, rebooted, but appear to be unable to set up full-text indexing for a column.  After attaching the old mdf file and opening any table in either Management Studio Express or Visual C# Express, I don't get anything but a disabled (Is Full-text Indexed) property for the fields I want to set up.  I have verified that FullText Search service ...Show All

  • Visual Studio Tools for Office I cannot get Add-in object instance in Outlook VBScript

    Hi, I have developed with VSTO 2005 an Outlook COM Add-in and I want to use some functions of Add-in. But I get error messeages from Outlook and I cannot reache the functions or objects of Addin. Under my VSTO Project I have two files : frmCalendar (Windows form) and ThisApplication.vb : Imports Microsoft.Office.Core Imports Microsoft.Office.Interop.Outlook Imports Extensibility Imports System.Runtime.InteropServices ...Show All

  • Visual Basic Problem with Radio Buttons bound to Application Settings

    I am using group of radio buttons which are bound to user-scoped application settings. Problem is on runtime if I try to select some other radio button in the group, I have to actually click it twice to select it. It works fie if the radio button is not bound to settings. I tried using checkbox as well and faced similar problem. What is the reason for this lag in behavior and how can I fix this.   Thanks If you could show the ...Show All

  • Windows Forms Add Crystal to VB.Net Std

    I purchased VB.Net standard, mistakenly thinking that Crystal Reports was included. On discovering my error, I dug into my CD archives and came up with VB4 which includes Crystal V3 (Don't ask me where the VB6 CD went to - it's *much* too  ...Show All

  • Visual Studio Express Editions how to limite data displayed in a listbox?

    I have a listbox "listboxServices" and an ACCESS db table "services", when i set the listboxServices' databinding to the default dataset, the listbox will show all the data in the services table. Instead, I want to list all services that have a null value in "DatejobDone" column in table "services" (i.e. all pending services). please help. btw, I created a new query for table "services" --- ...Show All

  • SQL Server performance issue with trans log on tempdb?

    I am running in to a tricky issue, and am hoping someone here has seen something like this before. Here's the basic sequence I am working with. A temp table #A contains some number of rows (in this case, about 45k rows). 1. Create temp table #B and insert a subset of the rows in #A (in this case, the subset happens to be 100% of #A) 2. Perform a few dozen updates to #B, using data from permanent tables. 3. Update the rows in #A with #B, ...Show All

  • Visual C++ LNK problems continued

    Hard life in C++ lane, I'll tell you. Trying to compile code with unmanaged CAsyncSocket class I got LNK errors: Build Log     Build started: Project: SocketCplus4, Configuration: Release|Win32 Command Lines      Creating temporary file "c:\Documents and Settings\....\My Documents\Visual Studio 2005\Projects\SocketCplus4\SocketCplus4\Release\RSP00000E1064772.rsp" with contents [/OUT:"Release\SocketC ...Show All

  • Windows Forms remote server is unreachable or the request has timed out

    I've installed the Client and server applications to two different Windows 2000 machines and get the same error on both when I start the client "The remote server is unreachable or the request has timed out." I have SQL Server 2000 and sa& ...Show All

  • Visual Studio Team System Data loss on deployment

    The documentation mentions a configuration option on the build properties called "Allow data loss on incremental deployments." That setting is not there but it is sure important. I hope they get it in place soon. You'd better read those scripts that the system generates carefully and make sure you have a good and current backup before executing a script. Dale Yes, we're actively working on thi ...Show All

  • Visual C++ RegularExpressions namespace seems to have moved in VC 2005

    I am trying to create a program that uses the Regex class in namespace System::Text::RegularExpressions, but the compiler says it does not exist Error 1 error C2039: 'RegularExpressions' : is not a member of 'System::Text'  Did it move   Thanks The Regex class is still located in System::Text::RegularExpressions. Does your project have a reference to System.dll (Project Properti ...Show All

  • SQL Server System.Data from NETCF and System.Data from .NET

    Currently, I have a WinCE application which uses the System.Data from NetCF and System.Data.SqlserverCE from MSSQL Server 2005 Mobile Edition. Now, I'm trying to use the System.Data.Sqlclient but I can't seem to find it in my System.Data. I notice that there are different version which is one from NetCF and one from the MS.Net framework itself. Here's my question: Is it possible for me to use both System.Data or should I only choose one. This i ...Show All

  • Visual Basic What is the difference between Properties and functions

    with a property in .Net you can have parameters just like functions. What's the point of having both Apologies, I'm new to OO in .Net. In the most of class, there are two kinds of concepts: data and action. For example, if I have a class to represent a robot. The data portion of the class will be the robots legs, arms, heads, etc. the action portion will be move arms, move legs, etc. The main purpose of the property is to allow class ...Show All

  • Visual Studio Express Editions sub Main; file specified in vbp Form= does not appear to be present in project

    I'm getting an error "Error 1 'Sub Main' was not found in 'OEAPIDemo.frmFolders'. " compiling a project that was created from a vb6 project using the upgrade wizard. I have 2 questions: 1. There is no sub Main in the vb6 project. For the VB Express project, should I just create an empty sub Main Where does it belong within the sequence of files in the project, or does it matter    sub Main    end sub ...Show All

  • Windows Forms DatagirdComboBoxColumn+binding source problem

    Friends, I have my Datagridview bind to single table binding source. Which has two columns "Option domain" and "Default Option Value", This columns are Dropdown Combos and the datasource is from Lookup dataset having two tables "Option domains" and "Option Domains Value" (Parent-child). Based on the value of "Option domain" 1st column, "Default Option Value" combo will have filter list by that value. I tried the following: (A) I tried to b ...Show All

©2008 Software Development Network

powered by phorum