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

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

AmirAlis

Member List

ahmedWebDev
mcclgn
Afr0
Chris Du
venkee
Hooper
FASimus
SDixon
Bill Reiss
condedon
Robert Jakubowicz
Rihaz
Alpehans
MLatchmansingh
Steve Youngs
ron nash
rakowaty
cherriesh
Tony P Brightman
Frances83
Only Title

AmirAlis's Q&A profile

  • Windows Forms Reentrant error in a DataGrdiView

    I am using a DataGridView to organize information that a user provides. It is not bound to any data base. All I want to do is collect the data for further processing. The data, which is formatted using FormatCurrency, consists of amounts entered into rows corresponding to preloaded categories identified in a second column,. As the user moves around the DGV with the arrow buttons everything is fine. If a new amount is entered into a cell and the mouse is used to move away, this error surfaces: Operation not Valid because it results in an reentrant call to the SetCurrentAddressCore function Using the arrow keys to move doesn’t produce the error To work around the problem I have tried ideas fr ...Show All

  • SQL Server How can I check the version of reporting services installed?

    Hi, all here, Would anyone here please guide me how can I check the version of reporting services installed My problem is in my virtual machine, both SQL Server and SQL Server 2005 are installed, but I can create report in the vistual studio 2005 IDE, but cant deploy it to the reporting server database, in addition, I cant connect to reporting services database in SQL Server 2005 management studio. Is it possible to install two different versions of reporting services in the same virtual machine Please anyone here give me some advice for that. Thanks a lot. With best regards, Yours sincerely, Run the site http://localhost/reportserver you will find the version number somewhere on the site indicating that 8.x is 2k and 9.x ...Show All

  • Visual Studio Express Editions commands

    where do i go to learn about all the vb commands, as i read these posts i am learning about commands that m books dont tell me about. how can do somethhing if i dont know the commands. things like accept and so on The links I gave you will give you information about the VB language, classes, methods, and properties. It is alot of reading but the MSDN library IS the definative source for information on MS developement...Another great learning tool for exploring the namespaces, classes etc...is the Object Browser....by browsing through the namespaces it will show you all of the classes and methods with a summary of each!!! ...Show All

  • Windows Forms .NET Web Browser Control: How to check if there is text selected??

    Hi! Im using the .NET Web Browser control. How can I check if there is text selected in the current loaded document Matt actually, you don't even have to go to that trouble. browser.Document.DomDocument.selection.type will return a string: "None" if there is no selection and "Text" et. al. if something is selected. ...Show All

  • Visual Basic Use the String.Compare method

    I was just wondering if anyone knew a better/more efficient way to compare 2 strings to see if their format matches. Below is what I am currently using, just seems to be a little messy right now.....maybe I am wrong and I want something simpler....let me know, thanks! Function strFormatCheck(originalStr As String, patternStr As String) As Boolean ' This function just checks to make sure that originalStr matches patternStr ' A - alphabetical character. ' a - alphanumeric character. ' N - numeric or space " " character. ' n - strictly numeric (no space) character. ' X - ANY character - a placeholder really. ' x - any non-blank character (no space). ' ANY OTHER CHARACTER - must resolve to strictly, literally THAT character ...Show All

  • .NET Development WCF callback endpoint in JScript

    I am wondering if it makes sense at all to consider the possibility of implementing a callback interface for a WCF service in JScript. The service would expose an endpoint with wsDualHttpBinding. Well, i can give a general answer to you. If your client side code is going to run inside IE then, you can't do that as IE doesn't hook into the Managed JScript. If you are developing a application, which is going to run out of IE, then you can very well use Jscript .Net. WCF duplex channel is not a Jscript thing. It is part of .net BCL and if it works for C#+Vista then it must work for JScript .Net+Vista too. Thanks. ...Show All

  • Smart Device Development application crash.

    Hello, i'm new to .NET, so i could be doing something wrong. I'm building a new simple application, which generates some custom buttons, for swithing to other forms. my problem is, that everthing seems to work correctly, but after switching 3 times from one form to another, the application stops working. I know, that i cannot close my mainform, but i do hide it. the other one, I close. This is the code I use for switching from second form to mainform.: Dim myform As New frmMain myform.Show() Me.Close() For going from mainform to the second one I use Dim myform As New frmTherapy myform.Show() Me.Hide() These are the error reports: An unhandled exception of type 'System.ArgumentException ...Show All

  • Visual Studio Express Editions 3d Models in VB

    Would it be possible to make a program that converts 3d models in VB There's a bit of a story behind this. I am currently very involved in a Delta Force 2 gaming community. We have completely disected the game and such. The game uses 3di files for its models. Here is the problem: We are wanting to convert models from the older and newer Delta Force Games to DF2. There have been conversions from DF2 to older and newer games, but never the other way becuase they use different versions of the 3di. Is there anyway that a program could be made in VB to convert the files correctly I could supply a 3d file from both games if needed. I'm sure it would be possible if you had the right information at hand... ...Show All

  • Visual Studio Express Editions Loops and counters

    I am trying to make something that will insert data into excel (I already posted this on the VBA forums but no response, but if someone can give me the starting point I can figure out the excel part). Bottom line is I want to insert data in to a column like: vp0001.jpg vp0002.jpg vp0003.jpg vp00XX.jpg etc. until the last row. My question is how can I make a simple counter to generate the numbers 0001, 0002, etc. I also would need one that can generate numbers like 1,2,3 and start with number 2 so I can tell it which excel row to go into. I know the general idea of how to do this but I have never been good with counters and loops. Dim i As Integer For i = 0 To 10 Console.WriteLine(Format(i, "0000" )) ...Show All

  • SQL Server How to integrate SQL Server Business Intelligence Tool into ASP.Net web Application

    How to integrate SQL Server Business Intelligence Tool into ASP.Net web Application. Anybody can send the answer for above one it is great help for me, just I want to open this tool through >net application and I can able to create some reports from there. You can embed Report Viewer into ASP.Net application. See http://www.gotreportviewer.com/ for some good examples ...Show All

  • Visual C++ how to change the style of WTL's ComboBox

    Hi, I worked on a WTL project by VC6 years ago. The combo box in the dialog is in old style like windows 98/2000. Recently , I need to use the project again. I have upgraded the project to VC .net 2005 and use WTL75. But the combo box's style can not be changed to WinXP style. How can I resolve it Thanks Robert hello Re: how to change the style of WTL's ComboBox you can refer to this article: http://www.go4expert.com/forums/showthread.php t=754 please also note that such questions are outside of the scope of this forum , if you have further questions, find a appropriate newsgroup listed here to take more disccusion. thanks rico ...Show All

  • Windows Forms dataGridView issue

    i am using c#.net 2005. on my form, i have a databound dataGridView component for displaying patient list, the first column is "patient_id". when i click on a button, i want to find out the patient_id of selected row. please help I tried this line, it returns different values when i click on cells from different columns: MessageBox .Show( this .clientsDataGridView.CurrentCell.OwningColumn.Name); however, the values are still something like "dataGridViewColumn1", "dataGridViewColumn2", "dataGridViewColumn3", but not the actual column names. is this because the dataGridView is databound, so that it doesn't contain any actual column names locally ...Show All

  • Windows Live Developer Forums Display a map showing multiple route points.

    I know that this can be done using yahoo.maps/beta but not yet with Microsoft Virtual Earth…. I have a requirement to display a map that shows the route between a number of points (possibly up to 20) but normally just 8. I will provide to the API the best optimized route around the points – but the API only allows for a driving route between two points. And this would mean printing off maps that show A to B, B to C, C to D etc. Any suggestion if / when this feature will be implemented Also I don’t want to go down the web service route as this is cost prohibitive. Thanks in advance for any suggestions…. If you really want to do this, you can probably override the API code to ac ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Questions about using xbox 360 controller on my pc.

    I have a few questions about using the xbox 360 controller on my computer. first of all, on the "how to test the xbox controller for windows" help page, it says when you run "joy.cpl" it should give you a game controllers window that says "xna gamepad", mine just says gamepad (controller), does that matter i want to set my controls so that x = button1 instead of 3, a = button2 instead of 1 and b = button 3 instead of 2. is there a way to do this i've been playing madden 2003 with the gamepad and some issues i've had is that the controls keep resetting and won't stay the way i want them to. it also won't let me configure the right trigger and left trigger in the game, it doesn't respond when i press them. are t ...Show All

  • Visual Basic Hiding the cursor when not on a form

    I have tried the following for hiding the cursor from the desktop: showcursor(false) or system.windows.forms.cursor.hide() both of these only hide the cursor while it is over the form that I am developing. I would like to know if there is a way to hide a the cursor while you are not on the form. Thanks, Tim On a touchscreen system I did some development for this was done by a video driver properties setting that made the mouse cursor disappear after so many seconds of non-use. Have you checked for this feature in the driver you're using Otherwise, it's going to involve some rather tricky low level programming to do this. It may not be worth your while to achieve this cosmetic effect u ...Show All

©2008 Software Development Network