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

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

ReneeC

Member List

David N.4117
Steven Heathcock
netpicker9
nbrege
Victor Hadianto
Artie Sluka
incendy
Jane2006
rbennet8
unsigned int
Tryst
INTPnerd
DSA_Dietmar
sachhha
Jodie West
Jim Wooley
NotTaken
Jeronimo215697
Smockmakker
Seriema
Only Title

ReneeC's Q&A profile

  • Visual Basic Looping

    How do I setup a for next loop array to open files if I don`t know how many files are in the folder IO.Searchoption.TopDirectoryOnly. SearchOption is not a member of IO This is the error that I am getting,I have played around with it and can`t seem to figure it out. ...Show All

  • Visual Studio Team System CTP5 - Can't connect to a database

    I recently installed CTP5 and created a SQL Server 2005 project, but it does not prompt for a database to connect to (like it did in CTP4). When i select Tools\Connect to Database from the menu. I get a message pop-up stating "Package load failure - Package 'Visual Studio Explorers and Designers Package' has failed to load properly". I get the same message when I try to open a new query connection. Any help is appreciated. Ed As far as I know I only removed the prior version of VSTE DB and then installed CTP5. How can I tell if the performance update is installed - it doesn't show up in the Control Panel to remove. Thanks, Ed ...Show All

  • Visual FoxPro MySQL and VFP

    Hi experts. I have a MySQL database. I operate with them using syntax like SQL(sqlhandle, "select * from...") I copy them into cursor and than operate with a cursor. Is there a simplier way how to work with them Thanks in an advice. I cannot accept this as an awnser. I don't want to download any MSSQL Server. I just want free SQL database which is fast. Don't know if the speed problem is due it is a MySQL database or casue it is free of charge. I don't believe the gives such as slow database for free. Noone will subscribe it and noone will buy their products. No matter which SQL database will I use, vhether MSSQL or MySQL, but it has to by faster than this one. I have changed some provi ...Show All

  • Windows Forms Display text in an ownerdrawn listview - again.

    Hello, The concept goes like this: The user selct n number of rows in a listview, and then right-click the mouse, and select an item from the popup menu. How many items - and which one - the user selected, and the text to display in the columns 1, 2 and 3, is determined in the sub shown below. So far, so good.The problem is that I can't see a way to get the text into the listview, and I don't know what triggers the DrawItem event in this case - control is Ownerdrawn. I would be grateful for some hint to point me into the right direction in this matter. Thanks for your help! -- Doffen Private Sub SettInnHToolStripMenuItem_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SettInnHTool ...Show All

  • Visual Basic how to set DropDownList first record is blank?

    How to set DropDownList first record is blank I know one solution is add one blank record in database, but cannot use this method, anymore solution thanks!! The datsource for the dropdown is a dataset. After you have done populated the dataset, probably using a tableadapter you have a dataset. This dataset comprises of datatables which comprise of datarows. You can simply add a row to the datatable. Ds.tables(0).rows.add(<Values>) Where ds is the dataset, which contains only 1 table. This will add a row to the datatable - which is being used for the binding. ...Show All

  • Visual Studio Team System is it possible to run N itrations in unit tests?

    1.is it possible to run N itrations in unit tests and i want to run unit test up to N times for that i want to set itrations in my test .... is it possible to run N itrations in unit tests.............. 2.When i am running the unit scrits its working fine .... when i am trying to add that perticular script into senario and i am trying to run that when it starts runs its giving error like "object variable or with block variable not set"...... what could be the problem .... 3.is it possible to run only constuctor of unit test when we are doing wram up i need to run only constuctor part in unit test when it is wrap up the scenario .............................how it is possible pls let me know ............weather we can do or ...Show All

  • Windows Forms Key values in a combo box

    Using vs 2005 with access 2003 Table1=CustCode,CustProv. Table2=ProvCode,ProvDesc. CustProv contains the ProvCode. Using a dataset , Binding Navigator and table1bindingsource and table2bindingsource. I want to show the ProvDesc(s) in a combobox, and when selected I want to update the CustProv with the respective ProvCode. Since I am using the dataset and a navigator there doesn't seem to be any code where I can change them. Can anyone show me how to do this Hi Can-Ann Look combobox control properties: DataSource , DisplayMember and ValueMember . I thing that those field should be something like this: (DataBindings) SelectedItem : none SelectedValue : table1bindingso ...Show All

  • Smart Device Development POSDM

    How to use share printer to print through POS.NET framework. I have write some code to print using POS.NET framework. It can print normal if the printer is connected directly. But it is not work if using a share printer to print. I am using Epson TM88III thermal printer. Thank You What's "posdm" and how it's relevant to devices and Compact Framework   I’m merging your other question as I believe they both are off topic unless you can clarify relevance to the Compact Framework. ...Show All

  • Visual Basic Writing into EventLog using a Windows service

    Hi all. I am developing an VB.Net application (Ver 1.1 in VS.Net 2003). The Objective is to Log the current System status( CPU usage) to the Event log. Send the same System status to a WebService and receive a integer value. I have created a Windows service which works fine if I write a static value or system time. But if I write a CPU usage value it does not write. Debugging did show that the line objEventLog.WriteEntry getting executed. But no use. It does not log in the EventLog. The code I am using for Timer_Elapsed is Private Sub Timer1_Elapsed( ByVal sender As System.Object, ByVal e As System.Timers.ElapsedEventArgs) Handles Timer1.Elapsed If ( Not EventLog.Exists("Kiosk Log")) Then EventL ...Show All

  • SQL Server Retrieve the version of SQL Server from within a user defined function

    EXEC master . dbo . xp_msver ProductVersion can be used to return the server version in a resultset.  I need this to do some conditional coding between varchar and varchar(max) in a UDF, so size of the text I return must be different between the SQL2000 and SQL2005. I cant call an xp_ that returns a resultset within a UDF can I, so how can I get the SQL version You can use @@Version within a user defined function. I tested the following code in both SQL 2000 and SQL 2005. Hope this helps. Alter Function dbo . VersionNumber () Returns int As Begin Declare @Temp VarChar ( 1000 ) Declare @Output Int Select @Temp = @@Version Set @Temp = Replace (Left( @Temp , Cha ...Show All

  • Visual Studio Execute target when (core)compile will execute

    Hello, there must be a simple solution for this silly question, yet I cannot find it. I want to execute a target before compilation only when compilation will occur, i e when corecompile has been determined to execute (ie dependencies have been updated) then I want my target to execute before compilation. If corecompile does not run, I do not want my target to run either. So, is there a hook before corecompile is run after it has been determined that it will run Or is there a simple property that expresses the inputs / outputs used so that I can use the same dependencies /mawi I'd just like to throw my support behind this idea. I too would like to see a generic mechanism for this. I'm running code gener ...Show All

  • Smart Device Development Why it takes lot of time to move from one page to another page?

    Can any one tell why both CF1.0 and CF2.0 takes lot of time to move from one form to another form (to load a form) in emulators. Is there any idea to speed up this. I am already thinking reducing forms and keeping all in single form and to use visible true or false according to the selected option. But can one tell me any other way to speed up my application. I will be really happy If you can make suggestion to make speed up with the same number forms. Thanks in Advance, without knowing how your application is built, it's very hard to help you here. are you doing a lot of data loading on form show are you rebuilding the form every time you show it have you set performance timers in order ...Show All

  • Visual C++ How to fix Incremental Link Error?

    Hi all, I implemented a basic client application. It communicates with server and works properly. Building processes succeed just by giving the following warning: LINK : D:\DOC\Visual Studio 2005\Projects\Client01\Debug/Client01.exe not found or not built by the last incremental link; performing full link This warning occurs when building/rebuilding the project after cleaning the intermediate and output files. If the project is once built then this warning is not given. In the solution, I have only one project consisting of the following files(I also added wsock32.lib to Project configuration as the Linker Input in order to use the socket functions): main.cpp MyMessage.h MyMessage.cpp MyConnection.h MyCon ...Show All

  • Visual C++ Class View is not updated automatically

    I've created a plain C++ win32 project with Visual Studio 2005. And as I add new functions or variables, the class view doesn't get updated automatically. Only way to get class view populated with newly added functions or variables is to restart VS. But every thing works fine with C# projects. ONLY with C++ projects. I've tried to reproduce this on other machines at my work and on my laptop, but I have failed to reproduce the same problems. I am seeing this problem only on my pc at home. I've also tried re-installing XP SP2 and VS2005 with nothing else installed to see if some other program is causing this to happen. But still same problems with the class view. Also, I am seeing the same problem on Windows Vista RC2. Could ...Show All

  • SQL Server Fresh SQL 2000 to SP4 gives error

    Hi, I'm trying to Service Pack 4 a fresh installation of SQL 2000 (a named instance called 'SQLSERVER2000') and get the error "Installation of the Microsoft Full-Text Search Engine package failed. (-2147467259) 0x80004005 Unspecified Error" towards the end of the process thus I cannot service Pack my fresh installation of SQL 2000. I have done this many times before on other machines, but its not working for me this time. At http://www.dbforums.com/ ( http://www.dbforums.com/showthread.php t=1198047 ) someone ran into this problem and mentioned to re-install Microsoft Full-Text Search. I have followed the article http://support.microsoft.com/kb/827449 but run into problems at step 2C. At step 2C it says to start the Microso ...Show All

©2008 Software Development Network