How can I generate a class diagram and other related modeling diagrams from source code ?
I am open to any tool (Eclipse plug-in etc) but does Netbeans has a plugin for it too?
I'm trying to load external data to my entyity.
DataServiceCollection<products> products = new DataServiceCollection<products>();
var adapter = new OleDbDataAdapter("SELECT * FROM [products$]", "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=d:\\products.xlsx;Extended Properties=\"Excel 12.0;HDR=YES;\"");
DataSet ds = new DataSet();
adapter.Fill(ds, "excell");
products.Load(????);
Can anyone help ?
Is there an easy way to update the data source for multiple pivot tables on a single Excel sheet at the same time?
All of the pivot tables reference the same named range, but I need to create a second worksheet that has the same pivot tables, but accessing a different named range.
Ideally I would like to be able to do some kind of search and replace operation (like you can do on formulae), rather than updating each individual pivot table by hand.
Any suggestions?
I am writing a C wrapper an would like to use a typedef aquivalent to define some types which should be valid in quite a lot of source files. Those "types" are just different aliases to [u]int16/32/64_t, but are useful to distinguish function parameters.
One could use using MyId=System.Int32;, but this needs to be redeclared in every file as far as I see... Is there a better way?
Hi There!
I have some reports developed using Crystal Reports 12 and I want version it using Visual Source Safe but I don't use Visual Studio. Is there a way I can do it without VS or do I have to install VS in order to version my CR reports?
Thanks!
I'm writing an open source software that is licensed under the GPL. Now I'm offering that other users can translate the software, starting from an english translation I made by myself. What license or range of license may be best for translation of text strings, dialogs, etc.? As GPL is a software license, I thought about a Creative Commons license. The goal is so that all translations remain free and may be updated by other translators.
Hi,
I don't see a LINQ option when picking a data source for a grid view - any ideas?
I just upgraded to Visual Web Developer 2010. I see the other options like SQL etc.
Thanks!
I downloaded pidgin source code and i don't know where to start from ..
Can any one pls ;) point the right way to understand that program ?
and also tell how to compile it on windows system .. it has manuals to compile on a Linux system but not windows .
Can someone explain the syntax in the source attribute here? What the heck is "pack:" and "application:" and why 3 commas? I couldn't find any decent desciptions.
there is a form where a user enters a date in [Text4]
when users clicks OK, the following code is run:
DoCmd.OpenReport "All_Ones", acViewPreview
the following is the control source of a textbox on the report
[Forms]![By Number]![Text4]
for some reason after the report is open, it just sayd #?nameor something like that, meaning that it is an invalid parameter.
what am i doing wrong?
Does anyone know a complete JSF 2.0 sample or open source application using JSF 2.0 features (Facelets, Composite Component, Templates, Ajax, Navigation, etc.). Would be a good reference to learn some best practices. I'm talking about an application that you would also use in production. The only ones I know are ScrumToys and PetCatalog which are delivered with NetBeans 6.9 and are "tutorial-like" applications.
I'm looking for any open source registry / file system monitoring tool with a hooking driver (like procmon and few other tools), compatible with latest OS. No specific language preference. Any info would be appreciated.
I need write a live messenger plugin which periodically read messages from a remote http server, and then change my signature(the short message after my name) accordingly.
Can anyone point me to any open source project or materials where I can get started?
Thanks.
I am creating some JSON on the fly, serializing it and saving it to the DB.
To run it, i create a script element, and load it that way.
Is there a way to load the script source to a textarea?
Hi,
i'm new user about this interesting forum!
I want start develop application for android and before starting i want learn about some android feature...
the first android feature is how to correlate finger motion in screen with java...
Exist some source code that show how to realize application to draw with finger in android screen?
can you suggest me where donwload it?
thanks
Hi all,
I just wanted to make a quick check,does any of you know of an open source c# code to present wave form (graphically) from a byte array?
Thank you!
i need to download page from source code..for example
Cellini's Italian Restaurant
i want to download the "/len/aaproximat...php"..i didnt find the suitable regex for it..and i need to download that page..can anyone help?
im using vb.net
I'm looking for a remote desktop client that works as a webapp, similar to Citrix or WebEx. Are there any open-source projects that do this? Need to mainly to be able to access Windows machines using a regular browser.
Thanks!
I'm currently including my AppDelegate.h and all of my category headers into every one of my source files using the MyApp_Prefix.pch prefix header, instead of manually #importing them only where they are used. The category methods and lots of compiler #define's in my app delegate are used in lots of places in my code.
Is there any down side to this? Is it just that compilation will take longer?