icnagy's Q&A profile
Visual Studio Express Editions Source Code is secured with vb 2005 express compiler ?
After i compiled my code into exe, is it easier or harder for some1 decode your source If you have Visual Studio, you can use Dotfuscator a Obfuscator for .NET. It basically makes it hard for prying eyes to determine what is happening within the code. ...Show All
Visual C++ CPP Compile
Hello! I didnt compile a .Cpp File With Vc++ Express :( How i compile .cpp files with VC express edition Ramazan AKTOLU wrote: Hello! I didnt compile a .Cpp File With Vc++ Express :( How i compile .cpp files with VC express edition I don't believe you can compile a standalone cpp file. You'd need to have a project to do that. ...Show All
Windows Forms 4 Problems need fixing ASAP
1. Drop down lists in the property editor of events available, IList items etc. are not alphabetized. They should be. IT's a major pain in the ass to have to search and search through a list of possibly hundreds looking for one entry. 2. I ...Show All
Visual Studio Team System WSS Plugin failed when creating a new project.
v 2005 beta 2. This is the log file.. Any Ideas 08/05/2005 02:30:18.812 | Module: ELeadServiceMediator | URL for eLead web service retrieved as " http://estacion15:8080/bisserver/EleadWebService.asmx " from the registration service | Completion time: 0 seconds 08/05/2005 02:30:19.328 | Module: ELeadServiceMediator | eLead web service proxy constructed | Completion time: 0,515625 seconds 08/05/2005 02:30:21.625 | Module: ELeadServiceMediator | T ...Show All
SQL Server error in transfer sql task
I am trying to transfer tables from a 2000 database to a 2005 database. I selected only the tables I wanted and when executing the task I get: Error: 0xC002F363 at Copy Tables, Transfer Sql Server Objects Task: Table "XXX" does not exist at the source. Task failed: Copy Tables I have the correct permisions on both (they are both dbo.) and I can create DataFlow tasks for each individual table, however there are about 50-75 table ...Show All
Visual C# how can I search for strings in HTML code??
Could somebody tell me how can I search HTML code of the web page downloaded on my local computer. I need to search for specific words in it. Thanks! Use the String.IndexOf method to find the index of a specific word. string htmlContent = GetHtmlContent(); string word = "microsoft"; int index = htmlContent.IndexOf( word ); while ( index != -1 ) { // TODO: Do something w ...Show All
SQL Server Logon Failure
I have W2003 server with Sql running. User is trying to open a report from the database. It was working fine. Message pops up stating: The report server cannot open a connection to the report server database. The logon failed. (rsReportServerDatabaseLogonFailed) Get Online Help Logon failure: unknown user name or bad password. Any help would be appreciated. i am also getting the same issue, if you got ...Show All
Visual Studio 2008 (Pre-release) Animate Enumeration Values (Feb CTP)
Hello everybody I'm using the Feb CTP of WinFX and I was wondering if I could animate the values of an enumeration. Acording this page, http://blogs.msdn.com/expression/articles/538345.aspx#1.4, it's seems to be possible by using Microsoft Expression Interactive Designer: "Support for animating enumeration values — for example, you can now animate Visibility of elements" So, how can I do this in XAML I've try this but it's not working as I don' ...Show All
Visual Studio Express Editions Visual Basic 2005 Express
Hi I can't create a new project in Visual Basic 2005 Express Edition ! ! The error message "The filename, directory name, or volume label syntax is incorrect. (Exception from HRESULT: 0x8007007B)" appears.... Does any know how to rectify the problem. Thanks!! Possibly this will help: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=183843&SiteID=1 ...Show All
SQL Server The proxy auto-configuration script could not be downloaded
Hi, I am trying to create a Merge Replication through Web synchronization , i used the publish server as distributor and i installed IIS on the same server. i tried the following URL https://mysite/replisapi.dll from publish server and it was ok. i got the following message: SQL Server WebSync ISAPI. from the subscriber server i checked the url https://mysite/replisapi.dll too and it was ok too and i got the following message: SQL S ...Show All
Windows Forms using a simple app from a network server...
I created a simple C# program (windows form app) in VS 2003. The app is essentially a form with a COM obj (microsoft calendar 11 active x), and a few text boxes to display the date as string. The program runs fine on my computer, other users computers here, and at home; the program and the required DLLs are in the same folder as the .exe. Now, that being said, I tried moving the program (including the DLLs) to a network folder (which is public i ...Show All
Windows Forms Dynamic Menu Based off A table
I am trying to create a menu that is created dynamically. The program will pull it out of a sql table and them build the menu. I need it to do it on the load of the main form. I found an article but it is wanting to use a click off the menu to create the sub items. It is using the following code: Public Sub Menu_Click( ByVal sender As Object , ByVal e As System.EventArgs) 'Instantiate our menu class variabl ...Show All
Windows Forms Asign data field to variable or otherwise use it
I sure hate to have to ask this--it's fundamental. But I've searched many hours trying to find the answer. And I've watched 4 hours of videos, too. In VB Express 2005, I've connected to an Access file and can load it to a grid on a form. I can do all the associated functions with the data that you would expect on the form. HOWEVER, I simply can't figure out how to "grab" a piece of data from a particular column (let alone row!) t ...Show All
Windows Forms Windows XP Buttons Style
How can I applying Windows XP Buttons Style on my windows form Are there any custom tools to do that ...Show All
Windows Forms Casting error in listbox
Casting error in listbox. I'm filling four listboxes, all from the Concepts table. The first is filled from form load, and works perfectly. Dim cdt As New ConceptsTableAdapter Dim C0DT As New dsHasbara.ConceptsDataTable cdt.FillByParentID(C0DT, 0) ...Show All
