George Gombo?'s Q&A profile
Visual C++ visual c++ dll
just wana ask.. is there any dll file in visual c++ dir of the function "compile" i nid to use it so that in my application in vbnet i will be able to compile a .cpp file and generate those extension like what the visual c++ can generate... or is ther any ways of doing it currently i am doing a c++ compiler (sort of) in vbnet but the problem now is just the compiler thing.. (coz i wana generate all those extension like what visual c ...Show All
Smart Device Development encryption on WM 5
Hi all, I'm developing application that Send/Receive data to/from the server. I need to encrypt this data via AES encryption. my questions: 1. do WM5 CF2 app supports this kind of encryption 2. I didn’t deal with encryption in the past, where should I begin any ides, links, thoughts will be great J Oren. Yes CF2 supports AES. You may use System.Security.Cryptography.RijndaelManag ...Show All
.NET Development [C#][Remoting]
Hello, I'm developping a client/server application. This is the code that connects the client to the server. TcpChannel channel = new TcpChannel(); ChannelServices.RegisterChannel(channel, true); this.CDD.remoteOperation = (RemotingInterfaces.IRemoteOperation)Activator.GetObject( typeof(RemotingInterfaces.IRemoteOperation) ...Show All
Windows Forms Combining ClickOnce and MSI Installer
Hi, I have been surprised by the gap there is between ClickOnce and MSI. And I need to solve this. The scenario is this: Install a windows form application on a client (registry values, files, folder creation) and use ClickOnce to just update the application. Any GOOD documents about it Thanks!!! Hi... thanks for the response. What I mean is that the msi will create registry values, and folders, and by using ClickOnce the a ...Show All
Visual Studio Express Editions starting another application with parameters
Hi there.. i want to start an application which name and path is stored in my.settings. so i use Process.Start(My.Settings.pfadname) when i execute my program and the filename in my.settings contains any command-line-parameters, vb tells me that the file doesnt exist.. so how can i make the programm start any other app using parameters Greetings Jan "JeriC" Eric Protected Sub CreateProcess( ByRef Filespec ...Show All
Visual Basic Print directly to the printer
Dear all...^^. I have a program needs to print directly to a Zebra TLP 2844-Z barcode printer. I tried the codes in http://support.microsoft.com/ scid=kb;EN-US;322090, but an error occurred when i run it, as follows: A call to PInvoke function 'test!test.RawPrinterHelper::OpenPrinter' has unbalanced the stack. This is likely because the managed PInvoke signature does not match the unmanaged target signature. Check that the calling conve ...Show All
Visual Studio Team System FileNotFoundException during test run - (after 500+ iterations)
hi all, Hoping someone can help me out here. I have a test that is data driven and sets the parameter from a database. There is 3785 entries I want to run through. e.g. http://somesite.com.au/Somepage.aspx param={{Database.View.Column}} The test starts up fine and runs fine for between 500 - 700 iterations but then aborts with the error below: Warning: Test Run deployment issue: Failed to get the file for deployment item 'C:\V ...Show All
Visual Studio Team System Check-in policy of version control
How to restrict developers to write Comment when he/she check-in the code It seems there is no way to configure this Thanks! You will have to write your own check-in policy. You can find a checkin policy to do it on James Manning's blog. http://blogs.msdn.com/jmanning/archive/2006/01/21/515858.aspx An other sample is contained in the Visual Studio SDK ( http://msdn.microsoft.com/vstudio/extend ) Michael ...Show All
SQL Server SQL Server 2005 Reporting Serivces: XML Datasource problem
Hi, I'm just starting to use SQL Server 2005 Reporting services, and need to use an XMLdocument as the datasource. I will get the xml data from a webservice and then need to bind it to the report. Here is what I am doing: 1. I created a webservice at the following location: http://localhost/myWebDirectory/myService.asmx . this webservice has a method called " GetXMLDocument" that has 1 parameter (sql). This method uses the sql st ...Show All
Visual Basic Counting Letters in a string
Hello, I am trying to get VB to count how many A's B's C's D's E's etc... that are in a declared string, can someone tell me how to do this. thanks Ray RFeather[AT][NOSPAM]chstaffing.com Dim aCount As Integer = 0 Dim bCount As Integer = 0 Dim cCount As Integer = 0 Dim myString As String = "aabbccc" Dim i As Integer For i = 0 To m ...Show All
.NET Development doesn't actually set the value...
I was given the following code to set a value in an object from a string like "Header.field.str". It seems to function correctly but never sets the value. Any help is much appreciated... public static void SetValue( object baseObj, string fieldName, object value) { MemberInfo member = null ; //The current field/property matched Type typeCurr = baseObj.GetType(); //The current type of the field/prop ...Show All
Visual Basic Regions bug
Every day after I’ve been working in the IDE for a while, the collapsed #regions will not open with a single click on the plus sign anymore. Instead it takes 5 to 10 clicks to open them. Actually in different source code files it takes a different number of clicks in order to un-collapse a #region . (but always the same number of clicks within the same source code file) I sure hope this will be fixed soon. It's been doing this ...Show All
Visual C# Import xls file into dataset
Hi , I am solving this problem:I need import data in xls file into DataSet, but i dont know how.I think, it could be done like this: 1 .I save xls file like cvs or other txt file(with separators of data) and in C# i will use stream reader for get it into dataset. 2 .I save the xls file like xml file, and than i will read it into dataset.But how. 3 .I read into data set xls file. What is your opinion Are these options right Thanks for any a ...Show All
Windows Forms P/Invoke on SendInput question ?
I'm trying to figure out how to use P/Invoke on SendInput to simulate a mouse click on a button. The button is on a page i'm viewing, not on my own app. any ideas on how to do this or where i might be able to find code& ...Show All
Visual C++ Quick Console Problem
My output is directed to quick console as determined by Tools-->Options->General->Redirect all Console output to Quick Console Window. After the debug is finished which is very quick the quick console window disappears and I cannot find it anywhere. It is not amongst "Other Windows" in View-->other windows. The output is too quick and I can see only portions of each line while it runs. Please help. thanks. Add a "cin" ...Show All
