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

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

Acksoft

Member List

LneWlf
Mgrondin345
MA2005
satish_vemuri
toyoung
Mark Coleman
nate-d-o-double-g
comiv
Piddo
ndroe
Suganya Mahadevan
Shaile
Will Merydith
austriana
stallion_alpa
Gabriel Vila
manasia
BilalShouman
enric vives
Sonic.NET
Only Title

Acksoft's Q&A profile

  • Smart Device Development dpms shutdown

    sometimes not every time i get online my computer will for no reason shutdown completely.the screen goes black with a blue box that says dpms shutdown mode.then it shut down completely.i have a hp with windows xp.i have checked my bios and there is nothing there about it,and i have checked my power management and hibernate is off nothing is set to shut cp down. please can somebody tell me what is doing this thank you! ...Show All

  • SQL Server ReportViewer1.SetQueryParameter getting message not a member of reportviewer

    I am using the reportviewer control in vs2003 accessing the rs2005. I get the message setqueryparameter is not a member and also i do **************************************************************** Private Sub populateReportViewer() ReportViewer1.ServerUrl = "http://localhost/ReportServer" ReportViewer1.ReportPath = "/SampleReports/Product Line Sales" ReportViewer1.SetQueryParameter("ProductCategory", CategoryDropDown.SelectedValue) ReportViewer1.SetQueryParameter("ProductSubCategory", SubCategoryDropDown.SelectedValue) ReportViewer1.SetQueryParameter("StartDate", StartDate.Text) ReportViewer1.SetQueryParameter("EndDate", EndDate.Text) ReportV ...Show All

  • Windows Forms managed and unmanaged deployment

    Hi I have create a managed dll that i used in unmanaged c++ and these dlls are used by another application. It works on my machine fine as it is register managed assembly in GAC. I dont want my assemblies in the GAC. when i remove it from GAC and copy my Assemblies in the same folder where my exe file is it dosnt work. Problem is i cant create instance in c++ if dll is not register to cache. r u can say my unmanaged dll cant create instance of managed dll. do i required to change the configuration of my solution r i have to change the code how can i make my managed and unmanaged assemblies so that i dont need to put them in GAC and it should work just putting them in the local folder Regards ...Show All

  • Visual C# Passing a method to a method?

    I'm trying to abstract my code and I noticed a pattern. I'm sure that this can be done, but have no idea where to start looking for an answer: Say I have the following method: private static void ArrayLengthTest() { if (al.Count > 0) ReserveMedia(); else { NoRecordsMessage(); Console.ReadKey(); Console.Clear(); CreateMainMenu(); } } How would I cleanly pass ReserveMedia() or any other method name I know I could create some switch logic and pass an option, but that would be really klugy. Any ideas/hints would be appreciated. TIA - AbeR You can pass methods as delegates. You'll have to define a delegate type that defines the method's signature. Then, define a method that takes of ...Show All

  • Visual Studio Express Editions how to update data in datagridview control in database

    plezzzz how update data in dtagridview but i use dataview to filterdata and binding dataview with dataGridview control , so how can i update these filtered data in datagridview depends how you are retrieving data. if you are using a TableAdapter then be sure you told the wizard to generate the SQL commands and/or create the update/insert/delete commands. Then call the Update() method programmatically. if you are using the DataAdapter, be sure to create the insert/update/delete commands programmatically then call the update() method which will then update the database. take a look at this: http://msdn2.microsoft.com/en-us/library/system.data.oledb.oledbdataadapter.aspx ...Show All

  • Visual Studio Express Editions combo box

    Hi, I'm trying to use the SELECT DISTINCT Query in combo box in a form i've created by draging the table in data grid view......where do i put this query at..........is it somewhere in the edit column area Thanks You'll need to provide a bit more of a description about what you are trying to achieve. Do you want to show only distinct values in a combobox Is the combobox in the datagridview Provide as detail a description on what you are trying to achieve and you'll likely get more assistance ...Show All

  • Windows Forms Is is possible to disable the mouse right click?

    Hi, I need to disable the mouse right click when a control (non microsoft) is clicked. This control is supposed to open a dialogue when is clicked but instead I need to perform other operations like closing and resizing etc Is this possible Thank you. Hi,this question has appeared before,take a look at this article,I hope it helps. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1033435&SiteID=1 ...Show All

  • Software Development for Windows Vista Workflow Designer in WPF

    Hi, I didn't see nothing about... Is possible build a workflow designer using WPF to run in an ASP.NET application Thank you. Daniel Oliveira www.NetFxLive.com does not use our WorkflowView Designer Control. This is a JavaScript code which imitates the WorkflowView. So Yes - You can do exactly the same in WPF. - But then you wont be using any of the Windows Workflow assemblies for designing the WF. You can also re-host the WorkflowView Control (from System.Workflow.ComponentModel.dll) inside IE, but then you would have to give a full trust to the web page/site using caspol. Hope this helps! Thanks, Kushal. ...Show All

  • Visual Basic How to retrieve and store BFILE datas

    Hi, Does anyone knows how to store BFILE datas which is my word documentation file into sqldatabase. And retrieve it with vb.net Regards, Melvin Reading and writing binary data to a database How To Read and Write BLOB Data by Using ADO.NET with Visual Basic .NET http://support.microsoft.com/default.aspx scid=KB;EN-US;308042 Binary data is binary data whether its a jpg or a word document - the concept of BLOB's still applies. Also you may want to read the following thread which is rather interesting. http://www.codecomments.com/archive343-2005-1-374660.html ...Show All

  • SQL Server Running value

    Hi In my report I have the total column,under the total i have two sub fields:no , Row%and i have another column Cumulative total sub fields are no,***% For the Row % under total i write like this: =Round((Fields!Male.Value+Fields!Female.Value+Fields!Unknown.Value+Fields!Invalid.Value)/Sum(Fields!Male.Value+Fields!Female.Value+Fields!Unknown.Value+Fields!Invalid.Value)*100,2) For the *** % under cumulative total the expression is: =RunningValue((Fields!Male.Value+Fields!Female.Value+Fields!Unknown.Value+Fields!Invalid.Value)/Sum(Fields!Male.Value+Fields!Female.Value+Fields!Unknown.Value+Fields!Invalid.Value)*100, sum , "AgeByGender" ) But i am getting this error: The Value expression for the textbox '* ...Show All

  • Visual Basic Process not completing

    I have a vb form that runs a command line executable that creates a diff file from two existing files. When I run the program from the command line it creates a 419Mb diff file. When I run it as a process from my VB program it gets to ~400 Mb and stops. If I kill the VB program the command line executable continues to run and finishes the diff file. So I have 2 questions. Why does the process stop before for it finishes when I run it inside vb Why does the program continue to run when I kill the VB app. Here is my code Private Sub xdelta( ByVal strFile1, ByVal strFile2, ByVal strDelta) Dim strError As String Dim p As New Process Dim info As New ProcessStartInfo info.UseShellExecute = False ...Show All

  • .NET Development Debugging using STA

    In my program I have to use STA. How can be Mdbg used with STA I'm writing error handler tool that uses Mdbg and WPF to show error details (stack with variables). When I try to create instance of any WPF window I get exception, that Thread should be STA. ...Show All

  • SQL Server What to use in place of MS Access to view SQL Server tables?

    Our business application is running SQL Server in a remote data center and we had been using MS Access from a local PC to occasionally fix data problems in the data base. As the tables continue to grow, it's painfully obvious MS Access just can't handle the volume of data. One of our tables we need to get into is about 200,000 rows, another is over 100,000 rows. We need to be able to change individual rows, and perform search and replace commands across one or more columns in select tables. What software can we install on local desktops to allow viewing and editing of SQL table data MS Excel would probably be worse than Access - I seem to remember a 65000 row limit in Excel when importing large .csv ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. BoundingBox for Models

    Hi, I'm very much used to using Geometry.ComputeBoundingBox() from MDX 1.1 and am wondering where the equivalent in XNA is. My problem at the moment is that my models are having their centres placed at Y coordinate 0, so half is above ground and half is below ground. My solution has always been to compute the bounding box and simply raise the mesh by the amount that the min vertex is below the ground. (So minVertex.Y = 0). The BoundingBox has a constructor that takes a List of Vector3s, but this would presumably mean iterating over every ModelMesh in a Model, reading out the Vertex data from the VertexBuffer and extracting the x,y,z values for each vertex... this seems rather long winded I've seen a lot of people talking about ...Show All

  • Visual J# how to create DLL file in J# or convert J++ dll into J# dll

    Please help me...I know nothing about J#.  The following code is written by J++ for dll file.  I need to either convert those code into J# or create new J# dll file.  However, I have no clue how to start it.  Could someone help me as soon as you can.  I really appreciate it.  I only have one day to finish this assignment. import java.io.*; /**  * This class is designed to be packaged with a COM DLL output format.  * The class has no standard entry points, other than the constructor.  * Public methods will be exposed as methods on the default COM interface.  * @com.register ( clsid=5BD97072-819B-4FFF-A6BD-6980F93EBA49, typelib=842EE387-31B5-4F8F-AECC-F449F5204038 )  */ public ...Show All

©2008 Software Development Network