goldandwhite's Q&A profile
.NET Development How do you call methods inside an executable from another executable?
Is it possible in .net to reference .exe and call functions in the executable If so, how It seems you can only make references to .dll (class libs). I know it is possible in COM and preious versions of VS. It is so powerful, I can't believe it if it isn't possible yet under .NET. Visual Studio .NET 2002/2003 does not allow executables to be used as references, whereas Visual S ...Show All
Visual Studio Tools for Office Installed OutLook 2003 Add-in not available to "All Users"
I need the Add-In to be available to all users on a machine. I'm working from MSDN documents "Deploying Visual Studio 2005 Tools for Office Solution Using Windows Installer (Part 1 of 2) & (Part 2 of 2). I'm using the example in (Part 2 of 2), page 11 verbatim. /assemblyName="OutlookAddin.dll" /targetDir="[TARGETDIR]\" /solutionCodeGroupName=" MyCompanyName .OutlookAddin" /solutionCodeGroupDesc ...Show All
Smart Device Development EDB datadase in WinCE 5.0 smartphone
hi i want EDB database example programme for creating a database in .Vol extenstion and i want website for resources for EDB database in smartphone thanks thanks jason u r suggation was usefull ...Show All
Visual Studio 2008 (Pre-release) VB .net Issues?
Hi, I have been coding my WCF apps with C# for a long time. A friend of mine asked me to write a WCF app in VB .net. I wrote a very simple hello world program, everything seems to be perfect but when hosting the app i get the error message "Zero application end points defined ................" Is there anything that has to be done for coding WCF apps in VB .net Are there any similar problems when coding with VB .net for WCF ...Show All
.NET Development 32-bit ODBC in XP 64
32-bit ODBC drivers are in the registry under wow6432, but don't seem to be addressable. Am I missing something First, sorry for slow reply. When I run odbcad32.exe, the drivers show up fine. This wasn't as "Discoverable" as I would have liked, but thanks for reassuring me that it was worth investigating further. ...Show All
Windows Forms Adding Several Tables into a DataSet (WinForms)
Hi, I have a Table 'Doctor' (DoctorID,DoctorName) that I use to fill a single DataSet : DataSet DS = new DataSet(); DS = SelectDoctors(); dataGrid1.SetDataBinding( DS, "Doctor"); Then later on I need to use the 'Patient' table (PatientID,PatientName) and fill the ...Show All
SQL Server Sql Server Compatibility : Null Values in Identity Column
Hi all, I've a compatibility issue with an application wich was designed to work with sql server 6.5. Now, the application works fine in production with sql server 2000, but I can't configure my test server to reproduce the production behaviour. My problem is that the request send to the database by oledb, send null values in a column of type identity and i've an error with sql server 2000. ex : Consider that I've a table TES ...Show All
Visual Studio 2008 (Pre-release) Animate GradientStop in code behind
Hi. I have a simple code as follow: <Canvas> <Rectangle Width="100" Height="100"> <Rectangle.Fill> <LinearGradientBrush StartPoint="0.500000,0.130412" EndPoint="0.500000,1.826112"> <LinearGradientBrush.GradientStops> <GradientStop x:Name="g1" Offset="0.5" Color="Red" /> <GradientStop Color="Blue" /> ...Show All
Windows Forms How do I get a Winforms application embedded in an html page to bind to 1.1 Framework
I have a winforms application that is embedded in an html page with an object tag [1]. Our application works correctly under 1.1, but not 2.0 (we get some interesting security exceptions around statics, so I would like to force it to run on the 1.1 Framework. I added the requiredRuntime element to the startup section of the webclient.dll.config file [2] and expected that it would be started against 1.1 Framework. However it still ...Show All
SQL Server Changing Database collation
I am trying to use DTS to change the collation of a database. I am using SQL 2000. The default is Case Insensitive, and I am trying to change one of the databases from Case Sensitive to Case Insensitive. I have created a new database with the proper collation, and I am trying to import all the database objects. I want end up with the exact same database with the collation the only thing that is changed. I have ...Show All
SQL Server SELECT permission denied on object
Hi, I'm trying to upgrade my SQL 2000 to 2005 and use it with a web site. I've copied the DB from a SQL 2000 server machine to a 2005 machine, attached the DB to the SQL server using the relative function in Management Studio, but I still continue to get the same error: [Microsoft][SQL Native Client][SQL Server]SELECT permission denied on object 'Users', database 'YouPlayIt', schema 'dbo'. using this query: SELECT UserId FROM USERS. Querying the ...Show All
Windows Forms Getting Output Debug screen messages to show on a listbox in windows form
Hi... How do I get output debug messages generated by the debug mode (ie. Start with debugging) If I can get them, I wish to display them to listbox that I have in the windows form I created. Is there a smarter way other than using the following : lstDebugMessage.Items.Add("Whatever is inside debug message"); Where lstDebugMessage is the listbox I generated in my windows form. Thanks for any ideas! Hrm... anyway I got the f ...Show All
.NET Development Memory limited device, needs to stream WebService results to File
I am trying to transfer a dataset from the server and insert it into SQLmobile on my PDA. As it currently is, my Webservice returns the dataset, the PDA recieves the results, then iterates through the dataset inserting them one at a time into its SQLServer2005mobile database. This works fine for datasets up to 100,000 but once i go over that limit the device runs out of memory as it tries to load the dataset into memory as it receives it f ...Show All
Windows Forms Unable to Reinstall / Uninstall an already Installed Application
Hello, I am having a problem getting a ClickOnce application running on a client's machine. It is an application that does not check for updates itself. In the beginning, I pushed a version out that works on both of my machines. When the client installed that, it didn't work because of my own fault (I checked and make sure it is my username before the application can be launched. :-D) After that, I did another build on fixing the probl ...Show All
SQL Server Design a Tree in a blank Report
I'm creating a report like a Tree structure. Area1 Total Modifications in Area1 Type1 Total Modifications in Type1 in area1 Sub Type1 Total Modifications in Sub Type1 in Type1 in area1 Sub Type2 Total Modifications in Sub Type2 in Type1 in area1 Typ ...Show All
