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

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

obsid

Member List

testqh
english_d
Raja Prabu
MortyLode
jerfoo
Leon Tayson
jamba8
bfarr23
Louise Ege
Keith Chapman
Horst Klein
pomp
Sephiroth_
lebedinsky
gdylp
Chigrboy
TomJ72
wetcoloredarch
Lowell2002
ajay_dekavadiya
Only Title

obsid's Q&A profile

  • Visual Studio Express Editions Programming Sudoku

    Well I just bought teh book Programming Sudoku, and I ran into a few problems. When I saw that you needed Visual Studio 2005 I was upset, but tehn I read on and found out it says C# shouldnt have a problem so im using Microsoft Visual C# Express Edition. Ive gotten pretty far in the book, and its in the Code section where i ran into a few problems! Heres what the bok says to do, Public Class Form1 '---dimension of each cell in the grid--- Const CellWidth As Integer = 32 Const cellHeight As Integer = 32 And thats where I hit the problems! See I wrote that and i get build errors! Heres my Code using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.D ...Show All

  • SQL Server Enable and disable websync.log

    Hi, is there a way how to enable / disable logging on web merge synchronization into the file websync.log The file exists in the ISAPI folder, on some machines there are some messages, on others there is nothing. There are Timeout messages on the client during synchronization and we need to find where is the problem, if it is on the server side or if it is a network error or something else. Thanks, Pavel I dont know how you got into this situation, but here is what you can try: Check if you have this key in your registry: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\90\Replication\WebSyncLoggingOff Is this value 1 If it is, reset it to 0. Then do iisreset. That should solve yo ...Show All

  • Visual C# About Write App.config

    I use sample code with article Read/Write App.Config File with .NET 2.0 listed below         // Open App.Config of executable         System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);         // Add an Application Setting.         config.AppSettings.Settings.Add("ModificationDate", DateTime.Now.ToLongTimeString() + " ");         // Save the changes in App.config file.         config.Save(ConfigurationSaveMode.Modified); but When I run the programme, I do not see any ch ...Show All

  • Visual C++ COM DLL, regsvr32 and manifest - blech!

    I have a COM DLL that relies on MSVCR80.dll and when I try to register it with regsvr32.exe I get a "loadlibrary failed -2147220473" error.  If I create a regsvr32.exe.manifest file and place it with regsvr32.exe, then it works.  There has to be a better solution though.  I can't count on target PCs having regsvr32.exe.manifest installed (and I'd rather not install it if possible). Yeah it is a bit of a pain but this change to security in Windows is long over due IMO. In the long run I think it will be worth. Average users will be able to perform most activities (especially those that aren't admin activities) without opening up the whole of their OS to attack by running with an admin token. B ...Show All

  • SQL Server Update slow(5 Hrs, 14mil rows) on perm tables, however as part of SP using temp tables fast(45 mins 14mil rows)

    Greetings All ITEM1: Here is the statement :(Perm Tables) update jkk_AllLogic_Allocation1_Work set ExpAllocValue = a.ExpFinValue * (a.SalesFinValue / s.TotSalesValue) from jkk_AllLogic_Allocation1_Work a, jkk_SumOfSales2 s where a.ID = s.ID ITEM2 Here is the similar Statement(excerpt) from SP: /* Adjust Expense amount depending on sales ratio */ update #AllLogic_Allocation1 set ExpAllocValue = a.ExpFinValue * (a.SalesFinValue / s.TotSalesValue) from #AllLogic_Allocation1 a, #SumOfSales2 s where a.ID = s.ID The SP does a lot of things Update being the longest. QUESTION Why is ITEM1 taking 6 times longer to run than ITEM2. I am totally confus ...Show All

  • Visual C++ error LNK2001

    Hi, (I saw the post on same subject but it seems to be a little different. so I'll use some word from that post!) There is a project earlier written in VC++ 6.0.  I opened the same project in VS. NET 2005 and I am trying to compile.  The code compiles properly (with couple of warnings) but while linking I am getting unresolved external symbol errors like this: The linker seems to have problem with seeing .obj from files in program (which are in the debug directory). It doesn't seem that the /Zl switch or the /NODEFAULTLIB  are on. 1>Linking... 1>Utm.obj : error LNK2001: unresolved external symbol _RTC_Shutdown 1>Zone.obj : error LNK2001: unresolved external symbol _RTC_Shutdown 1>Zones.obj ...Show All

  • Windows Forms build and add help

    how can i build and add help file to my application using vs ...Show All

  • Visual Basic Remote Database in Client Machine?

    Hi all, We are developing client-based application in Visual Basic 2005 with backend SQL Server 2005 Express. We would like to know dsn-less connection string for this and also tell me what are all the support files is needed to install SQL Server 2005 Express database in our client machine (bascially this is useful to deploy this application in our client machine) Thanks Gops Sofist India Thanks for the solution. I followed the steps you mentioned and published it to a local disk folder. When I clicked on the Install button on the web page and click run on the set up dialog box, It gives me an error saying " An error occurred attempting to install Recorder Monitor". When I look at the details it says: An err ...Show All

  • Visual C++ Manifest files on VS 6 and VS 2005

    I'm porting several VS 6 apps to VS 2005. The way I got XP themes to work in the VS 6 apps was to embed a manifest file in the rc file. I understand that VS 2005 will automatically do this, but I need to mainatain backwards compatibility with VS 6 (large customer base, legacy libraries, etc., etc.). If I try to compile the VS 6 rc file, VS 2005 complains about duplicate MANIFESTs. If I set the VS 2005 environment to not embed a manifest, the app is not themed under XP. So my question is, how can I set up the source so I will have only one set of sources, and be able to compile under VS 6 or VS 2005, and get proper XP theming with both Please check the link Using WindowsXP Visual Styles ...Show All

  • SQL Server Simplest "Transfer SQL Server Objects Task" failure

    I'm perplexed and in need of a sanity check ... Instance of SQL2K5-SP1 on Server2003R2. Created two databases Test1 and Test2, create single 2-column table (tblTest)in Test1 with one row of data. Create SSIS package to transfer the table and its data to database Test2 using "Transfer Objects Task". Fails with error code 1073548784. I have tested for security issues and don't beleive these to be the cause: I have monster privelidges and can successfully use SSIS packages to execute CREATE TABLE etc. Have also tried most combinations of Task options (eg COPY ALL OBjects etc etc) Have tried this on three different servers: same results. This simple test is the result of distilling down problems I'm having with SSIS ma ...Show All

  • SQL Server Slow Master package execution

    We have been working with SSIS for a while and we have not found a solution or a reason for this. We have a master package that calls 10 packages in sequential order. (as shown below). If we execute each one of the package separately the run in less than 2 minutes, but when we call them through the master package the execution time start increasing as follows: Child 1 (2 min), Child 2 (3 min),, Child 3 (4 min), Child 4 (6 min), Child 1 (7 min), and so on. The execute package task has the ExecutionOutOfProcess = false (when we set it equal to True even takes longer to execute, it was creating a dtsHost.exe process for each child and always remain in memory after the package finished executing). Can someone please provide a solution or a wo ...Show All

  • Visual C# Getting started with Business objects

    Hi guys, i m trying to get started with Business Objects, but i m a little bit lost here.. hope you guys can help me out. So far all the tutorials i read on the internet just show you how to make an "employee" or a "product" class, coding that is very simple, and i don’t have any problems using them and even binding them to Windows Forms using BindingLins<T>, etc... i ve been testing it out and it works fine. But right now i m trying to make something that have some relations, and i cant figure out how i am supposed to do it, what i m trying to do is a simple "Order" class that is related with a customer and some products... something like: Order Customer Products So, could you guys help me out with this ...Show All

  • Windows Forms Validate Me

    I'm not getting the validation behavior I'm expecting in my application. My form has a TabControl which, among other controls, contains a ComboBox. The form also contains a BindingNavigator control to work with the BindingSource. The ComboBox is bound to another binding source. The ComboBox has a DataSource from which its item collection is filled and its ValueMember and DisplayMember properties are set. The ComboBox DropDownStyle is set to DropDownList (so that the user must select from the list, and cannot enter anything else not in the list.) In the form’s class, I added a method to handle the ComboBox Validating event. In the form’s Save Button I call Me.Validate(). When I set the form's AutoValidation to EnableAll ...Show All

  • Visual C++ Regarding destruction

    Please have a look at below sample code: #include<iostream.h> class Test { public: void fun() { cout<<"In fun"<<endl; } Test() { cout<<"In const"<<endl; } ~Test() { cout<<"In dest"<<endl; } }; int main() { cout<<"Hello"<<endl; Test * t = new Test(); t->fun(); delete t; t->fun(); return 0; } In above I created object "t" and destroyed using delete operator. After destroying also I am able to call the function "fun".How it is possible output of above code : Hello In const In fun In dest In fun If i am able to call the function , than what actually destruction will do ...Show All

  • Visual Studio SP1 installtion issues

    On a machine with both VS 05 Express Edition and VS 05 Professional Edition… - If you carefully install the Profession SP1, everything works as expected. - If you carefully install the Express Edition SP1 things do not work as expected: o A) SP1 does not show as installed in express edition Help, About (but you can confirm it is installed by running SP1 installation again). o B) Express Edition SP1 does show as installed in the Professional edition Help, About (along with the Professional Edition SP1) See below. o C) If you uninstall Express SP1, it is removed from the Professional Edition Help About, which is what I have done. Any Thoughts Bob Below is copy from Professional 05 with b ...Show All

©2008 Software Development Network