jad_salloum's Q&A profile
Visual C# GridView columns
Hi, I have a small problem with GridView. I have a DataTable with at least 5 columns, the size is variant. I want all columns except one in the DataTable to be visible. anyone know a workaround solution for this Set the size of the column you don't want to display to 0, then it isn't visable. But why do you want to add a invisable column. Store data somewhere else, it sounds like a bad design. ...Show All
Visual C++ help deciphering an error...
When I try to compile my application that is a console application dependent upon a setup file I recieve the following error: Linking... LIBCD.lib(wincrt0.obj) : error LNK2001: unresolved external symbol _WinMain@16 Debug/runga.exe : fatal error LNK1120: 1 unresolved externals Error executing link.exe. runga.exe - 2 error(s), 0 warning(s) Could anyone tell me what it means and suggest a possible solution Thanks Alan Homer HI, Sorry these posts haven't made too much sense. I will try again: What I actually have in a code that essentially consists of many subroutines. A few of them seem to have a main fun ...Show All
Windows Forms ClickOnce Failing on one machine after working previously
I'm hoping that someone can tell me how to "reset" a ClickOnce install on a user's machine as I cannot find any information on how to do this. I have an application that is published via ClickOnce, installed on about 20 machines and has been working for a month or so without issue. Today, every machine except one is working fine. The machine that is not working is getting the below error message which is preventing him from running the application. There have not been any recent new publishes for this application, but the user did have the application up and running prior to a power failure. In addition, this same error occurs whe ...Show All
Visual Basic Crystal Report is not showing reports
hello, i have designed a one page addressbook with one data table. i took one crystalreport and with crystal report viewer i have set it in form. now when i am playing program report form starts but there is no data at all. thanks. hi, CrystalReports are not supported in express edition but i saw a suggestion to turn around that http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=312899&SiteID=1 i didn't try it myself you said page is this a webform if so you can ask in http://forums.asp.net hope this helps ...Show All
Visual C++ Making dlls with Visual C++ Express Edition Beta 2
I am wondering if there is a way to make a dll in Beta 2. The radio buttons are greyed out. I do not have Beta 1. Is there a way I could make a dll in the win32 application I want to make a plugin for Maya. Though I do not want to pay money in order to do this. Is there an easy way to do this. Thanks. I went to View | Propert Manager, then Double Clicked on the Release|Win32 Heading. That opened up the Release Property Pages which has a Configuration Type entry under Project Defaults. That is where I could select a DLL. This was with the Release version, not Beta 2. ...Show All
Microsoft ISV Community Center Forums Installing BSC on SQL 2005 - SQL Server on the server does not meet requirement of SQL Server 2000 SP4
I am installing MOBSC on SQL 2005. I have installed the AS/2000 piviot table services (PTSFull) and now the installation program is getting to the point where is it validating the databse server. It is coming back with an error that the "SQL Server on the server does not meet requirement of SQL Server 2000 SP4" Is this happening because I installed the AS/2000 drivers How do i get past this roadblock in the installation Hi Mark, This issue has come up before in the ISV forums. Here are the URLs of a few of these discussions and the BSM team blog/FAQ. You can also search the forums to ...Show All
Smart Device Development Defragmented Internal Memory
Is there a tool that can be used to defragment internal memory. Not an SDCard. I have found lots of tools for that. But nothing for internal memory. Any odeas Thanks I don't think it's a memory fragmentation then. Memory fragmentation is only an issue if application was doing numerous allocations and deallocations. As soon as device resets, fragmentation is gone and you can start all over. I've no good answer as to why this particular device has a problem. Perhaps, OS image is corrupted, but that's not likely and should be detected by loader. You can try reflashing it if newer image is available. ...Show All
Visual Basic RTC Client API
Hi experts, Please help me in following code. i am not able to register my profile in SIP server. ============================ Private g_objRTCClient As RTCClient Private Sub Form_Load() Set g_objRTCClient = New RTCClient Call g_objRTCClient.Initialize ' ' Start the process by getting a profile. ' Dim pProv2 As IRTCClientProvisioning2 ' Receive the provisioning interface from the ' main client object. Set pProv2 = g_objRTCClient Call pProv2.GetProfile("123456", _ "123", _ & ...Show All
.NET Development Network Development Kit
Can anyone reccomend a good NDK for VB.NET 2005 The application will be multi-user and will include database access (server-side) as well as file transfer. Thanks for your comments. I've become so frustrated over this async/sync thing that I was in despair and looking for a quick fix (e.g. someone else has done all the work and I could just set a few params and call the functions!) Saying this, I don't blame it on the .NET framework and I'll have another go using the System.Net namespace. ...Show All
Windows Forms Deploying .NET 2.0 Application to Network?
I am trying to deploy a .NET 2.0 Application to the network. However, I have run into the Runtime Security Policy problem. The whole point of deploying to the network instead of to each user's machine was to decrease the amount of work involved in the initial deployment and any future deployments. I want to make the deployment process as easy as possible without leaving gaping security holes. I was wondering what the general consensus is on the best way to do this Is it easier to simply just deploy to each user's machine with an auto-update feature built into the application Or would it be better in the long run to digitally ...Show All
Smart Device Development GPS + Smartphone + C#
Hello, I would like to receive the GPS position with C# from my Bluetooth GPS device. I use VS 2005 with Mobile 5 Smartphone, QTek8310, and Bluetooth Slim GPS device. At the moment I found only some samples for PocketPC but I think that it will not work in the same way. Did someone no an example Thanks Chris Here's one - http://www.codeproject.com/netcf/WritingGPSApplications2.asp ...Show All
SQL Server Max number of cubes
Hi !! I wanna know how many cubes a virtual cube can reference. In SP3 documentation they say that can be up to 255. Only this can be more http://support.microsoft.com/default.aspx scid=/support/servicepacks/sql/2000/sp3readme.asp 5.1.5 Increased Limit for OLAP Cubes Referenced by a Virtual Cube Introduced in SP3 Virtual cubes can now reference up to 255 cubes. However, any virtual cube that references more than 64 cubes is not visible to any version of Microsoft PivotTableR Service released before SP3. The number looks to be correct. I can hardly imagine the scenario where ...Show All
.NET Development How to use DateTimePicker and then convert to number
The question is how do i use datetimepicker and then later convert into integer number. say i tell the user to put in his or her date of birth. Then i want to take that to convert into age. So if someone enter 11/11/1955 then my Dim age as integer age = dateofbirth. which right now is 11/11/1955. Well how do i make it so that age = 51 years old. Thnk you and i would like to have a next and previous on my apps. Back button to go back to the last form and next to go to the next form. So on the Form 1 there should be a button call next with code like: me.close (Form1) then open Form 2 and on the back button on Form 2 there should ...Show All
Smart Device Development CreatFileMapping Peoblem - ERROR_NOT_ENOUGH_MEMORY
I am working on ATMEL SAM9261 EK, WINCE 5.0 I need several FileMappings, it happened when I am doing so for a 30MB file. GetLastError() returns 8 (ERROR_NOT_ENOUGH_MEMORY). I checked the memory status, found that the memory reduces after each CreateFileMapping() for about the size of the file to be mapped. It seems unsual since the memory allocated should not be the amount for the whole file. Anyone can help Thanks. hRoadPtsFile = CreateFileForMapping( temp, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_RANDOM_ACCESS, 0 ); hRoadPtsFileMap = CreateFi ...Show All
Visual FoxPro WinSock
I just tried Microsoft WinSock OLE Control 6.0 (SP4). It binds to a port and it goes into a LISTEN state but I cannot figure out how to unbind the connection. Close() method does not work, SendComplete() does not work either I do not know why Other methods do not seem to be relevant. Does anyone have any experience with WinSock Thanks. I don't have any experience with Winsock as I don't use it, but maybe these Wiki entries may be of help: http://fox.wikis.com/wc.dll Wiki~WinSockOCXSample http://fox.wikis.com/wc.dll Wiki~WinSockOCX~WIN_COM_API ...Show All
