Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Trob70
  • Content: Threads
  • Order by date
  1. Trob70

    Create a Form Via Code and Save

    I have created a new project and created a new form Form1 on which i need a LARGE number of controls I am trying to avoid having to manually add all the controls !!!! Using code i have generated all the controls and the form loads and works fine eg... 'add a textbox Set ctlText =...
  2. Trob70

    There is no object in this control

    I have a large msaccess program that has been running for many years.. The office has 10 computers running this program Recently. A computer has been replaced win10 64 bit office 365 When i run the program i get a message There is no object in this control ... BUT no detail ...
  3. Trob70

    Alter a character in all files in a directory and sub folders

    I have a large number of files in a root folder with sub directories eg f:\fixxml\ (this contains sub folders with .xml files as well) I need to alter a character in the files eg ’ to ' Have never used powershell before..!!! Did try the following with no success in cmd F:\fixxml...
  4. Trob70

    Another xml Question

    I am trying to produce this line of code using XmlTextwriter <item> <question>Who was named Player of the Match for the first Test in the 2019 Ashes series?</question> <answer>Nathan Lyon</answer> <answer correct="true">Steve Smith</answer> <answer>Matthew...
  5. Trob70

    XML Textwriter Question

    I am using xmltextwriter to create an xml file but have a problem as follows My code.... '--------------------------------------------------------------------------------------------------- Dim writer As New XmlTextWriter(sfilename, System.Text.Encoding.UTF8)...
  6. Trob70

    Case Command Make it a Variable ie Get From Textbox

    ??is it possible to make a case statement using a value from a form textbox ie Contains eg Case 49, 57, 63, 45, 39, 32, 48 To 57, 65 To 90, 97 To 122: This the present code..all working fine Select Case Asc(Mid(strSource, i, 1)) Case 49, 57, 63, 45, 39, 32, 48 To 57, 65 To...
  7. Trob70

    XmlFile Containing the &amp; Character in text

    Just a query about the & character in an xml file Say Text = Me & my dog? I run it through a UTF-8 conversion and i get Me &amp;amp; My Dog? I am planning using this file for a game on the internet ?? will i have any problems with the & Appreciate any advice Regards Robert
  8. Trob70

    Export to Excel - Comma in a string

    I need to create a csv file which is delimited with a comma., and is opened by excel BUT On in some cases a field also includes a comma. Output line eg aaaaa,bbbbbb,111 i need excel to combine bbbbb,1111 ie not to split it when i open the csv file. I gather there is some...
  9. Trob70

    Search a Grid for a Word..

    I have a grid loaded into a datagridview eg 'GRID............ T A S S A Y A E S A N O N L U T R K O V E R T O E S T T R A S T K U Y N O S L A A A K R E S K L S L E V A N E L A S S M I T I Y E V A D Y T U M A N A T T E R Y...
  10. Trob70

    Add a column to An existing QUERY via code

    I have quite a large number of mdb databases that i need to adjust an existing query The field is allready in the table used by the query The field name is PubDetail the mdb is name Web1.mdb the table is Master1 I intend to load the databses into an array and loop through the databases and...
  11. Trob70

    Vb.net Soap Xml Push

    I have been given some vague information... Really appreciate some help... if anyone with this knowledge has some time. Hope this info is sufficient This is the information i have been given it is in c# ?? but i have to do it in VB.net (Visual Basic) Apparently the server automatically...
  12. Trob70

    VB6 Soap Problem

    Appreciate some help if someone has time. Trying to use soap have tried all sorts of ways Have come up with a simple example of one of my tries !@!@@! Dim clnt As New SoapClient30 Dim strsvc As String clnt.MSSoapInit "https://www.thesite.com/api/webservice.wsdl" DoEvents...
  13. Trob70

    Funny Character in String

    I have a web page written in web express 2012 using vb.net using webform i am copying a text field from an existing database and adding it to another Dbe = New DAO.DBEngine() Db = Dbe.OpenDatabase(svr) etc Rs.Fields("Title").Value = TextBox4.Text Rs.Fields("Composer").Value =...
  14. Trob70

    Access Lookup Problem

    I am having a problem with the following line sql2 = "SELECT * FROM [wol] WHERE trim([Title]) = '" & Trim(TextBox4.Text) & "' and trim([publisher]) = '" & Trim(TextBox8.Text) & "' and trim([code]) = '" & Trim(TextBox7.Text) & "' and trim([composer]) = '" & Trim(TextBox9.Text) & "'" The...
  15. Trob70

    Web Express 2012 Error

    I have an application written in Visual Studio Web Express 2012 On my local computer it works fine But when i copy it to the server i get this error Appreciate any help Server Error in '/' Application. Parser Error Description: An error occurred during the parsing of a resource required...
  16. Trob70

    Asp Site Datasource .mdb

    I HAVE A WEB EXPRESS ASP.NET (VB) WIT A DATASOURCE "C:\ABD\AAA.MDB" It works fine on my local IIS server BUT When i copy the project to a providors server it does not work It cannot find the .mdb ??? how do i make the dataconnect === say !!!!server.mappath f Or How can i get this...
  17. Trob70

    Web Express 2012 Forms

    I have created my first Web Test Project in Web Express 2012 and have a simple form BUT When i add Buttons TextBoxes etc they all just line up under each other down the page ???? is there a way that i can place these items anywhere on the form i want ie ??? drag and place ie Just like...
  18. Trob70

    Stop a Row in Report Printing

    Access Report... I need to stop and entire row with several fields in it... printing if... a particular field is = "O" Ie i need to totally non print the line if i make fields invisible=false they do not print but it leaves a blank line if Field1="O" and line contains a field call...
  19. Trob70

    Covvert Code to VB6

    I have a piece of code which i need converted to vb6 Not real sure what it it written in ????? Really appreciate some help !!!!!!!!!!!! protected void S_Click(object sender, EventArgs e) string postData = "AN=1234"; postData += ("&SeC=5678"); postData +=...
  20. Trob70

    Refer The Field name From Array Dim HNo(Array_Size)

    I am trying to use the following code as a subroutine I have an array..... say dim a(10) as string a(0)="TT1" a(1)="hh" etc and loop through the following routine 10 times ie a(0) a(1)---> a(10) Instead on refering to the field name as HNo i want to refer to it as a(0) etc...

Part and Inventory Search

Back
Top