ndarwish's Q&A profile
Visual Studio Express Editions Command prompt from IDE?
I am VBE newbie. The help says I get to a command prompt form IDE via view\other windows\command window. "Other windows" gives me no "command window" choice. I am trying to compile/run the "hello world" example program from command prompt. I can get to a command prompt by using XP's start/run/cmd and cd'ing down to my project folder, but surely there is a easier way from from IDE. Yes, I know F5 compiles and runs from IDE. But I want to do it the old-fashioned way. hi, and i really appreciated the serious ppl when i see your posting, all wh ...Show All
Visual Basic Subscript out of range
This routine was copied from another one which works. However when this code is executed I get "9 Subscript out of range" error right after "charge = charge + m_FBI(intSubscript)" and "charge = charge + m_FBI(intSubscript)". When added it also causes my other routines to get the same error. Private m_FBI() As Currency Private Sub chkFBI_Click() On Error GoTo What_error MsgBox "START" intSubscript = selectCustomer.ListIndex MsgBox "intSubscript: " & intSubscript If Me.chkFBI = -1 Then MsgBox "IF" MsgBox "Charge: " & charge charge = c ...Show All
Architecture Orchestration Designer (Diagram)
while doing a business process diagram in Orchestration Designer, the "JOIN" shape doesnt allow inputs from different "DECIDE" shapes. If my logic requires connecting two Else outputs (from two different Decide blocks) how do I connect them without making them go through a Join shape (since Join wont allow it) ...Show All
Windows Live Developer Forums I cannot se my contacts spaces through msn.
Hello. I have a little problem. When I click on one of my contacts in msn to see their space I get to a blank page in IE. Does anyone know what the problem may be If I go to a space directly it works. This is very annoying! Is it a way to automatically open the spaces in Firefox instead Thanks for any answers... -efish <>< This is not the appropriate forum for questions about MSN Messenger. This forum is meant for discussion about the MetaWeblog API provided by MSN Spaces. ...Show All
SQL Server Dimension Processing Error
I am using following configuration Server:-SQL Server 2000 Database :-Oracle MSOLAP :-Cubes But while processing dimension We are getting follwing error Analysis Server Error: Processing error [Attempt to delete member that is in use] '27-08-2005' ; Time:3/17/2006 1:04:01 PM The mentioned date is already there in database ,Pl let me know what causing this error Thx and regards Pankaj Are you using Process Update for you dimension The situation could be that dimension table ( tables ) dont have a particular member anylonger. Analysis Server compares new copy of the di ...Show All
Audio and Video Development Great news, looking forward to make authoring tool
I am glad MS got involved in HD DVD as this is the technology that is based on already proven and decade tested DVD technology. I am looking forward to start making a HD authoring software once these things get some legs (like a way to play the iHD :-). (I am the author of DVD-lab PRO from www.mediachance.com ) Thanks to the iHD developers at MS to push HD DVD. It certainly did help to speed up the HD-DVD when MS got involved! HD-DVD is REAL and in the world today. It is a very compelling customer message. Let us know if you have questions about iHD. andrew ...Show All
SQL Server Enable/Disable Job with SMO
I am trying to enable/disable a job using a using smo in a script task with the following code Imports System.Object Imports Microsoft.SqlServer.Management.Common Imports Microsoft.SqlServer.Management.Smo Imports Microsoft.SqlServer.Management.Smo.Agent Imports Microsoft.SqlServer.Management.Smo.SqlSmoObject Imports Microsoft.SqlServer.Management.Smo.SmoObjectBase Imports Microsoft.SqlServer.Management.Smo.NamedSmoObject Imports Microsoft.SqlServer.Management.Smo.Agent.Job Imports Microsoft.SqlServer.Management.Smo.Agent.Jobserver Imports Microsoft.SqlServer.Management.Smo.Agent.AgentObjectBase Public Class ScriptMain &nb ...Show All
Windows Forms checkboxes
how can i make checkboxes false or true with one click (commandbutton). (i have more than 100 checkboxes ). jack. Dim Cnt As Control For Each Cnt In Me .Controls If Cnt. GetType .ToString = "System.Windows.Forms.CheckBox" Then CType (Cnt, System.Windows.Forms.CheckBox).Checked = Not ( CType (Cnt, System.Windows.Forms.CheckBox).Checked) End If Next BTW, I moved your question to this forum because you wrote in suggestions for the forums-software forum. ...Show All
Visual FoxPro Cursor help
Hi I am new to foxpro and have a question reguarding cursors. I am using VFP 9.0. I am working with a local VFP data base. As I understand it a cursor is a recordset created by a SQL statement that is stored in memory (or also on the hard drive if it is to big to fit into memory) on the client computer that the application is running on. I also understand if it uses the hard drive for temporary files that they will be deleted when the cursor is closed. I have tried this in the command windows and my table does not get updated when the tableupdate() function is called even though it returns .t. Here is the code I used: OPEN DAT ...Show All
SQL Server SSMS-EE: Creating and Using Stored Procedures - T-SQL Error Messages 111, 156, & 102
Hi all, I tried to use the SQL Server Management Studio-Express Edition to execute the following code statements: --- SQLQuery.sql--- USE testDB DECLARE @procID int DECLARE @procName varchar ( 20 ) DECLARE @procType varchar ( 20 ) CREATE PROC sp_getRecords AS SELECT * FROM Inventory CREATE PROC sp_insertRecord @procID int , @procName varchar ( 20 ), @procType varchar ( 20 ) AS INSERT INTO Inventory VALUES ( @procID , @procName , @procType ) CREATE PROC sp_deleteRecord @procID int AS DELETE FROM Inventory WHERE ID = @procID CREATE PROC sp_updateRecord @p ...Show All
Visual C# datagrid shows null
Hi, I had query data from an access table. Some of the field is empty. But once I put into datagrid, it shows null. May I know how to to get it show as blank Please help. change your datasource so that it replaces nulls with an empty string. If it's SQL, something like select COALESCE(t.MyColumn, '') from tblMine t COALESCE will select the value, and if it's null, move to the next option, which is an empty string. ...Show All
SQL Server Encrypted DB -- Restore Question
Hi, I have a DB in which I encrypt a few columns in a table. I am using a Symmetric key to encrypt and decrypt the data. When I take a back up of this DB and restore on another server ... my decryption doesn't work. I have dropped the master key and recreated it with same password and that didn't help either. What are the rules to follow when we restore a db on a different server that has encrypted data Thanks. You will need to open the master key in the new database once ,so that a copy of the same is saved in the master database. After that the decryption should wo ...Show All
Visual Basic Help me converting simple VB6 code to VB.net
Hi! This code is obviously VB6 code. Im desperately trying to get the width and height of an AVI file, and i found this code. This is the errors i getting. Maybe it will make things easier: error BC30802: 'Type' statements are no longer supported; use 'Structure' statements instead. error BC30678: 'End' statement not valid. error BC30828: 'As Any' is not supported in 'Declare' statements. error BC30002: Type 'AVIFILEINFO' is not defined. Can anyone help me out Private Const OF_SHARE_DENY_WRITE As Long = &H20 Private Type AVIFILEINFO dwMaxBytesPerSec As Long dwFlags As Long &nbs ...Show All
Visual C# How well does C# compare with C++?
Hello, I have a few questions about C# I was hoping someone might be able to answer for me. I am new to the world of programming, and I don't know if I should begin learning C# or C++. From a employment standpoint, C# seems to be a very good choice of language to learn. Where I work now, data driven web sites are becoming more in demand, as is work with SQL/databases. After I learned about C#, it seemed like the ideal language to learn since it seems to primarily deal with the development of web sites and window applications. On the other hand, from a hobby standpoint, I've always been more interested in developing backwards compatible Windo ...Show All
Software Development for Windows Vista the labs again: why aren't the new custom activities added to the toolbox?
Hello again. today i've resumed the hands on labs. on lab02, i've just created a new activity libary with one activity placed inside it. this activity is on a solution which also has a workflow project. the docs say that when i build the activity i'm supposed to see an ew category on the toolbox. well, it just happens that i don't see anything there! is this a bug i'm asking this because as i sai in previous posts, most of the things that these labs show don't work anymore... Have you tried to build that activity And remember the new activity only shows when you switch to the sequential workflow. ...Show All
