Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - MLambert

Pages: [1] 2 3 ... 8
1
QB64 Discussion / Re: Double Byte Characters
« on: March 07, 2021, 02:50:14 am »
Thks Luke.

How do I
"search for the sequence CHR$(&HC4) + CHR$(&H88) in your full string" ?

Mike

2
QB64 Discussion / Double Byte Characters
« on: March 06, 2021, 04:58:12 am »
Hi,
Some of my data has Serbian names containing    ć  which I need to convert to c.
The Hex UTF-8 bytes ( double byte code)  is C4 8B,  and the decimal is 267. Now I was using C48B$ = Chr$(267) and looking for C487$ in the field.
.... but Chr$ only goes up to 255 ... how can I get around this ?

The code I am using is  ... If X$ = C48B$ then X$ = "c"

So long as CHR$ is < 256 then everything is ok but when CHR$ > 255 I get a function error meaning I cannot have CHR$ > 255.

Thanks,

Mike

3
Thanks again,

Mike

4
InForm Discussion / Where do I find information regarding properties.
« on: August 26, 2020, 02:36:17 am »
Hi,

I am not sure how to ask the question. I see __UI_FocusIn(TextBox) etc ... a lot of _UI_  where do I find what this means ?

Also Control(ID) .. this type of command as well .. where do I look ?

Do I need to read up on MS Visual Basic ?

Inform generates the skeleton of a program but I don't know what commands or functions to use to reference the boxes, extract the entered details and use this data. I would also like to pre-populate the boxes as well.

Do I just need to read the Inform Wiki and look at the 56 pages that are listed.

Thanks,

Mike

5
InForm Discussion / Re: List Box
« on: August 26, 2020, 01:46:58 am »
Thank you

6
InForm Discussion / Re: Some Questions Regarding Inform Development
« on: August 24, 2020, 11:52:58 pm »
One more ...

where do I find  this call and others ??  __UI_FocusIn(TextBox) ...

7
InForm Discussion / Re: Some Questions Regarding Inform Development
« on: August 24, 2020, 11:32:29 pm »
Wonderful.

Many Thanks,

Mike

8
InForm Discussion / Some Questions Regarding Inform Development
« on: August 24, 2020, 09:17:04 pm »
Hi,

Just a couple of questions …..

How do I make a field display only .. show an error message

How do I create a date mask in a field  .. DD/MM/YYYY

If I want a field 30 Characters wide .. what do I make the field length

How do I start the form off in the middle of the screen

How do I include my own code as part of the build

How do I set focus for a field. When the form starts I want the cursor in a particular field (which may not be the first field)

What is tool tips ?

Why does QB64 start when I am displaying a form ?

I have found ‘old’ fields hidden under new fields .. can I find these ‘hidden’ fields easily or do I have to move every field to see if there is another field underneath it

Why doesn’t the Inform generate code for each field
I have 40 + fields but the code produced shows only..

SUB __UI_Click (id AS LONG)
    SELECT CASE id
        CASE formgainlinedataentry

        CASE enterTeamNameTB

        CASE player1SurnameTB

    END SELECT

Mike

9
InForm Discussion / List Box
« on: August 24, 2020, 09:14:04 pm »
Hi,

I am trying to do a list box … but I don’t understand how.

“You add items using the AddItem method. At design time you do so by changing the List Items property. To add multiple items, separate them using a new line escape sequence (\n).
At design time, you can set the Value property to have an item saved preselected.”
I am not sure .. do I add the items at design time or do I load them at run time ?
I cannot see any Value property on the design screen.
I could not find “AddItem” in the generated code.

MIke

10
InForm Discussion / Why does QB64 show when I run an Inform program ?
« on: August 24, 2020, 09:12:26 pm »
Hi,

Why does QB64 show when I run an Inform program ?

Mike

12
One more .. how can I make the fields the same distance apart .. vertically and horizontally?

13
Thank you Fellippe

14
Hi,

I have 10 row of 3 columns. Each field should be the same width, length and height within the column.

Is there a way to quickly align them vertically within the columns and then make them all the same size within the columns ?

Also is there an Undo ??

Thanks,

Mike

15
InForm Discussion / Re: Multiple Forms
« on: July 27, 2020, 05:09:22 am »
Thanks everyone..

Mike

Pages: [1] 2 3 ... 8