Answer Questions
robin l drawing a map in c++ windows forms application
Hi I've got a little problem. I would like to draw a map based on XY coordinates (something like XY chart ) in vc++ express edition. I don't know what component is the best to draw it on my form (is there anything like XY chart ) .I'd be gratefull for your advices :] I Best Regards Michal I'm sure there are plenty of these. One I have used myself though is ChartFX from SoftwareFX. http://www.softwarefx.co.uk/ Steve Hi Michal, I'm doing a smiliar thing at the moment. You might want to look at VML You can get various tools that will convert your existing (vector) map data to map format, assuming you already have this, or it's relatively straightforward to generate ...Show All
lordJapheth What's the correct process to archive the final, shipped stuff
When my project was shipped, I need to backup these shipped stuff. Here is my process, 1. Create a branch; 2. Move the stuff under 'current' tree to 'branch\release\1.0' 3. Set the 'READ ONLY' permission on 'branch\release\1.0' is that okay Do I miss sth Thx. If I understand the question correctly, I can think of 2 things you could potentially do: 1. When we moved to TFS, we updated all of our relative paths (file dependencies, post-build events, etc...) to be absolute paths to a specific drive letter (like F:). It's fairly easy to map any folder on a computer to a specific drive letter, and this gives us the ability to quickly and easily change which set of dependencies we ...Show All
stephane - Montpellier Read some text
Hello guys .. I am making a kind of calender/note/remember ting. I want to place a date in the top of the my text i wright in my richtextbox. Thats not the problem, the problem is that it is adding an date every time i save it. My.Computer.FileSystem.WriteAllText(path & "Calender", "To the:" & datepicker.Text & Environment.NewLine & hehe12.Text, False) It will look like To the: XX-XX-XXXX So what i want to do is to make it read the first few charterers so that if it finds fx "to the:" in the first line it will not apply the date - i have tried with the steamreader, but i just cant figure out how to make it only read the first part of the text. Public Class ...Show All
Timeware forum comparisation..
Hello, I'm sure I'm in the wrong forum with this thread, but that's only because I want some attention of you 'VB' people at the moment. I've been 'studying' the VC++ forum here, and I noticed that the average 'top poster' in that forum posts about 50 posts a month.. In this forum, I see 'top posters' with about 120 posts a month Now I'm not sure about this one, but aren't here some coders who also know some VC++ that could sometimes have a look at the VC++ forum to see if they can't help I'm asking this because I posted a question a couple of days before, and whereas I would have had about 10 reply's in this forum, I don't even have 1 in the VC++ forum.. This could be because it might be a difficult question, but it might ...Show All
HowardRichards RaiseEvent, button1.click vs. textbox1.keydown
I think this question has been asked before and the replys seem to miss the point of the question. (Or maybe I missed the right reply. ) So, here is how I will phrase the question. I often start out a program by adding a button on the form to do something. Then I put code in the button1.click event handler. (I let the IDE 'frame' the handler for me by double clicking the button in the designer view.) Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Blah, Blah, Blah .. lots of code pertaining to a textbox usually End Sub Then I decide that I would like the same code to execute if the user hits 'enter' in the textbox, as well as execute if the butto ...Show All
kalprin DataGridView Manipulating data
Hi I want to use a DataGridView as a report for a system I'm designing, I don't want to bind it to a database and I don't have the know how yet to figure out how too... although it would help me out soo much! basically all I want to do for now is be able to change the header of the table (which at the moment only seem to be changable in design time) and then to add data to how ever many cells are required. thanks I'm not sure. I think it is possible given that the destination computer has the Jet pack/MDAC installed. I'm not sure, it has been discussed before and I think it was stated that it is possible as long as they have the right drivers installed for database access, you should be ok. ...Show All
EtherealSky open a file in listview control
Hello all, Part of an application that I'm working on uses a treeview/listview control. My goal is pretty simple, I think... I've created an application that parses HTML files. It allows the user to edit these parsed fields and save their changes over the existing file. I realize that I could use the filebrowser dialog, or simply enter the path of file, but I need the user to be able to select a file in the listview control and have that file load in a textbox. Again, user selects (clicks) a file in the listview. By clicking the file it automatically opens in the textbox. I have no clue as to how to accomplish this seemingly simple task. Any help would be very much appreciated! Thanks, Mike ...Show All
NickKang3 One or more errors encountered while loading the designer!!
One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may require code changes. The type 'ClientApplication02._ClientDB_Baisic_IIDataSet' has no field named 'DataSetName'. Hide Edit at System.ComponentModel.Design.Serialization.CodeDomSerializerBase.Error(IDesignerSerializationManager manager, String exceptionText, String helpLink) at System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeAssignStatement(IDesignerSerializationManager manager, CodeAssignStatement statement) at System.ComponentModel.Design.Serialization.CodeDomSerializerBase.DeserializeStatement(IDesignerSerializ ...Show All
rajesh_batchu what day in week?
how do detrimen what day it is .. monday, tuehusday, etc.. or with an integer with 1 = monday 2 = tuehusday ... hehe just a way do deside the current day in the week . thanks :D DateTime has a DayOfWeek property so it's Dim weekday As DayOfWeek = DateTime.Now.DayOfWeek What error I don't understand, are you adding a label or a button my oter computer cant even open the file !!!! .. omfg what am i gonna do it is odd.. ps. i tryed to the step in function when debugging i resived this error : Source file: C:\...............\Vi ...Show All
Jon Abbott My CD image of Visual c# express needs no registration but I want access to registration benefits
Hi, I want access to the visual c# registration benefits but I am not connected to the internet and cannot register my product why can't I just email with my msdn subscriber account etc and get microsoft to email me the activation number and how to get extra stuff like the ebooks which I really need to help me There have been a few posts regarding this. You do need to have a conection to register, and you do need to register to get the benifits... But as the cd install does not need to be registered, you can still hit the registration button and connect to the system, the only difference is that you do not get the reg key. But as you say you are not connected to the net, in this case you will not be able to follow the ...Show All
Computer Guy69146 calender link to database
I'm trying to create a database of projects. when a project is entered i want the entered to link the database info for that project to the calender date so that when a user clicks on a calender day the projects for that day are shown in a message box. Any ideas Thanks your connectionstring is incorrect. a connection string looks like this typically: "data source=.;initial catalog= databaseName ;Trusted_Connection=true;" this is what you have to put in but of course changing the various names. if you have a connectionstring in your project which you want to use, find that string and place it in, without quotes, as long as its a string type I still get the innerexception ...Show All
we7313 display data from sql in messagebox
hi,got a question regarding the messagebox what i'm doing currently is displaying data from a table in a listbox using data binding source and adapter what i want to do next is to enable myself to select a particular data from the listbox,press another button to view the rest of the info from database where the attribute = selected value in a messagebox i'll give an illustration if my explanation isnt clear.i have a listbox which displays only car number plates,and i want to be able to select a particular number plate,click on another button which opens up a messagebox that displays the rest of the details of the owner of that selected license plate number is it possible to do this Oops, yes ...Show All
ctssoms How do I calculate a person's age with datetimepicker
I have a form with a datetimepicker and a textbox1.text where I want to show the age in the texbox1.text box when user pick a date for the datetimepicker. How do I use it and do I put it under thedatetimepicker or texbox. privaite subs If you do DateTime.Now.Subtract( YourDatePicker.Value ) it will return a TimeSpan object that you can read the Years, Months, Days, etc. from. I guess the person will pick their birth date in the datetimepicker Yes I know that they kan pict the date from the datetimepixer, that was not wat I was asking about, I want to know how to work the age out, so that it will show in a texbox. Thank You, it ...Show All
wijay_da TF80070 Error in Microsoft Project
We are using Team Foundation Server Workgroup edition. I open up Microsoft Project and 'Choose Team Project'. Then I can 'Get Work Items' into the project, but it throws the error below before all of the work items are rendered (but they all show up after I hit OK). Also I can't 'Publish' or 'Refresh' the Work Items from Project. When I try, I get the following error: "TF80070: Team Foundation encoutered an error while performing the operation. It is recommended that you save your work and restart the application." Any help/ideas would be greatly appreciated. I created the file as instructed above and I am able to reproduce the error, but I can't find a reference of a tfs_winproj.log ...Show All
ro88o Flash Button in WebBrowserControl - Must click outside of flash to work?!?!?!
Hello, all. I am trying to use flash butoons within the webbrowser control, but for some reason, you must mouseclick outside of flash (anywhere on the surrounding html page) before the buttons will work. I have to click outside first before every single mouseclick of the flash button. Is there anyway to fix this Thanks. -kaanuki- After reading around, it appears that this is a bug in the webbrower control. The only current fix is to use the older AxWebBrowser Control. Tested this and it works perfectly. However, AxWebBrowser is very limited, as it cannot disable the right click context menu like vb2005 webbrowser can. ...Show All
