Software Development Network Logo
  • VS Team System
  • Architecture
  • Game Technologies
  • Microsoft ISV
  • .NET Development
  • Visual C++
  • Visual Studio
  • Visual Basic
  • Visual C#
  • Smart Device
  • Windows Forms
  • Windows Live
  • VS Express Editions
  • Visual FoxPro
  • SQL Server

Software Development Network >> sicily_Doc's Q&A profile

sicily_Doc

Member List

HarryKye
KarlHun
Shanknbake
dgVisioscopie
erb
Dysfunkt
Blue Einstein
joostvaningen
Josh Christie - MS
sunil2205
lordvr
Jason Gould
vikassony
umfoundation
Florin Raicu
penta
Jack Gamble
khalod_is
fredz28
satyap
Only Title

sicily_Doc's Q&A profile

  • Smart Device Development Creating e-Books.

    Hi Friends,     How to create e-Book using .NetCF. I am having pdf files. I want to convert it into ebooks.  I tried to convert all the pdf files into html and using the html viewer in opennetCF to view all the files in the PDA. But the size of the files are too large. Pls help me if there are any other controls for the web Browser or any other method to follow in creating the e-book. Its very urgent. Regards, Bala. Hi Richard,                    Thanks. my file size will grow up to 6mb.  I will try to implement using the ...Show All

  • Visual Studio Team System FXCOP dictionary-spelling

    How do I change spelling language in FxCop Language (Slovenian) is installed in Microsoft Proofing Tools as required, but it doesnt appeard in FxCop 1.35 Spelling Options (Dictionary Locale). I am otherwise satisfied with this product. Thanks. Try this: set your spelling locale to something other than English. Open the project file and manually correct the locale to Slovenian. <RuleExceptionsThreshold>10</RuleExceptionsThreshold> <Spelling Locale="fi" /> <VersionAware>False</VersionAware> We'll get this issue fixed in our next significant upd ...Show All

  • Smart Device Development How do I time out a socket.read attempt?

    I see MSDN indicate there is a .ReceiveTimeout value that should be available in the .Net Framework, however it doesn't look like there is any sFrameworker for the .Net Compact Framework.&synchronous do I go about making a synchronous read, but not sit there forever if nothing is received ...Show All

  • Visual Studio Express Editions Newb Question: Opening Forms inside main form

    I'm completely new to programming, my knowledge only goes as far as html, css and light php so I'm way in over my head. :) I've been through the tutorials but all the teach is how to pop open a form in a new window. I need it to display as though it was seamless. I've created Form1 and I want to use that as the main design of everything. What I need to do is open up all other forms created inside of Form1. For instance, if someone clicks on the button Add New Customer, it opens up ( inside the main window to the right) the New Customer Input box to start them on the process of adding information to the db. If they click "Pay on Account ...Show All

  • Visual Studio Team System Deleting Source Control

    How the heck do you delete items from Source Control (Source Control Explorer) if there is no Project associated to them If I right click on the node, select Delete, I get the error message: "TF10169: Unsupported pending change attempted on team project folder $/Test.  Use the Project Creation Wizard in Team Explorer to create a project or the DeleteTeamProject tool to delete one." I've used the DeleteTeamProject tool to delete the project but I still have the source control files out there. I'm having trouble deleting source code from repository. The Delete menu item is grayed although I a ...Show All

  • Windows Forms Debugging backgroundWorker thread..

    Hi, When i am debugging in the backgroundWorker thread in my MDI app, i get the following exception thrown when i step or presses F5. Illegal cross-thread operation However if im not debugging everything works fine..  Cheers,  /Fritte Hi, If you are still experiencing this problem, then please post a sample showing the repro steps on the MSDN Product&nbs ...Show All

  • Software Development for Windows Vista Rehosting the designer

    Hello, I've started to look at Lab 10 in the WF Beta 2 Hands on Labs, which demonstrates rehosting of the designer. This looks to be much the same as the Workflow Designer Control Technology Sample for Beta 1; there looks to be some refactoring of code, a few new features (zoom, save/load, run, compile, and a demonstration of how to load custom activitites into the toolbar), but the basic structure is very similar. I noticed in the Services.cs there is still the comment (persumably a left over from the Beta 1 Workflow Designer Control sample): ///NOTE THAT YOU WOULD NOT HAVE TO WRITE ALL THESE SERVICES, IN WWF BETA2 WE WILL PUSH THESE ...Show All

  • Windows Forms Problem with combobox

    Hi I have a datagridview that is databound to a table via a bindingsource and a DataGridViewComboBox column that is bound to a second table (both in the same dataset). I am dynamically adding the column to the grid.  Dim viewcol As New DataGridViewComboBoxColumnviewcol.DataSource = _dsEquivalents.Tables(1) viewcol.DataPropertyName = "ViewName" viewcol.ValueMember = "ViewTable" viewcol.DisplayMember = "ViewTable" viewcol.HeaderText = "View Name" viewcol.AutoComplete = False dgvEqu.Columns.Add(viewcol) BindingSource1.DataSource = m_dsEquivalents BindingSource1.DataMember = m_dsEquivalents.Tables(0).Table ...Show All

  • SQL Server What Data Mining tasks can be automated and scheduled via Integration Services Packages?

    Hi, all here, Would please any expert here give me any guidance about what Data Mining tasks can be automated and scheduled via Integration Services Packages Also, If we automated the tasks, can we also automatically save the results of the tasks somewhere Like if we automate assessing the accuracy of a mining model, then we wanna know the mining model accuracy later, therefore, we need to save all these results from the automated actions. Is it possible to realize this Thanks a lot in advance for any guidance and help for this. With best regards, Yours sincerely, Hello, Helen An Integration Services package may contain va ...Show All

  • Windows Forms What's the Windows Form Equivalent to the ASP Drop down list

    I want to download  a list of names and reference numbers, display the names to the User, and from his selection read the associated reference number, but I can't see the Windows Form to do this. I'm missing something pretty basic and deserve contempt, but would appreicate being enlightened. Thanks in advance. Following you suggestion of a binding problem, I re-configured the data adapter and dataset and now everything is working fine. I don't know what it was that I changed that rectified the problem. Thanks for the direction ...Show All

  • Visual Studio Express Editions Problem in installation

    Hello guys !! I am having problem when I try to install C# express 2005. The setup crashes and I get message of send error report to microsoft.In details I found out one sile "csscenario.dll" missing. Please help me in solving this problem Thanks in advance. Have you tried downloading full CD image of that http://msdn.microsoft.com/vstudio/express/support/install/ After you have downloaded that you can try mount it with http://download.microsoft.com/download/7/b/6/7b6abd84-7841-4978-96f5-bd58df02efa2/winxpvirtualcdcontrolpanel_21.exe or Daemon Tools (I would check the install boxes VERY CAREFULLY to avoid adware) ...Show All

  • Visual Studio Express Editions Loop through numericUpDown controls

    Hi again, I have a series of numericUpdown controls on my winform which I need to disable if the value is 0. I have this code. private void DisableNums() { foreach ( NumericUpDown numControls in amountPanel.Controls) if (numControls.Value == 0) { numControls.Enabled = false ; } } This works fine if I only have numericUpDown controls on the amountPanel but throws an error if it comes up against any other control type. There must be a way that I can only loop through the numericUpDown controls. Any help would be very much appreciated. Thanks in advance ...Show All

  • Visual Studio MsBuild & VCBuild task setting /useenv

    I'm replacing our Nant scripts with MSBuild for building all our projects. We rely on LIB & INCLUDE being set in the environment when building VC projects. When building these projects via the MsBuild task (i.e. building the solution), vcbuild gets invoked without the /useenv parameter, so the environment gets ignored. The VCBuild task doesn't include a Useenv property either. Is there a sneaky way to do this For now I can work around it by using the Exec task to invoke VCBuild directly, but it would be nice to write: < Project DefaultTargets = " build " xmlns = " http://schemas.microsoft.com/developer/msbuild/2003 " > & ...Show All

  • Visual C++ Attemp to use MSIL code from this assembly...

    I have a C/WIN32 program that I have "transformed" into "C++" and build with /CLR. Everything compiled ok - exept from some warning about: warning LNK4248: unresolved typeref token (01000011) for '_IMAGELIST'; image may not run warning LNK4248: unresolved typeref token (01000011) for '_TREEITEM'; image may not run But when I run my program I got the error : "Attemp to use MSIL code from this assembly during native code initialization. This indicates a bug in your application. It is most likely the result og calling an MSIL-compiled (/clr) function from a native constructor or from DLLMain" Does anyone have any tip what may be wrong ...Show All

  • Visual Basic Visual Basic + Java + Access

    To All, I am researching a probable upcoming project. I am likely to need to refactor an existing MS Access application into one that includes VB and Java sections. Since this is a refactor of an existing (and running) application, I prefer to do it in sections over a period of time. Eventually no Access will be left and all of it will be VB and Java. The data will be ported into Oracle. The application is not trivial and it has grown to exceed Access's capabilities. My question is - what tricks exist that can allow these three languages to call each other. I have never done anything like this before. Am I stuck with components or JNI ...Show All

©2008 Software Development Network