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

Software Development Network >> Wolfram Menzel's Q&A profile

Wolfram Menzel

Member List

gafferuk
Sayor
B.Stark
HeathM
Siteslayer
Fairfax
RajLakamana
Amit Mulay
vdv_phuong
John_Mac
Serapth
Kai123
Pablo Orte
grimdog
dnweb
Yuhang
ggo6
Sotham
dr.acv
hawash
Only Title

Wolfram Menzel's Q&A profile

  • Visual Studio Multiple tables in the same database causing problems

    So I have 3 tables inside one access database that im trying to create a report off of. My problem is that when I have fields from more than one table in the report, the report will not pull any data from either table. Its almost like its confused on how to access the data. Glad that part worked! I did a search on your error and here are two links that might help. It seems it may have something to do with a font or a bitmap Anyway, good luck!! http://forums.belution.com/en/crystal/000/006/49s.shtml http://www.codeguru.com/forum/showthread.php t=366505 ...Show All

  • Visual Studio Team System team system version control for non microsoft products

    Is it possible to use the version control used by team system in non microsoft development setups For instance java or coldfusion developers. Does working with the source control require visual studio I could have sworn i read somewhere that you only need team explorer. Does anyone have a link that describes this Thanks. The following thread has information you may find valuable. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=159491&SiteID=1 The summary is that TeamPrise ( http://www.teamprise.com/ ) has a suite of client applications to access TFS from the Max and UNIX platforms as well as from within the Eclipse IDE. Additionally there is a MSSCCI plug-in for non-.NET environments. If yo ...Show All

  • SQL Server Is it possible to generate alter Table statements using SMO

      Hi I'm trying to modify existing tables in a database. How can I create alter Table scripts using SMO/DMO Thank you Thanks again Jens I'm trying the follwong code Server server1 = new Server ( "." ); Database db= server1.Databases["master"]; server1.ConnectionContext.SqlExecutionModes = SqlExecutionModes .CaptureSql; foreach ( Table Tbl in db.Tables) { tabl.Alter (); } db1.Refresh(); //writing to a file writeToFile(server1.ConnectionContext.CapturedSql.Text, "alter" , "tables" ); But it is not generating Alter statments. But if I use Create(), in place of alter(), it's generating Create statments. ...Show All

  • Visual C# Uploading With Webservices!

    Hi, I have a web serivce to upload file. What will be the best way to upload file using web service . Convert file into Base64string and the pass it to web service or some thing else... Any help will be appreciated... There are a number of options you can use for transmitting large amounts of binary data. The solution you've listed (known as base-64-encoding) is an okay solution. Your data will be transmitted properly and it will be contained within your SOAP envelope (meaning that you can use things like WS-Security) if you want. It is a highly interoperable and composable solution. The downside is that it isn't a very efficient solution. Base 64 encoding of your binary data results in it bloating up anywhere from 33-100% during ...Show All

  • Windows Forms why are the forms properity reset itself?

    I create a form using vs2005 - vb, there is One more language (culutre) for this form. The form properity (Design) reset it self for the original form not for the culture design. ex. Form1 form1.formborderstyle= fixtool... now, create new culture, it should inhirt same value (form1.formborderstyle= fixtool...) if I rebuild the project the main form will return to the default value for that property (form1.formborderstyle=sizable) so, what is up sorry, I mean it will lose the changes and reset the property to the default value. There is no code to change the culture, I change the form culture by creat it at design time by select new language in he form property and make the related changes, by this way VS will ...Show All

  • Visual Studio A very simple question about ClassWizard

    I have just inslalled Visual Studio 2006 (i used MS Visual C++6 earlier) And I have a very fundamental and stupid question (please don't hit me strongly :) ): WHERE is ClassWizard Is there any analogs of this powerful feature of VC++6 How can I find it 0_0 Hi Constantine, This was a pretty common question back when VS .Net first came out. They pulled the wizard off the menu, and grouped the functionality with the other project item wizards. To invoke the MFC classwizard, just right click on the project node in the Solution Explorer, or Class View toolwindows, and select Add.Class... Then select the MFC Category in the Categories tree, and select the type of wizard (aka project item template) you want. P.S. the http://fo ...Show All

  • Visual Studio 2008 (Pre-release) Authentication issue when WCF service is hosted in a windows service

    Hi, I created a WCF service and hosted it in a console application. I tried accessing the same from a remote machine on the same network. It worked fine without any issue. But when I tried hosting the same in a windows service, I get an error "407, Proxy Authentication Required". Not quite sure why it didnt show up when hosted in console app.. How do I resolve this Thanks Sai What kind of binding Could you post the server and the client config.What accounts are you using for this and did you try runnign the service with the logon that the console was using. ...Show All

  • Visual Studio Express Editions coding help

    Public Class Form1 Dim ans As String Public Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load 'whatever is in here will be executed when you start the program' End Sub Public Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click 'whatever is in here will be executed when you press the button 1' test() 'this gives me "test is type and cannot be used as expression" ans = InputBox( " thats it" ) End Sub Public Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click End Sub End Cla ...Show All

  • SQL Server What is INSERT BULK?

    Morning, I've just been running a Profiler trace on an ETL operation that I was doing and the SQL statement issued was: "INSERT BULK table <column-list> " That was it. Profiler didn't record what values are actually getting inserted. I looked in BOL but there's no mention of this syntax in either BULK INSERT ( http://msdn2.microsoft.com/en-us/library/ms188365.aspx ) or INSERT syntax ( http://msdn2.microsoft.com/en-us/library/ms174335.aspx ) I'm assuming its just a different syntax for BULK INSERT, although it doesn't specify a source file which is strange. Also, like I said the profiler trace only contained a column list, it didn't contain the VALUES part of an INSERT statem ...Show All

  • Customer Care Framework Create CCF Adapter

    Hi all... i wanna ask about creating an adapter for any external app. to make any action my first adapter i was created don't work well it just run the constructor ... Please if anybody have a sample code for adapter (for ex. to set "HI" to textbox) send it to me... Thanks for all... Thank you Matt but i wanna ask about iptrEditWin = Microsoft.Ccf.Csr.Win32API.FindWindowEx(process.MainWindowHandle, System.IntPtr.Zero, "Edit", ""); What did you mean in "Edit" and how we can know the name of other programs (i think it's return to the Notepab ya ) ...Show All

  • .NET Development Simple string list in .config

    I am looking to represent a single list of strings in a web.config or app.config file. It could be anything... a list files... filename1.txt filename2.csv filename3.xls or a list of column names... Symbol Bid Name The xml would be very generic. Something like <items>    <item value="Symbol" />    <item value="Bid" />    <item value="Name" /> </items> Is there a built-in config section handler that could process this or do I need to create my own Thanks. - Jason A more thorough description about the MySettings Feature can be found here: http://www.codeproject.com/useritems/SystemConfiguration.asp Yours, Alois Kraus ...Show All

  • Visual Basic Retrieving data from disk into a text + binary fields structure

    I converted a VB 6 program to run under VB 2005, and it runs. But I can't figure how to avoid a warning message in the third line below: Dim TpArray(1100) As TpcRec '(TpcRec is a Structure of fixed-length strings and 16-bit integers) For I = 1 To TpCount FileGet(2, TpArray(I), I) Warning: Implicit conversion from 'System.ValueType' to 'blahblah.TpcRec' in copying the value of 'ByRef' parameter 'Value' back to the matching argument. I tried using FileGetObject; no apparent difference. "FileGet(2, CType(TpArray(I), TpcRec), I)" eliminates the warning, but with the disastrous result that binary zeroes are stored in the array instead of the data; what you might call a hollow victory. My first choice would be to corre ...Show All

  • Visual Basic Insert row into gridview

    I'm designing an app for VB.Net VS 2005 ASP.NET in which users will review and add records to a list.   To optimize the UI, I need to be able to insert records into the middle of the list.  Ideally, there would be a control on one record that would say "add record after me".  When the user activated that control, a "blank" record would appear below the record with the control, and the user would fill it in. I recognize that there are other ways to add records to a list, but this one is  optimal in terms of how the user is reviewing, understanding and responding to the content. It will look something like this: 1: Seq# Content 1    AAAAAAA     <Add Record after me&g ...Show All

  • Visual Basic Initialize an instance of an own class

    A question please. I instanced an own class and I set some properties, not all ones. When I ask: if myinstace.myproperty.trim() I get an error because I didn't set it. How can I initilize a property of a class if myproperty is string without initialize each property IF I do that, it is not enough... Dim myinstance As New ClassFormi Thanks... A simple example will show you two potential ways to remedy and show you why I'll explain why you are probably getting a problem You can add a default value on the field declaration - such as for Bar which will give it a default value. You could initialize a value in a constructor (whether it be a default constructor with now arguments, or ...Show All

  • Visual Studio Team System CTP7: Schema Comparison - DEFAULT ((0)) versus DEFAULT (0)

    A user imports a db schema and then compares the imported schema with the current database. Differences are reported related to DEFAULT. The user clicks "write updates", then "refresh" -> Differences are reported related to DEFAULT. Juergen - If you are still having this issue, please follow up with Richard. If we don't hear from you by next week, we'll assume your issue has been resolved and will remove the thread so we can focus on questions that have answers. thanks, ...Show All

©2008 Software Development Network