Tomas_1971's Q&A profile
Microsoft ISV Community Center Forums VBA Visio 2002 and OpenEx
Has anybody else experienced that the flag argument to the Documents.OpenEx method have no effect in Visio 2002 I try : Call Documents.OpenEx(FileName:=MyFileName, Flags:=vizOpenDontList + vizOpenMinimized) But I see that the Visio document opens maximized and it also appears in the history list. What am I doing wrong (I see that the Object Browser calls the argument Flags , while the help file calls it openFlags ) Thanks in adv ...Show All
.NET Development Using System.Net.Mail class to send mail.
Hi, I was coding a class to send mail via SMTP, but I found that in Framework 2.0 you have System.Net.Mail to do that task. The classes works fine to send mail on a server that does not require authentication. Unfortunatelly, I can't get it to work on a base64 encrypted server. The process of logging in that type of server is easy, so I expect an bool attribute, let's say, "IsAuthRequired", but it does not exists. From what I've ...Show All
Visual Basic Print To Tiff
I need to add a function to my program which converts word files(.doc) to tiff images. It needs to run silently in the background, without any user interaction. Can I use the Microsoft Office Document Image Writer If so, how do I do so without using the dialog boxes to choose the save location Thanks Okay after playing around for a few moments i ...Show All
Visual C++ Possible MSVS 2005 beta2 bugs
Before I consider filing bug reports, I'd like to hear any comments on the following issues I've encountered with Beta2 during my first two days of use: 1) Break point won't work in .h files in managed project. I have a large mixed native and managed project. Since converting to 2005, break points no longer work in .h files for managed code (the native projects are fine). They say "The break point will not currently be hit. No ...Show All
Visual Basic How an object can supply another object with a reference to itself (can I use the Me keyword for that?)
Hi I am writing an object-relational DBMS in MS Access VBA. I'd like to have the aggregated objects ('children') have a reference to its parent ' Example of the object aggregation ' ' Parent Dim mlChild As clsChild Property Get child() As clsChild Set child = mlChild End Property Property Let child(ByRef c As clsChild) Set mlChild = c Set c.parent = Me ' This doesn seem to work - what's wrong End Property How is the ...Show All
Visual C++ cannot convert from 'float (*)[3]' to 'float *[3]'
I'm having an issue with Visual C++ .NET 2003. This compiled and worked fine in C++ 6.0. In my include file I have: typedef struct Data { float (*cvec)[3], ... } Data; Data Store; In my cpp file I have: int num; Store.cvec = new float[num][3]; where num is determined from a file. The error I'm getting is: View.cpp(847) : error C2440: '=' : cannot convert from 'float (*)[3]' to 'float *[3]' There are no co ...Show All
SQL Server SELECT QUERY Without USING CASE
I have a select query select col1-tbl2,col2-tbl3,col3-tbl4 ,col4-tbl1,col5-tbl1 from tbl1where condition, The above quey col1-tbl2,col2-tbl3,col3-tbl4 are from table1 only, but it have only id(ie) the foreign key references of tables 2,3,4 I want the column with their values to join with the tables 2,3,4. Except USING CASE Except USING CASE Please Guide me USING CASE Not sure I understand. Just join to the tables: select ...Show All
Visual Basic eroor message
hello there, i am trying to move to the last record using recordset object but i am receiving the following error message: "rowset does not support fetching backward" and this the code: Private Sub Form_Load() Dim con As ADODB.Connection Dim rs As ADODB.Recordset Set con = New ADODB.Connection con.Connecti ...Show All
Visual Basic IDE question
I dislike how the tabs open right to left in VB .NET 2005 Express. I much prefer how they'd open in 2003 (first tab opened -- e.g. start page -- on left, and subsequent tabs to the right of the first; or, left to right). Anyone know how this can be changed Aside from that, I love VB 2005! Can't wait until I can buy the finished product! Sean Cassell Check this feedback on MSDN Feedback Center http://lab.msd ...Show All
Windows Forms system tray drag and drop
how do you implement drag and drop to a system tray ex: I want to drag a link from IE to my system tray app I don't think you can with the basic NotifyIcon that ships with WinForms. The issue is that the class ...Show All
.NET Development Displaying a 'properties property' in a column of a datagridview
I am using the BindingSource and DataGridView to display data from a list of business objects. The business object exposes several properties, one of which is another custom class, instead of just showing the fully qualified class name in that column, i'd like it to display one of the properties of the custom class. I have tried setting the datapropertyname to "MyBusinessObject.MyProperty" but that doesn't display anything. Any help apprec ...Show All
Visual Studio What happened SourceSafe web service access in Beta 2?
A collegue of mine has just setup a SourceSafe 2005 database and configured it for internet web service access. I have Team Suite installed including SourceSafe 2005, but I am unable to find an option anywhere which would allow me to connect to it. I can connect over a local LAN or over the net via file sharing, but I can't find the web service protocol. I was informed this feature was in Beta 1. Anyone know what happened to it I ...Show All
SQL Server Why isn't there a MS Access Forum?????
Ok, I've looked all over and I can't find a forum for MS Access. I can find a forum on every other component of MS Office, but not Access. Am I blind Anyways, seeing as SQL Server is the next closest thing to Access I guess I'm going to have to pick your collective minds and see if you can help me. I've posted my question in another thread. Hope someone can help me. In this thread, however, I'm c ...Show All
Windows Forms Very strange ComboBox databinding problem
Hi, this problem really drives me nuts. I have a custom ComboBox, which derives from the normal ComboBox control. I'm setting the DataSource of the ComboBox in my code to a DataTable and also set DisplayMember and ValueMember. So, the binding in general works fine, but here's the odd part: Depending on what is selected I color the background of the ComboBox differently. To achieve this effect when the DataSource changed i overwrite the OnDataS ...Show All
Visual J# hi
Hai ,,,, a simple Question ... Is there any similiraties between C# and J#... Yes, you are right...if you compile code written in a language that runs on .NET, Then the compile code (called IL) can run on any machine that has CLR. ...Show All
