Software Development Network Logo
  • Visual Basic
  • Audio and Video
  • SQL Server
  • Windows Vista
  • Visual C#
  • Windows Forms
  • Visual FoxPro
  • Microsoft ISV
  • Smart Devicet
  • Visual C++
  • .NET Development
  • Game Technologies
  • IE Development
  • SharePoint Products
  • Visual Studio

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

Bigmo

Member List

ALobpreis
Kryor
AlexBB
Anna Panna
MarlAtkins
GeorgeOu
dr.acv
Vikram747
raayu
Sarah71
paoloTheCool
Hormoz
ARKHAN
Johnny2006
donkaiser
Speedie
Zombie_002
mdrelyea
GuoHouzuo
Madhu K Nair
Only Title

Bigmo's Q&A profile

  • Smart Device Development developing application for Pocket PC (WM5)

    Hello I am an aspiring developer. I am currently trying to implement biometrics on a PDA with the Windows Mobile 5.0 platform. I wished to know if i can use the OpenCv Library(an intel library for face recognition applications) on the Windows Mobile 5.0 platform or not And if yes then could you kindly give me a brief procedure on how to build the library in the WM5 platform!! Although, I have tried it but i am encountering the following error : "LNK2019 : unresolved external....(opencv functions)" I am using Visual Studio 2005 (VC++). Hoping to get a reply at the earliest. Thank you so much. Best wishes Vidhan Srivastava ...Show All

  • Visual C# Creating an Excel in C# having 60 columns and 6000 Rows is taking 20 minutes

    Hi, I am trying to create an Excel file using C#. But I am facing a performance issue. It is taking about 20 minutes to create a 1.5 MB Excel file. And for the 20 minutes, the Server's CPU is being used 100%. I have also tried to optimize the logic. I am using only 2 major for loops. Is this normal for a generation of a huge (60 cols*6000rows) Excel spreadsheet having static data without any logic written to it, to take 20 mins of 100% CPU If so, please give me a link to such an online resource so that I can have some online material for my support. OR Is the code still needs to be optimised. Please help me out in fixing this issue. Thank you in advance. Thanks and Regards, Neelesh ...Show All

  • SQL Server Easy NOOB question

    Hi, I'm trying to pass a parameter into a procedure and not getting the results I want.  There's probably better ways to write the procedure, and if you want to suggest one, that's ok, but I'm most interested in just getting the stupid thing to work.  I'm trying to search a bit field in a table with the bit field being the parameter that isn't working.  In the code I include below, @category is the parameter that isn't working.  For this case, "category" is a bit field in a table and I want to be able to pass in different fields and find out if they're set.  When I use the parameter @category, the result isn't right.  If I hard code the field name (for the case below, "Compensation" is the DB field name), i ...Show All

  • Windows Forms datagridview cell selecting

    hi, i have a datagrigview with columnheader and rowheader . the default behaviour for the topleftcell click is to select all cells. is there a way to bypass this functionality ( none cells selected ) or to disable that cell thanks You can just make the mydatagridview.rowheadervisible = false; You wont have the row header, but will still have column headers, and that wont happen anymore, becasue there is no row header to click. Now if you want the rowheader and the column header both displayed, but do not want the full row to be selected when you click on the row header, you may be able to call mydatagridview.clear or it might be called clearselection. If that doesnt work the only thing i c ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Generating MipMaps

    Hi, When I create a texture using the code below the mip maps always come out as a solid color, how can i generate proper mip maps from the texture TextureImage = new Texture (device, ii.Width, ii.Height, 5 , Usage .None, format, Pool .Managed); SurfaceLoader .FromSurface(TextureImage.GetSurfaceLevel(0), textureTexture.GetSurfaceLevel(0), Filter .None, 0); TextureImage.GenerateMipSubLevels(); Thanks for any help, -Dave You are a victim of a common misunderstanding what GenerateMipSubLevels do. It is only there to create the mip maps for textures that are used as render target. And even then they need to create with special parameters. The function you are looking fo ...Show All

  • Windows Forms problem in axwebbrowser.navigate()

    Hi , I am using VS .NET 2003 on XP SP2 when I am using the axwebbrowser.navigate() in my code, its actually locking the file which I supply to it as URL. I am pasting the code below: ################################################################################### public string Xml { set { StreamWriter writer; object missing = System.Reflection.Missing.Value; missing = null; _fileName="C:\\XMLFiles\\"+Guid.NewGuid() + ".xml"; using (writer = new StreamWriter(_fileName, false)) { writer.Write(value); } _ctrlWeb.Navigate( _fileName, ref missing, ref missing, ref missing, ref missing ); if (_previousFileName.Length > 0) { File.Delete(_ ...Show All

  • Smart Device Development HELP! DataReceived/SerialPort Troubles

    I am building code for the PocketPC to interface with a chemical sensor to poll and report on chemical agents in the air. I am having a devil of a time getting the DataReceived event to pass content (through an Invoke) to the main thread. When I write an "N" to the device, it is supposed to send back the following string to the UI, which represents the chemical sensor types that are housed in the unit: "CO VOC H2S LEL OXY" When I send an "R" to the device, it is supposed to send the current readings for each of the sensors as a string that looks like this: "00000 00000 00000 00000 00207". I have all of this working successfully as a WIN32 application, but it doesn't port cleanly to the .NET 2 ...Show All

  • .NET Development Inheriting from DataTable

    I am trying to create a simple class that Inherits from the base Microsoft DataTable class. Something like this: Public Class WebsiteDataTable Inherits DataTable Public Sub New () Me .Columns.Add( "Url" ) Me .Columns.Add( "Result" ) Me .Columns.Add( "Response" , Type.GetType( "System.Int32" )) End Sub End Class My question is this: I dont want my users to be able to be able to do something like this: Dim dt As New WebsiteDataTable Dim dr As DataRow = dt.NewRow dt.Rows.Add(dr) Is there a way that I can "Hide" the NewRow method of the DataTable Class I want anyone who uses the WebsiteDataTable class to use the me ...Show All

  • Visual Basic How to disable the showing of user component in toolbox???

    Hi there, Does anybody know how to disable the showing of user component in toolbox Every time I open my vb 2005 project, my user-component will show in the toolbox, which spent lots of time Can I skip this step Would you please advise me how Thanks, Joseph You can turn it off globally via Tools.Options.Windows Forms.Designer, and turn off "AutoToolPopulate" under "Toolbox". I don't think there's a way to turn it off at the project level. Stephen ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Visual Stuido pro

    Is it really the case that I can not use my vs pro version with XNA If so does anyone know the reason for this It is currently not supported. VC# Express and VS Pro work seamlessly side by side. The initial focus of releasing XNA was to reach the broadest audience possible. Extending the free Visual C# Express was the best mechanism to do this. ...Show All

  • Software Development for Windows Vista Which service supports and controls the burning of optical media?

    Hey guys I was wondering as to which service supports and controls the burning of optical media I guess I am in simple terms looking at a replacement for imapi service. As of now unable to find anythin similar. Also wondering if I can use a third party utility to read the latest UDF format in a older operating system Thanks, Joshua PS: If I am in the wrong place, apologies :) Ok, here's the gory details for the new "Removable Storage Access" group policy that is now available in Windows Vista. Load gpedit.msc (requires elevation). Navigate to Local Computer Policy, Computer Configuration, Administrative Templates, System, Removable Storage Access Double click on the first sett ...Show All

  • Windows Forms Runtime Gridview without Datasource

    Hello All I wanted to create a gridview control on my asp.net site which does not have a data source. I want to provide a UI which is similar to the create table UI provide by the management studio of SQL Server 2005 I mean on the page load the gridview should provide a textbox (for entering column name), a drop down (for selecting the datatype) and two check boxes for primary key and allow null constraints. Any alternative other than gridview will also by helpful Can anyone help me with this Hey the code dsTableData.Table1.AddTable1Row( true , "Col Name1" , "Col Type1" , false ); is giving some erroe what i want to ask is whether the datasouce dsTableData i ...Show All

  • Visual Studio Tools for Office Catching Unhandled Exceptions

    Hi, I am trying to catch unhandled exceptions in my code for a c# workbook. I have tried using the: AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(HandleException); (this is set in the ThisWorkbook_Startup method) but my HandleException method is never called and i get the default "Office document customistation is not available" error message. This isn't ideal as the customisation breaks and stops working, I'd like to handle the exception myself and carry on. The workaround is to put try catches on all my code but handling the unhandled exception would be better. The exceptions only ever tend to be network timeouts, but occasionally something else goes wrong. Thanks ...Show All

  • Visual Studio Express Editions Always Round Up in Visual Studio 2005

    Okay Ive gone threw the forums many times and I have yet to find a clear beginner answer. I would like something that has any number that has a decimal to round up..no matter what the number/decimal is. Sorry if I sound rude Im just a little bit annoyed and not being unable to understand a lot of this. Okay I dont think you are getting the point. Here is an example of my coding...its a calculator for an MMORPG and the amount of in this case tree you have to cut doesnt always come to a normal number. I would like something for all the labels with the lbl in front to be rounded up when button 1 is clicked. These numbers arent always the same so i don't think something like wont work Dim X A ...Show All

  • Visual C# Array of Threads

    Hello, Beginner question... i want to use an array of: ThreadStart [] job = new ThreadStat ... Thread [] thread = new Thread ...... so i will have lets say 10 threads that i can start/sleep, and to decide when to run each of them. how do i write this down All of them will run the same method. so i need to define an array of 10 threads and how do i start each of them Thank you! Does this help Thread[] theThreads = new Thread[ Number ]; for ( int counter = 0; counter <= Length ; counter++) { theThreads[counter] = new Thread( new ThreadStart( MethodName )); } ...Show All

©2008 Software Development Network